Changeset 1e7e19 in git
- Timestamp:
- Jun 15, 1999, 2:54:55 PM (24 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
- Children:
- 1368792c2ccb1197c3f2ab30867fd969143e673f
- Parents:
- 4a16eb5f1015d1654c4afd0aca819fad6357557f
- Location:
- libfac
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
libfac/charset/charset.cc
r4a16eb r1e7e19 2 2 //////////////////////////////////////////////////////////// 3 3 // emacs edit mode for this file is -*- C++ -*- 4 static char * rcsid = "$Id: charset.cc,v 1. 3 1997-09-12 07:19:40Singular Exp $";4 static char * rcsid = "$Id: charset.cc,v 1.4 1999-06-15 12:54:54 Singular Exp $"; 5 5 ///////////////////////////////////////////////////////////// 6 6 // FACTORY - Includes … … 37 37 #endif 38 38 #include "debug.h" 39 40 #ifdef SINGULAR 41 extern void WarnS(const char *); 42 #include "../../Singular/mod2.h" 43 #include "../../Singular/structs.h" 44 #include "../../Singular/polys.h" 45 #include "../../Singular/febase.h" 46 #include "../../Singular/clapconv.h" 47 #endif 39 48 40 49 // the next computes a characteristic set (a basic set in Wang's sense) … … 554 563 } 555 564 else { 556 //#ifdef HAVE_SINGULAR557 // extern void WerrorS(char *);558 // WerrorS("libfac: Factoring over algebraic function field!");559 //#else560 // cerr << "libfac: Factoring over algebraic function field!" << endl;561 //#endif562 565 i=AS; 563 566 for ( nr=1; nr< AS.length(); nr++){ … … 577 580 break; 578 581 } 582 else 583 { 584 #ifdef SINGULAR 585 //WarnS("libfac: Factoring over algebraic function field required!"); 586 //pWrite(convClapPSingP(elem)); 587 #else 588 #ifndef NOSTREAMIO 589 cerr << "libfac: Factoring over algebraic function field!" << endl; 590 #endif 591 #endif 592 } 579 593 } 580 594 } … … 588 602 /* 589 603 $Log: not supported by cvs2svn $ 604 Revision 1.3 1997/09/12 07:19:40 Singular 605 * hannes/michael: libfac-0.3.0 606 590 607 Revision 1.2 1997/04/25 22:52:28 michael 591 608 changed cerr and cout messages for use with Singular -
libfac/factor/Factor.cc
r4a16eb r1e7e19 1 1 /* Copyright 1996 Michael Messollen. All rights reserved. */ 2 2 /////////////////////////////////////////////////////////////////////////////// 3 static char * rcsid = "$Id: Factor.cc,v 1. 4 1997-11-18 16:39:04Singular Exp $ ";3 static char * rcsid = "$Id: Factor.cc,v 1.5 1999-06-15 12:54:55 Singular Exp $ "; 4 4 static char * errmsg = "\nYou found a bug!\nPlease inform (Michael Messollen) michael@math.uni-sb.de \nPlease include above information and your input (the ideal/polynomial and characteristic) in your bug-report.\nThank you."; 5 5 /////////////////////////////////////////////////////////////////////////////// … … 20 20 # define HAVE_SINGULAR 21 21 extern "C" { void WerrorS(char *); } 22 extern void WarnS(const char *); 22 23 #endif 23 24 … … 602 603 DEBOUTLN(cout, "Returned from specializePoly: success: ", success); 603 604 if (success == 0 ){ // No spezialisation could be found 604 #ifdef HAVE_SINGULAR605 W errorS("libfac: Factorize: ERROR: Not able to find a valid specialization!");605 #ifdef SINGULAR 606 WarnS("libfac: Factorize: ERROR: Not able to find a valid specialization!"); 606 607 #else 607 608 cerr << "libfac: Factorize: ERROR: Not able to find a valid specialization!\n" … … 803 804 /* 804 805 $Log: not supported by cvs2svn $ 806 Revision 1.4 1997/11/18 16:39:04 Singular 807 * hannes: moved WerrorS from C++ to C 808 (Factor.cc MVMultiHensel.cc SqrFree.cc Truefactor.cc) 809 805 810 Revision 1.3 1997/09/12 07:19:46 Singular 806 811 * hannes/michael: libfac-0.3.0
Note: See TracChangeset
for help on using the changeset viewer.