source: git/factory/ftmpl_inst.cc @ 8d2c11

spielwiese
Last change on this file since 8d2c11 was 362fc67, checked in by Martin Lee <martinlee84@…>, 12 years ago
chg: remove $Id$
  • Property mode set to 100644
File size: 2.8 KB
Line 
1/* emacs edit mode for this file is -*- C++ -*- */
2
3//{{{ docu
4//
5// ftmpl_inst.cc - Factory's template instantiations.
6//
7// For a detailed description how to instantiate Factory's
8// template classes and functions and how to add new
9// instantiations see the `README' file.
10//
11//}}}
12
13#include "config.h"
14
15// #include <factory/factoryconf.h>
16// #include "factory.h"
17#include "cf_iter.h"
18#include "canonicalform.h"
19#include "cf_assert.h"
20#include "cf_reval.h"
21#include "cf_map.h"
22
23
24#include "templates/ftmpl_array.cc"
25#include "templates/ftmpl_factor.cc"
26#include "templates/ftmpl_list.cc"
27#include "templates/ftmpl_functions.h"
28#include "templates/ftmpl_matrix.cc"
29
30
31//{{{ explicit template class instantiations
32template class Factor<CanonicalForm>;
33template class List<CFFactor>;
34template class ListItem<CFFactor>;
35template class ListIterator<CFFactor>;
36template class List<CanonicalForm>;
37template class ListItem<CanonicalForm>;
38template class ListIterator<CanonicalForm>;
39template class Array<CanonicalForm>;
40template class List<MapPair>;
41template class ListItem<MapPair>;
42template class ListIterator<MapPair>;
43template class Matrix<CanonicalForm>;
44template class SubMatrix<CanonicalForm>;
45template class Array<REvaluation>;
46//}}}
47
48//{{{ explicit template function instantiations
49#ifndef NOSTREAMIO
50template OSTREAM & operator << ( OSTREAM &, const List<CanonicalForm> & );
51template OSTREAM & operator << ( OSTREAM &, const List<CFFactor> & );
52template OSTREAM & operator << ( OSTREAM &, const List<MapPair> & );
53template OSTREAM & operator << ( OSTREAM &, const Array<CanonicalForm> & );
54template OSTREAM & operator << ( OSTREAM &, const Factor<CanonicalForm> & );
55template OSTREAM & operator << ( OSTREAM &, const Matrix<CanonicalForm> & );
56template OSTREAM & operator << ( OSTREAM &, const Array<REvaluation> & );
57#endif /* NOSTREAMIO */
58
59template int operator == ( const Factor<CanonicalForm> &, const Factor<CanonicalForm> & );
60
61template List<CFFactor> Union ( const List<CFFactor> &, const List<CFFactor> & );
62
63#if ! defined(WINNT) || defined(__GNUC__)
64template CanonicalForm tmax ( const CanonicalForm &, const CanonicalForm & );
65template CanonicalForm tmin ( const CanonicalForm &, const CanonicalForm & );
66
67template Variable tmax ( const Variable &, const Variable & );
68template Variable tmin ( const Variable &, const Variable & );
69
70template int tmax ( const int &, const int & );
71template int tmin ( const int &, const int & );
72template int tabs ( const int & );
73#endif
74//}}}
75
76//
77template List<CanonicalForm> Union ( const List<CanonicalForm> &, const List<CanonicalForm> & );
78template List<CanonicalForm> Difference ( const List<CanonicalForm> &, const List<CanonicalForm> & );
79template CanonicalForm prod ( const List<CanonicalForm> & );
80template bool find ( const List<CanonicalForm> &, const CanonicalForm&);
81// place here your own template stuff, not yet instantiated by factory
82//
Note: See TracBrowser for help on using the repository browser.