- Timestamp:
- Mar 10, 1998, 3:48:41 PM (26 years ago)
- Branches:
- (u'spielwiese', 'e7cc1ebecb61be8b9ca6c18016352af89940b21a')
- Children:
- 140854bae823c965dbbed185aaa231f64b2c8cbe
- Parents:
- 3316e4fb3e30a46b4a382d96c98d754e39f0df61
- Location:
- factory
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
factory/canonicalform.h
r3316e4f r71da5e 1 1 /* emacs edit mode for this file is -*- C++ -*- */ 2 /* $Id: canonicalform.h,v 1.2 2 1998-02-02 08:57:59schmidt Exp $ */2 /* $Id: canonicalform.h,v 1.23 1998-03-10 14:47:58 schmidt Exp $ */ 3 3 4 4 #ifndef INCL_CANONICALFORM_H … … 13 13 #include "cf_defs.h" 14 14 #include "variable.h" 15 #ifdef macintosh 16 #include <:templates:ftmpl_list.h> 17 #include <:templates:ftmpl_array.h> 18 #include <:templates:ftmpl_factor.h> 19 #include <:templates:ftmpl_matrix.h> 20 #else 21 #include "templates/ftmpl_list.h" 22 #include "templates/ftmpl_array.h" 23 #include "templates/ftmpl_factor.h" 24 #include "templates/ftmpl_matrix.h" 25 #endif 15 #include "ftmpl_list.h" 16 #include "ftmpl_array.h" 17 #include "ftmpl_factor.h" 18 #include "ftmpl_matrix.h" 26 19 27 20 /*BEGINPUBLIC*/ -
factory/cf_gcd.cc
r3316e4f r71da5e 1 1 /* emacs edit mode for this file is -*- C++ -*- */ 2 /* $Id: cf_gcd.cc,v 1.1 7 1998-02-02 08:58:43schmidt Exp $ */2 /* $Id: cf_gcd.cc,v 1.18 1998-03-10 14:48:05 schmidt Exp $ */ 3 3 4 4 #include <config.h> … … 16 16 #include "sm_sparsemod.h" 17 17 #include "fac_util.h" 18 #ifdef macintosh 19 #include <:templates:ftmpl_functions.h> 20 #else 21 #include "templates/ftmpl_functions.h" 22 #endif 18 #include "ftmpl_functions.h" 23 19 24 20 static CanonicalForm gcd_poly( const CanonicalForm & f, const CanonicalForm& g, bool modularflag ); -
factory/cf_map.cc
r3316e4f r71da5e 1 1 /* emacs edit mode for this file is -*- C++ -*- */ 2 /* $Id: cf_map.cc,v 1.1 0 1998-01-27 10:30:05 pohlExp $ */2 /* $Id: cf_map.cc,v 1.11 1998-03-10 14:48:12 schmidt Exp $ */ 3 3 4 4 //{{{ docu … … 15 15 #include "cf_map.h" 16 16 #include "cf_iter.h" 17 #ifdef macintosh 18 #include <:templates:ftmpl_functions.h> 19 #else 20 #include "templates/ftmpl_functions.h" 21 #endif 17 #include "ftmpl_functions.h" 22 18 23 19 //{{{ MapPair & MapPair::operator = ( const MapPair & p ) -
factory/cf_map.h
r3316e4f r71da5e 1 1 /* emacs edit mode for this file is -*- C++ -*- */ 2 /* $Id: cf_map.h,v 1.1 0 1998-01-27 10:30:04 pohlExp $ */2 /* $Id: cf_map.h,v 1.11 1998-03-10 14:48:18 schmidt Exp $ */ 3 3 4 4 #ifndef INCL_CF_MAP_H … … 19 19 #include "variable.h" 20 20 #include "canonicalform.h" 21 #ifdef macintosh 22 #include <:templates:ftmpl_list.h> 23 #else 24 #include "templates/ftmpl_list.h" 25 #endif 21 #include "ftmpl_list.h" 26 22 27 23 /*BEGINPUBLIC*/ -
factory/fac_ezgcd.cc
r3316e4f r71da5e 1 1 /* emacs edit mode for this file is -*- C++ -*- */ 2 /* $Id: fac_ezgcd.cc,v 1. 9 1998-01-27 11:04:04 pohlExp $ */2 /* $Id: fac_ezgcd.cc,v 1.10 1998-03-10 14:48:24 schmidt Exp $ */ 3 3 4 4 #include <config.h> … … 8 8 9 9 #include "cf_defs.h" 10 #ifdef macintosh11 #include <:templates:ftmpl_functions.h>12 #else13 #include "templates/ftmpl_functions.h"14 #endif15 10 #include "canonicalform.h" 16 11 #include "fac_util.h" … … 20 15 #include "cf_primes.h" 21 16 #include "fac_distrib.h" 17 #include "ftmpl_functions.h" 22 18 23 19 -
factory/sm_sparsemod.cc
r3316e4f r71da5e 1 1 /* emacs edit mode for this file is -*- C++ -*- */ 2 /* $Id: sm_sparsemod.cc,v 1. 5 1998-01-27 11:01:29 pohlExp $ */2 /* $Id: sm_sparsemod.cc,v 1.6 1998-03-10 14:48:29 schmidt Exp $ */ 3 3 4 4 //{{{ docu … … 28 28 #include "sm_util.h" 29 29 #include "sm_sparsemod.h" 30 #ifdef macintosh 31 #include <:templates:ftmpl_array.h> 32 #include <:templates:ftmpl_functions.h> 33 #else 34 #include "templates/ftmpl_array.h" 35 #include "templates/ftmpl_functions.h" 36 #endif 30 #include "ftmpl_array.h" 31 #include "ftmpl_functions.h" 37 32 38 33 static CanonicalForm -
factory/sm_util.cc
r3316e4f r71da5e 1 1 /* emacs edit mode for this file is -*- C++ -*- */ 2 /* $Id: sm_util.cc,v 1. 4 1998-01-27 11:06:41 pohlExp $ */2 /* $Id: sm_util.cc,v 1.5 1998-03-10 14:48:34 schmidt Exp $ */ 3 3 4 4 //{{{ docu … … 23 23 #include "canonicalform.h" 24 24 #include "variable.h" 25 #ifdef macintosh 26 #include <:templates:ftmpl_array.h> 27 #else 28 #include "templates/ftmpl_array.h" 29 #endif 25 #include "ftmpl_array.h" 30 26 31 27 //{{{ static CanonicalForm fmonome( const CanonicalForm & f ) -
factory/sm_util.h
r3316e4f r71da5e 1 1 /* emacs edit mode for this file is -*- C++ -*- */ 2 /* $Id: sm_util.h,v 1. 4 1998-01-27 11:06:40 pohlExp $ */2 /* $Id: sm_util.h,v 1.5 1998-03-10 14:48:41 schmidt Exp $ */ 3 3 4 4 #ifndef INCL_SM_UTIL_H … … 17 17 #include "canonicalform.h" 18 18 #include "cf_reval.h" 19 #ifdef macintosh 20 #include <:templates:ftmpl_array.h> 21 #else 22 #include "templates/ftmpl_array.h" 23 #endif 19 #include "ftmpl_array.h" 24 20 25 21 typedef Array<REvaluation> REArray;
Note: See TracChangeset
for help on using the changeset viewer.