]> www.ginac.de Git - ginac.git/blob - check/check.h
68622d967b1c8a3f82789127b61a286703930407
[ginac.git] / check / check.h
1 // check/check.h
2
3 #ifndef _CHECK_H_
4 #define _CHECK_H_
5
6 // fcntimer is defined in timer.cpp and used for timing check functions only:
7 unsigned fcntimer(unsigned fcn());
8
9 // prototypes for all individual checks must be unsigned fcn() in order to be
10 // able to use fcntimer() as a wrapper:
11 unsigned paranoia_check();
12 unsigned numeric_output();
13 unsigned numeric_consist();
14 unsigned powerlaws();
15 unsigned expand_subs();
16 unsigned inifcns_consist();
17 unsigned differentiation();
18 unsigned poly_gcd();
19 unsigned normalization();
20 unsigned matrix_checks();
21 unsigned lsolve_onedim();
22 unsigned series_expansion();
23
24 #endif // ndef _CHECK_H_