You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
#include <cln/number.h>
#include <cln/io.h>
#include <cln/integer.h>
#include <cstdlib>
#include <cstring>
#include <cln/timing.h>
using namespace std; using namespace cln;
int main (int argc, char * argv[]) { int limit = 1000; int repetitions = 1; while (argc >= 3) { if (!strcmp(argv[1],"-r")) { repetitions = atoi(argv[2]); argc -= 2; argv += 2; continue; } if (!strcmp(argv[1],"-l")) { limit = atoi(argv[2]); argc -= 2; argv += 2; continue; } break; } if (argc < 1) exit(1);
cerr << "Limit: " << limit << endl; cerr << "Number of repetitions: " << repetitions << endl;
{ CL_TIMING; for (int rep = repetitions; rep > 0; rep--) { cl_I u = 1, v = 1, p = 1, q = 1; for (int k = 1; k <= limit; k++) { cl_I w = u+v; u = v; v = w; p = p*w; q = lcm(q,w); } } }
}
|