]> www.ginac.de Git - ginac.git/blob - ginac/ginac.h
- moved the subsections that were marked as 'digression:' to an appendix
[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 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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
21  */
22
23 #ifndef __GINAC_H__
24 #define __GINAC_H__
25
26 #include <ginac/basic.h>
27
28 #include <ginac/ex.h>
29 #include <ginac/normal.h>
30
31 #include <ginac/constant.h>
32 #include <ginac/fail.h>
33 #include <ginac/idx.h>
34 #include <ginac/lst.h>
35 #include <ginac/matrix.h>
36 #include <ginac/numeric.h>
37 #include <ginac/power.h>
38 #include <ginac/relational.h>
39 #include <ginac/structure.h>
40 #include <ginac/symbol.h>
41
42 #include <ginac/expair.h>
43 #include <ginac/expairseq.h>
44 #include <ginac/add.h>
45 #include <ginac/mul.h>
46 #include <ginac/series.h>
47
48 #include <ginac/exprseq.h>
49 #include <ginac/function.h>
50 #include <ginac/ncmul.h>
51
52 #include <ginac/inifcns.h>
53 #include <ginac/operators.h>
54
55 #ifndef GINAC_BASE_ONLY
56 #include <ginac/indexed.h>
57 #include <ginac/clifford.h>
58 #include <ginac/coloridx.h>
59 #include <ginac/color.h>
60 #include <ginac/isospin.h>
61 #include <ginac/lorentzidx.h>
62 #include <ginac/simp_lor.h>
63 #endif // ndef GINAC_BASE_ONLY
64
65 #endif // ndef __GINAC_H__