]> www.ginac.de Git - cln.git/blob - tests/test_nt.cc
benchmarks: time{catalan,euler,exp1,zeta3}.cc actually compile and work now.
[cln.git] / tests / test_nt.cc
1 #include <iostream>
2
3 extern int test_nt_jacobi (int iterations);
4
5 #define RUN(tester,iterations)  \
6         std::cout << "Testing "#tester"..." << std::endl; \
7         error |= tester (iterations);
8
9 int test_nt (int iterations)
10 {
11         int error = 0;
12         RUN(test_nt_jacobi,iterations);
13         return error;
14 }