]> www.ginac.de Git - cln.git/blobdiff - src/float/transcendental/cl_F_zeta_int_f.cc
* Also filter out SCCS subdirs while recursing and searching for
[cln.git] / src / float / transcendental / cl_F_zeta_int_f.cc
index 78cf29e8edc8ec64654f7f79e537c5be9ac98c84..84f3cea0036652b7e4c591ff232bdd08f9e29ddb 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, cl_float_format_t f)
+namespace cln {
+
+const cl_F zeta (int s, float_format_t f)
 {
        floatformatcase((uintL)f
-       ,       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);
+       ,       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