]> www.ginac.de Git - cln.git/blobdiff - src/float/lfloat/elem/cl_I_LF_div.cc
Extend the exponent range from 32 bits to 64 bits on selected platforms.
[cln.git] / src / float / lfloat / elem / cl_I_LF_div.cc
index 0d72f525398d9a924fa11a4d6493f820e606c1a7..ecff491f47e749e0ffe34a9da95acbf8378cd7de 100644 (file)
@@ -9,14 +9,16 @@
 
 // Implementation.
 
-#include "cl_lfloat.h"
+#include "cln/lfloat.h"
 #include "cl_LF_impl.h"
-#include "cl_integer.h"
+#include "cln/integer.h"
 #include "cl_I.h"
 #include "cl_DS.h"
 #include "cl_F.h"
 #include "cl_N.h"
 
+namespace cln {
+
 const cl_R cl_I_LF_div (const cl_I& x, const cl_LF& y)
 {
 // Method:
@@ -31,3 +33,5 @@ const cl_R cl_I_LF_div (const cl_I& x, const cl_LF& y)
        return cl_I_to_LF(x,len) / y;
 }
 // Bit complexity (N = max(length(x),length(y))): O(M(N)).
+
+}  // namespace cln