source: git/factory/libfac/factor/tmpl_inst.h @ 6ce030f

spielwiese
Last change on this file since 6ce030f was 6ce030f, checked in by Oleksandr Motsak <motsak@…>, 12 years ago
removal of the $Id$ svn tag from everywhere NOTE: the git SHA1 may be used instead (only on special places) NOTE: the libraries Singular/LIB/*.lib still contain the marker due to our current use of svn
  • Property mode set to 100644
File size: 1.3 KB
Line 
1///////////////////////////////////////////////////////////////////////////////
2// emacs edit mode for this file is -*- C++ -*-
3///////////////////////////////////////////////////////////////////////////////
4#ifndef TMPL_INST_H
5#define TMPL_INST_H
6
7#include <libfac/factor/class.h>
8//typedef CanonicalForm CF;
9//typedef List<CanonicalForm> CFList;
10//typedef ListIterator<CanonicalForm> CFListIterator;
11/*BEGINPUBLIC*/
12typedef List<CFList> ListCFList;
13/*ENDPUBLIC*/
14typedef ListIterator<CFList> ListCFListIterator ;
15
16//typedef Factor<CanonicalForm> CFFactor;
17//typedef List<CFFactor> CFFList;
18//typedef ListIterator<CFFactor> CFFListIterator;
19
20/*BEGINPUBLIC*/
21typedef List<int> IntList ;
22typedef ListIterator<int> IntListIterator ;
23/*ENDPUBLIC*/
24typedef List<IntList> ListIntList;
25typedef ListIterator<IntList> ListIntListIterator ;
26
27typedef Substitution<CanonicalForm> SForm ;
28typedef List<SForm> SFormList;
29typedef ListIterator<SForm> SFormListIterator;
30
31/*BEGINPUBLIC*/
32typedef List<Variable> Varlist;
33typedef ListIterator<Variable> VarlistIterator;
34/*ENDPUBLIC*/
35
36typedef Array<int> Intarray;
37
38#ifdef HAVE_DATABASE
39typedef List<CFFList> ListCFFList;
40typedef ListIterator<CFFList> ListCFFListIterator;
41#endif
42
43//typedef Array<CFArray> CCFArray ;
44//typedef Array<CCFArray> CCCFArray ;
45
46#endif /* TMPL_INST_H */
47
48
Note: See TracBrowser for help on using the repository browser.