Changeset 8444b0 in git
- Timestamp:
- Aug 8, 2001, 4:27:38 PM (22 years ago)
- Branches:
- (u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
- Children:
- 1ac173caaa52482213be39480214765a2e70eb5f
- Parents:
- 456842ed1cd4bb0af35f859e0befe623c3991393
- Location:
- libfac/factor
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
libfac/factor/SqrFree.cc
r456842 r8444b0 2 2 /////////////////////////////////////////////////////////////////////////////// 3 3 // emacs edit mode for this file is -*- C++ -*- 4 static char * rcsid = "$Id: SqrFree.cc,v 1. 6 2001-08-08 14:26:56Singular Exp $";4 static char * rcsid = "$Id: SqrFree.cc,v 1.7 2001-08-08 14:27:38 Singular Exp $"; 5 5 static char * errmsg = "\nYou found a bug!\nPlease inform (Michael Messollen) michael@math.uni-sb.de .\n Please include above information and your input (the ideal/polynomial and characteristic) in your bug-report.\nThank you."; 6 6 /////////////////////////////////////////////////////////////////////////////// … … 262 262 WerrorS("libfac: ERROR: SqrFreed: we should never fall trough here!"); 263 263 #else 264 #i nfdef NOSTREAMIO264 #ifndef NOSTREAMIO 265 265 cerr << "\nlibfac: ERROR: SqrFreed: we should never fall trough here!\n" 266 266 << rcsid << errmsg << endl; … … 341 341 /* 342 342 $Log: not supported by cvs2svn $ 343 Revision 1.6 2001/08/08 14:26:56 Singular 344 *hannes: Dan's HAVE_SINGULAR_ERROR 345 343 346 Revision 1.5 2001/08/08 11:59:13 Singular 344 347 *hannes: Dan's NOSTREAMIO changes -
libfac/factor/Truefactor.cc
r456842 r8444b0 2 2 /////////////////////////////////////////////////////////////////////////////// 3 3 // emacs edit mode for this file is -*- C++ -*- 4 //static char * rcsid = "@(#) $Id: Truefactor.cc,v 1. 8 2001-08-08 11:59:13Singular Exp $";4 //static char * rcsid = "@(#) $Id: Truefactor.cc,v 1.9 2001-08-08 14:26:56 Singular Exp $"; 5 5 /////////////////////////////////////////////////////////////////////////////// 6 6 // Factory - Includes … … 16 16 17 17 #ifdef SINGULAR 18 # define HAVE_SINGULAR 18 #define HAVE_SINGULAR_ERROR 19 #endif 20 21 #ifdef HAVE_SINGULAR_ERROR 19 22 extern "C" { void WerrorS(char *); } 20 23 #endif … … 356 359 int n=2; 357 360 if ( PossibleFactors.length() < n ) { // a little check 358 #ifdef HAVE_SINGULAR 361 #ifdef HAVE_SINGULAR_ERROR 359 362 WerrorS("libfac: ERROR: TakeNorms less then two items remaining!"); 360 363 #else 364 #ifndef NOSTREAMIO 361 365 cerr << "libfac: ERROR: TakeNorms less then two items remaining! " 362 366 << endl; 367 #else 368 ; 369 #endif 363 370 #endif 364 371 } … … 398 405 } 399 406 else{ 400 #ifdef HAVE_SINGULAR 407 #ifdef HAVE_SINGULAR_ERROR 401 408 WerrorS("libfac: TakeNorms: somethings wrong with remaining factors!"); 402 409 #else 410 #ifndef NOSTREAMIO 403 411 cerr << "libfac: TakeNorms: somethings wrong with remaining factors!" 404 412 << endl; 413 #endif 405 414 #endif 406 415 } … … 413 422 /* 414 423 $Log: not supported by cvs2svn $ 424 Revision 1.8 2001/08/08 11:59:13 Singular 425 *hannes: Dan's NOSTREAMIO changes 426 415 427 Revision 1.7 2001/08/06 08:32:54 Singular 416 428 * hannes: code cleanup
Note: See TracChangeset
for help on using the changeset viewer.