1 | /* emacs edit mode for this file is -*- C++ -*- */ |
---|
2 | /* $Id: ftmpl_inst.cc,v 1.6 1998-03-10 14:51:14 schmidt Exp $ */ |
---|
3 | |
---|
4 | //{{{ docu |
---|
5 | // |
---|
6 | // ftmpl_inst.cc - Factory's template instantiations. |
---|
7 | // |
---|
8 | // For a detailed description how to instantiate Factory's |
---|
9 | // template classes and functions and how to add new |
---|
10 | // instantiations see the `README' file. |
---|
11 | // |
---|
12 | //}}} |
---|
13 | |
---|
14 | #include <factoryconf.h> |
---|
15 | |
---|
16 | #ifdef macintosh |
---|
17 | #include <:templates:ftmpl_array.cc> |
---|
18 | #include <:templates:ftmpl_factor.cc> |
---|
19 | #include <:templates:ftmpl_list.cc> |
---|
20 | #include <:templates:ftmpl_functions.h> |
---|
21 | #include <:templates:ftmpl_matrix.cc> |
---|
22 | #else |
---|
23 | #include <templates/ftmpl_array.cc> |
---|
24 | #include <templates/ftmpl_factor.cc> |
---|
25 | #include <templates/ftmpl_list.cc> |
---|
26 | #include <templates/ftmpl_functions.h> |
---|
27 | #include <templates/ftmpl_matrix.cc> |
---|
28 | #endif |
---|
29 | |
---|
30 | #include <factory.h> |
---|
31 | |
---|
32 | |
---|
33 | //{{{ explicit template class instantiations |
---|
34 | template class Factor<CanonicalForm>; |
---|
35 | template class List<CFFactor>; |
---|
36 | template class ListItem<CFFactor>; |
---|
37 | template class ListIterator<CFFactor>; |
---|
38 | template class List<CanonicalForm>; |
---|
39 | template class ListItem<CanonicalForm>; |
---|
40 | template class ListIterator<CanonicalForm>; |
---|
41 | template class Array<CanonicalForm>; |
---|
42 | template class List<MapPair>; |
---|
43 | template class ListItem<MapPair>; |
---|
44 | template class ListIterator<MapPair>; |
---|
45 | template class Matrix<CanonicalForm>; |
---|
46 | template class SubMatrix<CanonicalForm>; |
---|
47 | template class Array<REvaluation>; |
---|
48 | //}}} |
---|
49 | |
---|
50 | //{{{ explicit template function instantiations |
---|
51 | #ifndef NOSTREAMIO |
---|
52 | template ostream & operator << ( ostream &, const List<CanonicalForm> & ); |
---|
53 | template ostream & operator << ( ostream &, const List<CFFactor> & ); |
---|
54 | template ostream & operator << ( ostream &, const List<MapPair> & ); |
---|
55 | template ostream & operator << ( ostream &, const Array<CanonicalForm> & ); |
---|
56 | template ostream & operator << ( ostream &, const Factor<CanonicalForm> & ); |
---|
57 | template ostream & operator << ( ostream &, const Matrix<CanonicalForm> & ); |
---|
58 | template ostream & operator << ( ostream &, const Array<REvaluation> & ); |
---|
59 | #endif /* NOSTREAMIO */ |
---|
60 | |
---|
61 | template int operator == ( const Factor<CanonicalForm> &, const Factor<CanonicalForm> & ); |
---|
62 | |
---|
63 | template List<CFFactor> Union ( const List<CFFactor> &, const List<CFFactor> & ); |
---|
64 | |
---|
65 | #ifndef WINNT |
---|
66 | template CanonicalForm tmax ( const CanonicalForm &, const CanonicalForm & ); |
---|
67 | template CanonicalForm tmin ( const CanonicalForm &, const CanonicalForm & ); |
---|
68 | |
---|
69 | template int tmax ( const int &, const int & ); |
---|
70 | template int tmin ( const int &, const int & ); |
---|
71 | #endif |
---|
72 | //}}} |
---|
73 | |
---|
74 | // |
---|
75 | // place here your own template stuff, not yet instantiated by factory |
---|
76 | // |
---|