source: git/factory/ftmpl_inst.cc @ 3ce9af

spielwiese
Last change on this file since 3ce9af was 3ce9af, checked in by Jens Schmidt <schmidt@…>, 27 years ago
* ftmpl_inst.cc: include paths for mac added git-svn-id: file:///usr/local/Singular/svn/trunk@453 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 2.1 KB
Line 
1/* emacs edit mode for this file is -*- C++ -*- */
2/* $Id: ftmpl_inst.cc,v 1.3 1997-06-30 15:35:01 schmidt Exp $ */
3
4#include <factoryconf.h>
5
6#ifdef macintosh
7#include <::templates:ftmpl_array.cc>
8#include <::templates:ftmpl_factor.cc>
9#include <::templates:ftmpl_list.cc>
10#include <::templates:ftmpl_functions.h>
11#include <::templates:ftmpl_matrix.cc>
12#else
13#include <templates/ftmpl_array.cc>
14#include <templates/ftmpl_factor.cc>
15#include <templates/ftmpl_list.cc>
16#include <templates/ftmpl_functions.h>
17#include <templates/ftmpl_matrix.cc>
18#endif
19
20#include <factory.h>
21
22template class Factor<CanonicalForm>;
23template class List<CFFactor>;
24template class ListIterator<CFFactor>;
25template class List<CanonicalForm>;
26template class ListIterator<CanonicalForm>;
27template class Array<CanonicalForm>;
28template class List<MapPair>;
29template class ListIterator<MapPair>;
30template class Matrix<CanonicalForm>;
31template class SubMatrix<CanonicalForm>;
32template class Array<REvaluation>;
33
34#ifndef NOSTREAMIO
35template ostream & operator << ( ostream &, const List<CanonicalForm> & );
36template ostream & operator << ( ostream &, const List<CFFactor> & );
37template ostream & operator << ( ostream &, const List<MapPair> & );
38template ostream & operator << ( ostream &, const Array<CanonicalForm> & );
39template ostream & operator << ( ostream &, const Factor<CanonicalForm> & );
40template ostream & operator << ( ostream &, const Matrix<CanonicalForm> & );
41template ostream & operator << ( ostream &, const Array<REvaluation> & );
42#endif /* NOSTREAMIO */
43
44template List<CFFactor> Union ( const List<CFFactor>&, const List<CFFactor>& );
45
46/*
47template CanonicalForm crossprod ( const Array<CanonicalForm>&, const Array<CanonicalForm>& );
48template CanonicalForm prod ( const Array<CanonicalForm>& );
49*/
50
51template CanonicalForm tmax ( const CanonicalForm&, const CanonicalForm& );
52template CanonicalForm tmin ( const CanonicalForm&, const CanonicalForm& );
53
54template int tmax ( const int&, const int& );
55template int tmin ( const int&, const int& );
56
57// place here your own template stuff, not instantiated by factory
Note: See TracBrowser for help on using the repository browser.