]> www.ginac.de Git - ginac.git/blob - check/check.h
- created AUTHORS and README files, updated INSTALL
[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