X-Git-Url: https://ginac.de/CLN/cln.git//cln.git?a=blobdiff_plain;f=src%2Finteger%2F2adic%2Fcl_I_2adic_div.cc;h=cc5ff34fe64345e6e75ae08ef5b4f25d275344c5;hb=8169a19b38c42588b39b21dae5bdb964e2f6b8c6;hp=97791fe7906fbaf7a5ae85ee1d41a92edfe13322;hpb=dd9e0f894eec7e2a8cf85078330ddc0a6639090b;p=cln.git diff --git a/src/integer/2adic/cl_I_2adic_div.cc b/src/integer/2adic/cl_I_2adic_div.cc index 97791fe..cc5ff34 100644 --- a/src/integer/2adic/cl_I_2adic_div.cc +++ b/src/integer/2adic/cl_I_2adic_div.cc @@ -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