]> www.ginac.de Git - cln.git/blobdiff - src/float/transcendental/cl_F_zeta_int_def.cc
* Also filter out SCCS subdirs while recursing and searching for
[cln.git] / src / float / transcendental / cl_F_zeta_int_def.cc
index ded95e23179b911bf5258ec29e0378d43b0db81e..b4210cfb7f95ec1956fc10d5cae3044499de42b9 100644 (file)
@@ -1,10 +1,10 @@
-// cl_zeta().
+// zeta().
 
 // General includes.
 #include "cl_sysdep.h"
 
 // Specification.
-#include "cl_float.h"
+#include "cln/float.h"
 
 
 // Implementation.
 #include "cl_F_tran.h"
 #include "cl_LF.h"
 
-const cl_F cl_zeta (int s)
+namespace cln {
+
+const cl_F zeta (int s)
 {
-       floatformatcase(cl_default_float_format
-       ,       return cl_LF_to_SF(cl_zeta(s,LF_minlen));
-       ,       return cl_LF_to_FF(cl_zeta(s,LF_minlen));
-       ,       return cl_LF_to_DF(cl_zeta(s,LF_minlen));
-       ,       return cl_zeta(s,len);
+       floatformatcase(default_float_format
+       ,       return cl_LF_to_SF(zeta(s,LF_minlen));
+       ,       return cl_LF_to_FF(zeta(s,LF_minlen));
+       ,       return cl_LF_to_DF(zeta(s,LF_minlen));
+       ,       return zeta(s,len);
        );
 }
+
+}  // namespace cln