]> www.ginac.de Git - cln.git/blobdiff - src/float/transcendental/cl_LF_ratseries_.cc
* All Files have been modified for inclusion of namespace cln;
[cln.git] / src / float / transcendental / cl_LF_ratseries_.cc
index c8753eb153f41fafb9c782e06cb5ce47eed28031..c08135f2a444372ab93fbff1c54c3b167211068d 100644 (file)
@@ -9,11 +9,13 @@
 
 // Implementation.
 
-#include "cl_lfloat.h"
-#include "cl_integer.h"
-#include "cl_abort.h"
+#include "cln/lfloat.h"
+#include "cln/integer.h"
+#include "cln/abort.h"
 #include "cl_LF.h"
 
+namespace cln {
+
 // Subroutine.
 // Evaluates S = sum(N1 <= n < N2, a(n)/b(n) * (p(N1)...p(n))/(q(N1)...q(n)))
 // and returns P = p(N1)...p(N2-1), Q = q(N1)...q(N2-1), B = B(N1)...B(N2-1)
@@ -38,3 +40,5 @@ const cl_LF eval_rational_series (uintL N, const cl__series& args, uintC len)
 }
 // Bit complexity (if p(n), q(n), a(n), b(n) have length O(log(n))):
 // O(log(N)^2*M(N)).
+
+}  // namespace cln