Changeset 41a8db in git
- Timestamp:
- Feb 3, 2005, 3:05:55 PM (18 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', '00e2e9c41af3fde1273eb3633f4c0c7c3db2579d')
- Children:
- 561f4c0d952008e8298e35960b15e5398b7493b6
- Parents:
- e21afbaa54be68a2741df57da6a4156aba4b81d7
- Location:
- factory
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
factory/cf_gcd.cc
re21afb r41a8db 1 1 /* emacs edit mode for this file is -*- C++ -*- */ 2 /* $Id: cf_gcd.cc,v 1.2 7 2005-01-05 11:27:17Singular Exp $ */2 /* $Id: cf_gcd.cc,v 1.28 2005-02-03 14:05:55 Singular Exp $ */ 3 3 4 4 #include <config.h> … … 298 298 } 299 299 300 staticCanonicalForm300 CanonicalForm 301 301 gcd_poly1( const CanonicalForm & f, const CanonicalForm & g, bool modularflag ) 302 302 { -
factory/fac_ezgcd.cc
re21afb r41a8db 1 1 /* emacs edit mode for this file is -*- C++ -*- */ 2 /* $Id: fac_ezgcd.cc,v 1.1 6 2005-01-25 13:20:33Singular Exp $ */2 /* $Id: fac_ezgcd.cc,v 1.17 2005-02-03 14:05:55 Singular Exp $ */ 3 3 4 4 #include <config.h> … … 208 208 return ezgcd( F, G, b, true ); 209 209 } 210 #if 1 211 extern CanonicalForm 212 gcd_poly1( const CanonicalForm & f, const CanonicalForm & g, bool modularflag ); 213 214 return gcd_poly1( F, G, getCharacteristic()==0 ); 215 #else 210 216 211 217 DEBOUTLN( cerr, "ezgcdspec: (S1) done, Ft = " << Ft ); … … 262 268 // this point is never reached, but to avoid compiler warnings let's return a value 263 269 return 0; 270 #endif 264 271 } 265 272
Note: See TracChangeset
for help on using the changeset viewer.