]> www.ginac.de Git - cln.git/blobdiff - src/integer/2adic/cl_I_2adic_div.cc
Use paths relative the `src' directory in the #include directives.
[cln.git] / src / integer / 2adic / cl_I_2adic_div.cc
index 97791fe7906fbaf7a5ae85ee1d41a92edfe13322..cc5ff34fe64345e6e75ae08ef5b4f25d275344c5 100644 (file)
@@ -1,17 +1,19 @@
 // cl_div2adic().
 
 // General includes.
-#include "cl_sysdep.h"
+#include "base/cl_sysdep.h"
 
 // Specification.
-#include "cl_integer.h"
+#include "cln/integer.h"
 
 
 // Implementation.
 
-#include "cl_DS.h"
-#include "cl_2DS.h"
-#include "cl_I_log.h"
+#include "base/digitseq/cl_DS.h"
+#include "base/digitseq/cl_2DS.h"
+#include "integer/bitwise/cl_I_log.h"
+
+namespace cln {
 
 const cl_I cl_div2adic (uintL n, const cl_I& x, const cl_I& y)
 {
@@ -48,3 +50,4 @@ const cl_I cl_div2adic (uintL n, const cl_I& x, const cl_I& y)
 }
 // Bit complexity (N := n): O(M(N)).
 
+}  // namespace cln