]> www.ginac.de Git - cln.git/blobdiff - tests/timefact.cc
[BUGFIX]: cl_asm_.cc: fix include paths.
[cln.git] / tests / timefact.cc
index 78688b7674f2c3f0ec11b6cc366859239260fbb3..572640c0de53b13a748b560bc60d3b2c71ceb93f 100644 (file)
@@ -1,11 +1,12 @@
-#include <cl_number.h>
-#include <cl_io.h>
-#include <cl_integer.h>
-#include <cl_random.h>
-#include "cl_I.h"
-#include <stdlib.h>
-#include <string.h>
-#include <cl_timing.h>
+#include <cln/number.h>
+#include <cln/io.h>
+#include <cln/integer.h>
+#include <cln/random.h>
+#include "integer/cl_I.h"
+#include <cstdlib>
+#include <cstring>
+#include <cln/timing.h>
+using namespace cln;
 
 int main (int argc, char * argv[])
 {
@@ -19,6 +20,6 @@ int main (int argc, char * argv[])
        cl_I m = cl_I(argv[1]);
        { CL_TIMING;
          for (int rep = repetitions; rep > 0; rep--)
-           cl_I f = factorial(FN_to_L(m));
+           cl_I f = factorial(FN_to_V(m));
        }
 }