]> www.ginac.de Git - cln.git/blobdiff - src/numtheory/cl_nt_nextprobprime.cc
Fix scale_float for large factors on x86.
[cln.git] / src / numtheory / cl_nt_nextprobprime.cc
index ea702d4c6daae917b44109c8b593a45b86b015a5..6dfa94bd7da37ac1ca2ebeb4049665aee3eb965f 100644 (file)
@@ -1,15 +1,17 @@
 // nextprobprime().
 
 // General includes.
-#include "cl_sysdep.h"
+#include "base/cl_sysdep.h"
 
 // Specification.
-#include "cl_numtheory.h"
+#include "cln/numtheory.h"
 
 
 // Implementation.
 
-#include "cl_real.h"
+#include "cln/real.h"
+
+namespace cln {
 
 const cl_I nextprobprime (const cl_R& x)
 {
@@ -29,3 +31,5 @@ const cl_I nextprobprime (const cl_R& x)
                n = n+2;
        }
 }
+
+}  // namespace cln