]> www.ginac.de Git - ginac.git/blob - check/check.h
- "make clean" works better
[ginac.git] / check / check.h
1 /** @file check.h
2  *
3  *  Prototypes for all individual checks.
4  *
5  *  GiNaC Copyright (C) 1999 Johannes Gutenberg University Mainz, Germany
6  *
7  *  This program is free software; you can redistribute it and/or modify
8  *  it under the terms of the GNU General Public License as published by
9  *  the Free Software Foundation; either version 2 of the License, or
10  *  (at your option) any later version.
11  *
12  *  This program is distributed in the hope that it will be useful,
13  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
14  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  *  GNU General Public License for more details.
16  *
17  *  You should have received a copy of the GNU General Public License
18  *  along with this program; if not, write to the Free Software
19  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
20  */
21
22 #ifndef CHECK_H
23 #define CHECK_H
24
25 // fcntimer is defined in timer.cpp and used for timing check functions only:
26 unsigned fcntimer(unsigned fcn());
27
28 // prototypes for all individual checks must be unsigned fcn() in order to be
29 // able to use fcntimer() as a wrapper:
30 unsigned paranoia_check();
31 unsigned numeric_output();
32 unsigned numeric_consist();
33 unsigned powerlaws();
34 unsigned expand_subs();
35 unsigned inifcns_consist();
36 unsigned differentiation();
37 unsigned poly_gcd();
38 unsigned normalization();
39 unsigned matrix_checks();
40 unsigned lsolve_onedim();
41 unsigned series_expansion();
42
43 #endif // ndef CHECK_H