]> www.ginac.de Git - cln.git/blob - tests/test_nt.cc
51f14960d4dd3856cfcf5112147c3ccd500553e2
[cln.git] / tests / test_nt.cc
1 #include <cl_io.h>
2
3 extern int test_nt_jacobi (int iterations);
4
5 #define RUN(tester,iterations)  \
6         fprint(cl_stdout,"Testing "#tester"...\n"); \
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 }