]> www.ginac.de Git - ginac.git/blob - ginac/tinfos.h
24aeef0547feaa7897eaf7501d1b5bc14891439a
[ginac.git] / ginac / tinfos.h
1 /** @file tinfos.h
2  *
3  *  Values for a do-it-yourself typeinfo scheme.
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 __GINAC_TINFOS_H__
23 #define __GINAC_TINFOS_H__
24
25 #define TINFO_basic        0x00000001U
26
27 #define TINFO_expairseq    0x00010001U
28 #define TINFO_add          0x00011001U
29 #define TINFO_mul          0x00011002U
30
31 #define TINFO_symbol       0x00020001U
32 #define TINFO_constant     0x00021001U
33
34 #define TINFO_exprseq      0x00030001U
35 #define TINFO_function     0x00031001U
36 #define TINFO_ncmul        0x00031002U
37
38 #define TINFO_lst          0x00040001U
39
40 #define TINFO_matrix       0x00050001U
41
42 #define TINFO_power        0x00060001U
43
44 #define TINFO_relational   0x00070001U
45
46 #define TINFO_fail         0x00080001U
47
48 #define TINFO_numeric      0x00090001U
49
50 #define TINFO_series       0x000a0001U
51
52 #define TINFO_indexed      0x000b0001U
53 #define TINFO_algebra      0x000b1001U
54 #define TINFO_clifford     0x000b1101U
55 #define TINFO_color        0x000b1201U
56 #define TINFO_isospin      0x000b1301U
57 #define TINFO_simp_lor     0x000b1401U
58
59 #define TINFO_structure    0x000c0001U
60 // reserved up to          0x000cffffU
61 // for user defined structures
62
63 #define TINFO_idx          0x000d0001U
64 #define TINFO_coloridx     0x000d1001U
65 #define TINFO_lorentzidx   0x000d1002U
66
67 #endif // ndef __GINAC_TINFOS_H__