Changeset c6c86b in git
- Timestamp:
- Aug 22, 2008, 11:35:08 AM (15 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', '0604212ebb110535022efecad887940825b97c3f')
- Children:
- ffdeea5241aeda579058070f60c8f42e49c237b0
- Parents:
- 241cc911c4f3eaf5b79c7df9d0e3feb5bce70a2d
- Location:
- factory
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
factory/cf_char.cc
r241cc9 rc6c86b 1 1 /* emacs edit mode for this file is -*- C++ -*- */ 2 /* $Id: cf_char.cc,v 1.1 0 2008-08-18 11:19:33Singular Exp $ */2 /* $Id: cf_char.cc,v 1.11 2008-08-22 09:35:08 Singular Exp $ */ 3 3 4 4 #include <config.h> … … 41 41 ff_big = c > cf_getSmallPrime( cf_getNumSmallPrimes()-1 ); 42 42 #ifdef SINGULAR 43 if (!errorreported && (c > 536870909)) Werror S("characteristic too large(max is 2^29)");43 if (!errorreported && (c > 536870909)) Werror("characteristic %d is too large(max is 2^29)",c); 44 44 #endif 45 45 ff_setprime( c ); -
factory/singext.h
r241cc9 rc6c86b 1 1 /* emacs edit mode for this file is -*- C++ -*- */ 2 /* $Id: singext.h,v 1. 9 2008-08-19 13:10:55Singular Exp $ */2 /* $Id: singext.h,v 1.10 2008-08-22 09:35:08 Singular Exp $ */ 3 3 4 4 #ifndef INCL_SINGEXT_H … … 21 21 extern int errorreported; 22 22 extern "C" void WerrorS(const char *s); 23 extern "C" void Werror(const char *s, ...); 23 24 24 25 // used to open the GF(q) tables from Singular
Note: See TracChangeset
for help on using the changeset viewer.