3 * Values for a do-it-yourself typeinfo scheme. */
6 * GiNaC Copyright (C) 1999-2001 Johannes Gutenberg University Mainz, Germany
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.
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.
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
23 #ifndef __GINAC_TINFOS_H__
24 #define __GINAC_TINFOS_H__
26 #ifndef NO_NAMESPACE_GINAC
28 #endif // ndef NO_NAMESPACE_GINAC
30 const unsigned TINFO_basic = 0x00000001U;
32 const unsigned TINFO_expairseq = 0x00010001U;
33 const unsigned TINFO_add = 0x00011001U;
34 const unsigned TINFO_mul = 0x00011002U;
36 const unsigned TINFO_symbol = 0x00020001U;
37 const unsigned TINFO_constant = 0x00021001U;
39 const unsigned TINFO_exprseq = 0x00030001U;
40 const unsigned TINFO_function = 0x00031001U;
41 const unsigned TINFO_ncmul = 0x00031002U;
43 const unsigned TINFO_lst = 0x00040001U;
45 const unsigned TINFO_matrix = 0x00050001U;
47 const unsigned TINFO_power = 0x00060001U;
49 const unsigned TINFO_relational = 0x00070001U;
51 const unsigned TINFO_fail = 0x00080001U;
53 const unsigned TINFO_numeric = 0x00090001U;
55 const unsigned TINFO_pseries = 0x000a0001U;
57 const unsigned TINFO_indexed = 0x000b0001U;
58 const unsigned TINFO_algebra = 0x000b1001U;
59 const unsigned TINFO_clifford = 0x000b1101U;
60 const unsigned TINFO_color = 0x000b1201U;
61 const unsigned TINFO_isospin = 0x000b1301U;
62 const unsigned TINFO_simp_lor = 0x000b1401U;
63 const unsigned TINFO_lortensor = 0x000b1501U;
65 const unsigned TINFO_structure = 0x000c0001U;
66 // reserved up to 0x000cffffU
67 // for user defined structures
69 const unsigned TINFO_idx = 0x000d0001U;
70 const unsigned TINFO_coloridx = 0x000d1001U;
71 const unsigned TINFO_lorentzidx = 0x000d1002U;
73 #ifndef NO_NAMESPACE_GINAC
75 #endif // ndef NO_NAMESPACE_GINAC
77 #endif // ndef __GINAC_TINFOS_H__