]> www.ginac.de Git - cln.git/blobdiff - tests/timezeta3.cc
* src/base/digitseq/cl_asm_i386_.cc (compare_loop_up,
[cln.git] / tests / timezeta3.cc
index 8488f26b53df165278bba0e28b005436757a159e..b0f8608030e5014853e9e6321c65153d25687b9f 100644 (file)
@@ -1,11 +1,12 @@
-#include <cl_number.h>
-#include <cl_io.h>
-#include <cl_float.h>
-#include <cl_real.h>
-#include <stdlib.h>
-#include <string.h>
-#include <cl_timing.h>
+#include <cln/number.h>
+#include <cln/io.h>
+#include <cln/float.h>
+#include <cln/real.h>
+#include <cstdlib>
+#include <cstring>
+#include <cln/timing.h>
 #include "cl_LF.h"
+using namespace cln;
 
 int main (int argc, char * argv[])
 {
@@ -17,11 +18,11 @@ int main (int argc, char * argv[])
        if (argc < 2)
                exit(1);
        uintL len = atoi(argv[1]);
-       extern cl_LF cl_zeta (int s, uintC len);
+       extern cl_LF zeta (int s, uintC len);
        extern cl_LF compute_zeta_exp (int s, uintC len);
        extern cl_LF compute_zeta_cvz1 (int s, uintC len);
        extern cl_LF compute_zeta_cvz2 (int s, uintC len);
-       extern cl_LF cl_zeta3 (uintC len);
+       extern cl_LF zeta3 (uintC len);
        cl_LF p;
        ln(cl_I_to_LF(1000,len+10)); // fill cache
        { CL_TIMING;
@@ -41,7 +42,7 @@ int main (int argc, char * argv[])
        cout << p << endl;
        { CL_TIMING;
          for (int rep = repetitions; rep > 0; rep--)
-           { p = cl_zeta3(len); }
+           { p = zeta3(len); }
        }
        cout << p << endl;
 }