1 | /* Copyright 1997 Michael Messollen. All rights reserved. */ |
---|
2 | //////////////////////////////////////////////////////////// |
---|
3 | // emacs edit mode for this file is -*- C++ -*- |
---|
4 | // $Id: tmpl_inst.cc,v 1.4 1998-02-27 10:34:02 schmidt Exp $ |
---|
5 | //////////////////////////////////////////////////////////// |
---|
6 | |
---|
7 | |
---|
8 | #include <templates/ftmpl_array.cc> |
---|
9 | #include <templates/ftmpl_factor.cc> |
---|
10 | #include <templates/ftmpl_list.cc> |
---|
11 | #include <templates/ftmpl_functions.h> |
---|
12 | #include <templates/ftmpl_matrix.cc> |
---|
13 | |
---|
14 | #include <factory.h> |
---|
15 | |
---|
16 | template class Factor<CanonicalForm>; |
---|
17 | template class List<CFFactor>; |
---|
18 | template class ListIterator<CFFactor>; |
---|
19 | template class List<CanonicalForm>; |
---|
20 | template class ListIterator<CanonicalForm>; |
---|
21 | template class Array<CanonicalForm>; |
---|
22 | template class List<MapPair>; |
---|
23 | template class ListIterator<MapPair>; |
---|
24 | template class Matrix<CanonicalForm>; |
---|
25 | template class SubMatrix<CanonicalForm>; |
---|
26 | |
---|
27 | template ostream & operator << ( ostream &, const List<CanonicalForm> & ); |
---|
28 | template ostream & operator << ( ostream &, const List<CFFactor> & ); |
---|
29 | template ostream & operator << ( ostream &, const List<MapPair> & ); |
---|
30 | template ostream & operator << ( ostream &, const Array<CanonicalForm> & ); |
---|
31 | template ostream & operator << ( ostream &, const Factor<CanonicalForm> & ); |
---|
32 | //template ostream & operator << ( ostream &, const Matrix<CanonicalForm> & ); |
---|
33 | |
---|
34 | template List<CFFactor> Union ( const List<CFFactor>&, const List<CFFactor>& ); |
---|
35 | |
---|
36 | /* |
---|
37 | template CanonicalForm crossprod ( const Array<CanonicalForm>&, const Array<CanonicalForm>& ); |
---|
38 | template CanonicalForm prod ( const Array<CanonicalForm>& ); |
---|
39 | */ |
---|
40 | |
---|
41 | template CanonicalForm tmax ( const CanonicalForm&, const CanonicalForm& ); |
---|
42 | template CanonicalForm tmin ( const CanonicalForm&, const CanonicalForm& ); |
---|
43 | |
---|
44 | template int tmax ( const int&, const int& ); |
---|
45 | template int tmin ( const int&, const int& ); |
---|
46 | |
---|
47 | // place here your own template stuff, not instantiated by factory |
---|
48 | #include "tmpl_inst.h" |
---|
49 | #include "class.cc" |
---|
50 | |
---|
51 | template class List<int>; |
---|
52 | template class ListIterator<int>; |
---|
53 | |
---|
54 | template class List<IntList>; |
---|
55 | template class ListIterator<IntList>; |
---|
56 | |
---|
57 | template class Substitution<CanonicalForm>; |
---|
58 | template class List<SForm>; |
---|
59 | template class ListIterator<SForm>; |
---|
60 | |
---|
61 | template List<CanonicalForm> Union ( const List<CanonicalForm>&, const List<CanonicalForm>& ); |
---|
62 | template List<CanonicalForm> Difference ( const List<CanonicalForm>&, const List<CanonicalForm>& ); |
---|
63 | |
---|
64 | template ostream & operator << ( ostream &, const List<int> & ); |
---|
65 | template ostream & operator << ( ostream &, const List<IntList> & ); |
---|
66 | |
---|
67 | // for charsets: |
---|
68 | template class List<CFList>; |
---|
69 | template class ListIterator<CFList>; |
---|
70 | template class List<Variable>; |
---|
71 | template class ListIterator<Variable> ; |
---|
72 | |
---|
73 | template List<Variable> Union ( const List<Variable>&, const List<Variable>& ); |
---|
74 | template List<Variable> Difference ( const List<Variable>&, const List<Variable>& ); |
---|
75 | |
---|
76 | template ostream & operator << ( ostream &, const List<CFList> & ); |
---|
77 | template ostream & operator << ( ostream &, const List<Variable> & ); |
---|
78 | template ostream & operator << ( ostream &, const List<int> & ); |
---|
79 | template ostream & operator << ( ostream &, const Array<int> & ); |
---|
80 | |
---|
81 | template class Array<int>; |
---|
82 | template class Array<Variable>; |
---|
83 | |
---|
84 | // for database |
---|
85 | #ifdef HAVE_DATABASE |
---|
86 | template class List<CFFList>; |
---|
87 | template class ListIterator<CFFList>; |
---|
88 | #endif /* HAVE_DATABASE */ |
---|
89 | //////////////////////////////////////////////////////////// |
---|
90 | /* |
---|
91 | $Log: not supported by cvs2svn $ |
---|
92 | Revision 1.3 1997/09/12 07:20:00 Singular |
---|
93 | * hannes/michael: libfac-0.3.0 |
---|
94 | |
---|
95 | Revision 1.2 1997/04/25 22:34:36 michael |
---|
96 | Version for libfac-0.2.1 |
---|
97 | |
---|
98 | */ |
---|