// check/check.h #ifndef CHECK_H #define CHECK_H // fcntimer is defined in timer.cpp and used for timing check functions only: unsigned fcntimer(unsigned fcn()); // prototypes for all individual checks must be unsigned fcn() in order to be // able to use fcntimer() as a wrapper: unsigned paranoia_check(); unsigned numeric_output(); unsigned numeric_consist(); unsigned powerlaws(); unsigned expand_subs(); unsigned inifcns_consist(); unsigned differentiation(); unsigned poly_gcd(); unsigned normalization(); unsigned matrix_checks(); unsigned lsolve_onedim(); unsigned series_expansion(); #endif // ndef CHECK_H