]> www.ginac.de Git - ginac.git/blob - ginac/ginac.h
inifcns_nstdsums.cpp: S_num takes cl_N as an argument instead of numeric.
[ginac.git] / ginac / ginac.h
1 /** @file ginac.h
2  *
3  *  This include file includes all other public GiNaC headers. */
4
5 /*
6  *  GiNaC Copyright (C) 1999-2008 Johannes Gutenberg University Mainz, Germany
7  *
8  *  This program is free software; you can redistribute it and/or modify
9  *  it under the terms of the GNU General Public License as published by
10  *  the Free Software Foundation; either version 2 of the License, or
11  *  (at your option) any later version.
12  *
13  *  This program is distributed in the hope that it will be useful,
14  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
15  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  *  GNU General Public License for more details.
17  *
18  *  You should have received a copy of the GNU General Public License
19  *  along with this program; if not, write to the Free Software
20  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
21  */
22
23 #ifndef __GINAC_H__
24 #define __GINAC_H__
25
26 #include "version.h"
27
28 #include "basic.h"
29
30 #include "ex.h"
31 #include "normal.h"
32 #include "archive.h"
33 #include "print.h"
34
35 #include "constant.h"
36 #include "fail.h"
37 #include "integral.h"
38 #include "lst.h"
39 #include "matrix.h"
40 #include "numeric.h"
41 #include "power.h"
42 #include "relational.h"
43 #include "structure.h"
44 #include "symbol.h"
45 #include "pseries.h"
46 #include "wildcard.h"
47 #include "symmetry.h"
48
49 #include "expair.h"
50 #include "expairseq.h"
51 #include "add.h"
52 #include "mul.h"
53
54 #include "exprseq.h"
55 #include "function.h"
56 #include "ncmul.h"
57
58 #include "inifcns.h"
59 #include "fderivative.h"
60 #include "operators.h"
61 #include "hash_map.h"
62
63 #include "idx.h"
64 #include "indexed.h"
65 #include "tensor.h"
66 #include "color.h"
67 #include "clifford.h"
68
69 #include "excompiler.h"
70
71 #ifdef __MAKECINT__
72 #pragma link C++ nestedclass;
73 #pragma link C++ nestedtypedef;
74 #endif
75
76 #endif // ndef __GINAC_H__