]> www.ginac.de Git - cln.git/blobdiff - src/base/digitseq/cl_DS_recipsqrt.cc
2006-04-25 Bruno Haible <bruno@clisp.org>
[cln.git] / src / base / digitseq / cl_DS_recipsqrt.cc
index ba5d4cab9d1a73f628eed3c5dec2723ebc59c4bf..e561c541165f8ad0acb8ec72ecb61673600256f2 100644 (file)
@@ -10,7 +10,9 @@
 // Implementation.
 
 #include "cl_low.h"
-#include "cl_abort.h"
+#include "cln/abort.h"
+
+namespace cln {
 
 // Compute the reciprocal square root of a digit sequence.
 // Input: UDS a_MSDptr/a_len/.. of length a_len,
        }
        // Other steps.
        var int k;
-       integerlength32((uint32)b_len-1,k=);
+       integerlengthC(b_len-1,k=);
        // 2^(k-1) < b_len <= 2^k, so we need k steps, plus one
        // one more step at the beginning (because step 1 was not complete).
        var uintC n = 0;
 }
 // Bit complexity (N := b_len): O(M(N)).
 
+}  // namespace cln