3 * Values for a do-it-yourself typeinfo scheme.
5 * GiNaC Copyright (C) 1999 Johannes Gutenberg University Mainz, Germany
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.
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.
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
22 #ifndef __GINAC_TINFOS_H__
23 #define __GINAC_TINFOS_H__
25 #define TINFO_BASIC 0x00000001U
27 #define TINFO_EXPAIRSEQ 0x00010001U
28 #define TINFO_ADD 0x00011001U
29 #define TINFO_MUL 0x00011002U
31 #define TINFO_SYMBOL 0x00020001U
32 #define TINFO_CONSTANT 0x00021001U
34 #define TINFO_EXPRSEQ 0x00030001U
35 #define TINFO_FUNCTION 0x00031001U
36 #define TINFO_NCMUL 0x00031002U
37 // #define TINFO_NFUNCTION 0x00031003U
39 #define TINFO_LST 0x00040001U
41 #define TINFO_MATRIX 0x00050001U
43 #define TINFO_POWER 0x00060001U
45 #define TINFO_RELATIONAL 0x00070001U
47 #define TINFO_FAIL 0x00080001U
49 #define TINFO_NUMERIC 0x00090001U
51 #define TINFO_SERIES 0x000a0001U
53 #define TINFO_INDEXED 0x000b0001U
54 #define TINFO_ALGEBRA 0x000b1001U
55 #define TINFO_CLIFFORD 0x000b1101U
56 #define TINFO_COLOR 0x000b1201U
57 #define TINFO_ISOSPIN 0x000b1301U
58 #define TINFO_SIMP_LOR 0x000b1401U
60 #define TINFO_STRUCTURE 0x000c0001U
61 // reserved up to 0x000cffffU
62 // for user defined structures
64 #define TINFO_IDX 0x000d0001U
65 #define TINFO_COLORIDX 0x000d1001U
66 #define TINFO_LORENTZIDX 0x000d1002U
68 #endif // ndef __GINAC_TINFOS_H__