]> www.ginac.de Git - ginac.git/blob - ginac/ginac.h
Fixed cast that caused compile error on 64bit machines.
[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-2009 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 "factor.h"
70
71 #include "excompiler.h"
72
73 #ifndef IN_GINAC
74 #include "parser.h"
75 #else
76 #include "parser/parser.h"
77 #endif
78
79 #ifdef __MAKECINT__
80 #pragma link C++ nestedclass;
81 #pragma link C++ nestedtypedef;
82 #endif
83
84 #endif // ndef GINAC_H