Changeset e8e516 in git


Ignore:
Timestamp:
Oct 23, 1997, 3:56:19 PM (27 years ago)
Author:
Jens Schmidt <schmidt@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
c82e7910ebf6204b5d83978ce3ff54bf94d8b019
Parents:
4a829c69e158c7592f09e5ef30649d089e42b109
Message:
	* factory.template, factoryconf.template, gengftables.cc,
	  ftmpl_inst.cc: doc fix


git-svn-id: file:///usr/local/Singular/svn/trunk@841 2c84dea3-7e68-4137-9b89-c4e89433aadc
File:
1 edited

Legend:

Unmodified
Added
Removed
  • factory/ftmpl_inst.cc

    r4a829c6 re8e516  
    11/* emacs edit mode for this file is -*- C++ -*- */
    2 /* $Id: ftmpl_inst.cc,v 1.3 1997-06-30 15:35:01 schmidt Exp $ */
     2/* $Id: ftmpl_inst.cc,v 1.4 1997-10-23 13:56:19 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//}}}
    313
    414#include <factoryconf.h>
     15
     16#include <factory.h>
    517
    618#ifdef macintosh
     
    1830#endif
    1931
    20 #include <factory.h>
    21 
     32//{{{ explicit template class instantiations
    2233template class Factor<CanonicalForm>;
    2334template class List<CFFactor>;
     35template class ListItem<CFFactor>;
    2436template class ListIterator<CFFactor>;
    2537template class List<CanonicalForm>;
     38template class ListItem<CanonicalForm>;
    2639template class ListIterator<CanonicalForm>;
    2740template class Array<CanonicalForm>;
    2841template class List<MapPair>;
     42template class ListItem<MapPair>;
    2943template class ListIterator<MapPair>;
    3044template class Matrix<CanonicalForm>;
    3145template class SubMatrix<CanonicalForm>;
    3246template class Array<REvaluation>;
     47//}}}
    3348
     49//{{{ explicit template function instantiations
    3450#ifndef NOSTREAMIO
    3551template ostream & operator << ( ostream &, const List<CanonicalForm> & );
     
    4258#endif /* NOSTREAMIO */
    4359
    44 template List<CFFactor> Union ( const List<CFFactor>&, const List<CFFactor>& );
     60template int operator == ( const Factor<CanonicalForm> &, const Factor<CanonicalForm> & );
    4561
    46 /*
    47 template CanonicalForm crossprod ( const Array<CanonicalForm>&, const Array<CanonicalForm>& );
    48 template CanonicalForm prod ( const Array<CanonicalForm>& );
    49 */
     62template List<CFFactor> Union ( const List<CFFactor> &, const List<CFFactor> & );
    5063
    51 template CanonicalForm tmax ( const CanonicalForm&, const CanonicalForm& );
    52 template CanonicalForm tmin ( const CanonicalForm&, const CanonicalForm& );
     64template CanonicalForm tmax ( const CanonicalForm &, const CanonicalForm & );
     65template CanonicalForm tmin ( const CanonicalForm &, const CanonicalForm & );
    5366
    54 template int tmax ( const int&, const int& );
    55 template int tmin ( const int&, const int& );
     67template int tmax ( const int &, const int & );
     68template int tmin ( const int &, const int & );
     69//}}}
    5670
    57 // place here your own template stuff, not instantiated by factory
     71//
     72// place here your own template stuff, not yet instantiated by factory
     73//
Note: See TracChangeset for help on using the changeset viewer.