X-Git-Url: https://ginac.de/CLN/cln.git//cln.git?a=blobdiff_plain;f=tests%2Ftimefact.cc;h=572640c0de53b13a748b560bc60d3b2c71ceb93f;hb=97da144ed68ca771ce367e7e0d5604a2042c1122;hp=4c23d0827ad5d97b5f219bb220d6f5fc44ddb4b8;hpb=850abfde7f0d985ba01526c346bcd0d733562943;p=cln.git diff --git a/tests/timefact.cc b/tests/timefact.cc index 4c23d08..572640c 100644 --- a/tests/timefact.cc +++ b/tests/timefact.cc @@ -2,10 +2,11 @@ #include #include #include -#include "cl_I.h" -#include -#include +#include "integer/cl_I.h" +#include +#include #include +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)); } }