Changeset 80f8f6c in git
- Timestamp:
- Feb 23, 2016, 2:11:24 AM (7 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
- Children:
- ca5f5ec50e7d7e43e956e80b9cff948d8a89ee55
- Parents:
- 50c6c2f123ea605b5992f5784cb7c48542819afa
- Files:
-
- 35 edited
Legend:
- Unmodified
- Added
- Removed
-
IntegerProgramming/Buchberger.cc
r50c6c2f r80f8f6c 1491 1491 first_iter.set_to_list(aux_list); 1492 1492 found=0; 1493 // no reduction occur ed yet1493 // no reduction occurred yet 1494 1494 1495 1495 while(first_iter.is_at_end()==FALSE) … … 1607 1607 first_iter.set_to_list(new_generators); 1608 1608 found=0; 1609 // no reduction occur ed yet1609 // no reduction occurred yet 1610 1610 1611 1611 while(first_iter.element_is_marked_head_reduced()==FALSE) … … 2057 2057 first_iter.set_to_list(generators); 2058 2058 found=0; 2059 // no reduction occur ed yet2059 // no reduction occurred yet 2060 2060 2061 2061 while(first_iter.element_is_marked_head_reduced()==FALSE) -
IntegerProgramming/ideal.h
r50c6c2f r80f8f6c 119 119 // -1 indicates a "semantic" error (which occurs e.g. if some constructor 120 120 // argument is out of range) 121 // -2 indicates an error occur ed when reading from a file121 // -2 indicates an error occurred when reading from a file 122 122 // -3 indicates an overflow of an integer type variable 123 123 -
IntegerProgramming/matrix.h
r50c6c2f r80f8f6c 38 38 // -1 indicates a "semantic" error (which occurs e.g. if some constructor 39 39 // argument is out of range) 40 // -2 indicates an error occur ed when reading from a file40 // -2 indicates an error occurred when reading from a file 41 41 42 42 Integer **coefficients; … … 51 51 // the number of vectors stored in H (the size of these vectors is columns) 52 52 // If _kernel_dimension==-2, no kernel basis has been computed yet. 53 // If _kernel_dimension==-1, an error has occur ed during the kernel basis53 // If _kernel_dimension==-1, an error has occurred during the kernel basis 54 54 // computation. 55 55 -
IntegerProgramming/term_ordering.h
r50c6c2f r80f8f6c 51 51 // -1 indicates a "semantic" error (arguments out of range, for example a 52 52 // negative number of variables); 53 // -2 indicates an error occur ed when reading from a file.53 // -2 indicates an error occurred when reading from a file. 54 54 55 55 short weighted_ordering; -
Singular/LIB/decodegb.lib
r50c6c2f r80f8f6c 860 860 @format 861 861 - y is a (code) word, 862 - pos = positions where errors occur ed,862 - pos = positions where errors occurred, 863 863 - val = their corresponding values 864 864 @end format -
Singular/LIB/equising.lib
r50c6c2f r80f8f6c 1766 1766 dbprint(i_print,"// "); 1767 1767 1768 if (M[2]==1) // error occur ed during esStratum computation1769 { 1770 print("Some error has occur ed during the computation");1768 if (M[2]==1) // error occurred during esStratum computation 1769 { 1770 print("Some error has occurred during the computation"); 1771 1771 return(list(0,0)); 1772 1772 } … … 1915 1915 equimultiple sections through the non-nodes of the reduced total 1916 1916 transform are trivial sections 1917 l[2]=1 if some error has occur ed, l[2]=0 otherwise;1917 l[2]=1 if some error has occurred, l[2]=0 otherwise; 1918 1918 @end format 1919 1919 or consisting of a ring and an integer, where … … 1922 1922 (describing the ES-stratum), the ideal ES_all_triv (describing the 1923 1923 part with trival equimultiple sections) and the polynomial p_F=F, 1924 l[2]=1 if some error has occur ed, l[2]=0 otherwise.1924 l[2]=1 if some error has occurred, l[2]=0 otherwise. 1925 1925 @end format 1926 1926 NOTE: L is supposed to be the output of hnexpansion (with the given ordering -
Singular/LIB/groups.lib
r50c6c2f r80f8f6c 941 941 input ideal devided by the part of the content which have 942 942 prime factors less then 32003. 943 l[2] contains the prime numbers which occur ed in the division943 l[2] contains the prime numbers which occurred in the division 944 944 EXAMPLE: example contentS; shows an example 945 945 " -
Singular/LIB/hnoether.lib
r50c6c2f r80f8f6c 2882 2882 1 if change of base ring necessary 2883 2883 third entry = numbers of conjugates ( if essential = 1 ) 2884 if some error has occur ed, the empty list is returned2884 if some error has occurred, the empty list is returned 2885 2885 " 2886 2886 { -
Singular/LIB/hyperel.lib
r50c6c2f r80f8f6c 468 468 if there is an optional parameter s!=0, then divisor additonally 469 469 returns a parameter, which says, whether irreducible polynomials 470 occur ed during computations or not. Otherwise only warnings are470 occurred during computations or not. Otherwise only warnings are 471 471 displayed on the monitor. For s=0 nothing happens. 472 472 Curve C: y^2+h(x)y=f(x) is defined over basering. … … 665 665 D2,s2=divisor(D[2],1,h,f,1); 666 666 667 // Only if irreducible polynomials occur ed in D1 !and! D2 a warning667 // Only if irreducible polynomials occurred in D1 !and! D2 a warning 668 668 // is necessary. 669 669 if (s1==1 and s2==1) -
Singular/LIB/presolve.lib
r50c6c2f r80f8f6c 939 939 if( n == 0 ) 940 940 { 941 dbprint( pr,"","// no variable occur ed in "+typeof(id)+", no change of ring!");941 dbprint( pr,"","// no variable occurred in "+typeof(id)+", no change of ring!"); 942 942 return(id); 943 943 } -
Singular/LIB/reesclos.lib
r50c6c2f r80f8f6c 216 216 else 217 217 { 218 "// Compute the closure up to the maximal power of t that occur ed:",pow;218 "// Compute the closure up to the maximal power of t that occurred:",pow; 219 219 } 220 220 } -
Singular/LIB/resolve.lib
r50c6c2f r80f8f6c 3891 3891 l[1][i] is a ring containing a basic object BO, the result of the 3892 3892 resolution. 3893 l[2] contains all rings which occur ed during the resolution process3893 l[2] contains all rings which occurred during the resolution process 3894 3894 NOTE: result may be viewed in a human readable form using presentTree() 3895 3895 EXAMPLE: example resolve; shows an example -
Singular/LIB/tropical.lib
r50c6c2f r80f8f6c 597 597 // note: it may happen, that when resubstituting PARA into 598 598 // the replacement rules 599 // there occur ed some unexpected cancellation;599 // there occurred some unexpected cancellation; 600 600 // we only know that for SOME 601 601 // solution of the zero-dimensional reduction NO -
Singular/dyn_modules/pyobject/pyobject.cc
r50c6c2f r80f8f6c 239 239 PyErr_Fetch(&pType, &pMessage, &pTraceback); 240 240 241 WerrorS("pyobject error occur ed");241 WerrorS("pyobject error occurred"); 242 242 WerrorS(PyString_AsString(pMessage)); 243 243 -
Singular/emacs.cc
r50c6c2f r80f8f6c 88 88 error("YOU HAVE FOUND A BUG IN SINGULAR.\n" 89 89 "Please, email the following output to singular@mathematik.uni-kl.de\n" 90 "Bug occur ed at %s:%d\n"90 "Bug occurred at %s:%d\n" 91 91 "Message: %s\n" 92 92 "Version: " S_UNAME VERSION __DATE__ __TIME__, -
Singular/iparith.cc
r50c6c2f r80f8f6c 6404 6404 ((unsigned long)pTotaldegree(monomexpr) > (currRing->bitmask / (unsigned long)pTotaldegree(p)/2))) 6405 6405 { 6406 Warn("possible OVERFLOW in subst, max exponent is %ld, sub tituting deg %d by deg %d",currRing->bitmask/2, pTotaldegree(monomexpr), pTotaldegree(p));6406 Warn("possible OVERFLOW in subst, max exponent is %ld, substituting deg %d by deg %d",currRing->bitmask/2, pTotaldegree(monomexpr), pTotaldegree(p)); 6407 6407 //return TRUE; 6408 6408 } -
Singular/ipid.cc
r50c6c2f r80f8f6c 633 633 case LANG_C: return "object"; break; 634 634 case LANG_NONE: return "none"; break; 635 default: return "unknow language";635 default: return "unknown language"; 636 636 } 637 637 } -
Singular/iplib.cc
r50c6c2f r80f8f6c 919 919 if(yylp_errno) 920 920 { 921 Werror("Library %s: ERROR occur ed: in line %d, %d.", newlib, yylplineno,921 Werror("Library %s: ERROR occurred: in line %d, %d.", newlib, yylplineno, 922 922 current_pos(0)); 923 923 if(yylp_errno==YYLP_BAD_CHAR) -
Singular/libparse.cc
r50c6c2f r80f8f6c 3522 3522 if(yylp_errno) 3523 3523 { 3524 printf("ERROR occur ed: [%d] ", yylp_errno);3524 printf("ERROR occurred: [%d] ", yylp_errno); 3525 3525 printf(yylp_errlist[yylp_errno], yylplineno); 3526 3526 printf("\n"); -
Singular/libparse.ll
r50c6c2f r80f8f6c 981 981 if(yylp_errno) 982 982 { 983 printf("ERROR occur ed: [%d] ", yylp_errno);983 printf("ERROR occurred: [%d] ", yylp_errno); 984 984 printf(yylp_errlist[yylp_errno], yylplineno); 985 985 printf("\n"); -
Singular/walk_ip.cc
r50c6c2f r80f8f6c 141 141 142 142 case WalkOverFlowError: 143 Werror( "Overflow occur ed.\n");143 Werror( "Overflow occurred.\n"); 144 144 destIdeal= NULL; 145 145 break; … … 158 158 //Responsible for contact between user and walk64. Checks the 159 159 //input-data, and calls fractalWalk64. Returns the new groebner 160 //basis or something else if an error occur ed.160 //basis or something else if an error occurred. 161 161 /////////////////////////////////////////////////////////////////// 162 162 //Uses: omAlloc0,fractalWalkConsistency,omFreeSize,sizeof,IDIDEAL, … … 261 261 262 262 case WalkOverFlowError: 263 Werror( "Overflow occur ed in ring %s.\n", first->Name() );263 Werror( "Overflow occurred in ring %s.\n", first->Name() ); 264 264 rChangeCurrRing(destRing); 265 265 destIdeal= NULL; -
factory/ChangeLog
r50c6c2f r80f8f6c 920 920 Fri Sep 26 12:54:41 1997 Jens Schmidt <schmidt@mathematik.uni-kl.de> 921 921 922 * cf_assert.h: prints the function now where the assrtion occur ed if922 * cf_assert.h: prints the function now where the assrtion occurred if 923 923 we are translating with gcc 924 924 -
factory/facHensel.cc
r50c6c2f r80f8f6c 772 772 /// solve \f$ 1=\sum_{i=1}^n{\delta_{i} \prod_{j\neq i}{f_j}} \f$ mod \f$p^k\f$ 773 773 /// over \f$ Q(\alpha) \f$ by first computing mod \f$p\f$ and if no zero divisor 774 /// occur ed compute it mod \f$p^k\f$774 /// occurred compute it mod \f$p^k\f$ 775 775 CFList 776 776 diophantineQa (const CanonicalForm& F, const CanonicalForm& G, -
kernel/linear_algebra/interpolation.cc
r50c6c2f r80f8f6c 1225 1225 { 1226 1226 #ifdef writemsg 1227 PrintS("wrong number of generators occur ed");1227 PrintS("wrong number of generators occurred"); 1228 1228 #else 1229 1229 if (protocol) PrintS("ng"); … … 1251 1251 { 1252 1252 #ifdef writemsg 1253 PrintS("wrong leading term occur ed");1253 PrintS("wrong leading term occurred"); 1254 1254 #else 1255 1255 if (protocol) PrintS("lt"); … … 1266 1266 { 1267 1267 #ifdef writemsg 1268 PrintS("wrong seq of cols occur ed");1268 PrintS("wrong seq of cols occurred"); 1269 1269 #else 1270 1270 if (protocol) PrintS("sc"); -
kernel/mod2.h
r50c6c2f r80f8f6c 186 186 makes sure that all poly operations in your file are done with 187 187 PDEBUG == 2 188 To break after an error occur ed, set a debugger breakpoint on188 To break after an error occurred, set a debugger breakpoint on 189 189 dErrorBreak. 190 190 */ … … 250 250 Some tips on possible values of OM_TRACK, OM_CHECK, OM_KEEP: 251 251 + To find out about an address that has been freed twice, first locate the 252 file(s) where the error occur ed, and then at the beginning of these files:252 file(s) where the error occurred, and then at the beginning of these files: 253 253 #define OM_CHECK 3 254 254 #define OM_TRACK 5 … … 258 258 Under dynamic scope, do (e.g., from within the debugger): 259 259 om_Opts.MinCheck = 3; om_Opts.MinTrack = 5; omOpts.Keep = LONG_MAX; 260 + to find out where "memory corruption" occur ed, increase value of260 + to find out where "memory corruption" occurred, increase value of 261 261 OM_CHECK - the higher this value is, the more consistency checks are 262 262 done (However a value > 3 checks the entire memory each time an omalloc … … 280 280 defined, then the "real" alloc/realloc/free macros are used, and all 281 281 omTest, omDebug and omCheck routines are undefined 282 + to break after an omError occur ed within a debugger,282 + to break after an omError occurred within a debugger, 283 283 set a breakpoint on dErrorBreak 284 284 + to do checks from within the debugger, or to do checks with explicit -
kernel/numeric/mpr_base.cc
r50c6c2f r80f8f6c 302 302 * The v-distance is the distance along the direction v to boundary of 303 303 * Minkowski Sum of Qi (here vector v is represented by shift[]). 304 * Returns the v-distance or -1.0 if an error occur ed.304 * Returns the v-distance or -1.0 if an error occurred. 305 305 */ 306 306 mprfloat vDistance( Coord_t * acoords, int dim ); -
libpolys/coeffs/bigintmat.h
r50c6c2f r80f8f6c 273 273 void extendCols (int i); 274 274 275 bool add(bigintmat *b); ///< Addiert zur Matrix die Matrix b dazu. Return false => an error occur ed275 bool add(bigintmat *b); ///< Addiert zur Matrix die Matrix b dazu. Return false => an error occurred 276 276 bool sub(bigintmat *b); ///< Subtrahiert ... 277 277 bool skalmult(number b, coeffs c); ///< Multipliziert zur Matrix den Skalar b hinzu -
libpolys/misc/auxiliary.h.in
r50c6c2f r80f8f6c 221 221 makes sure that all poly operations in your file are done with 222 222 PDEBUG == 2 223 To break after an error occur ed, set a debugger breakpoint on223 To break after an error occurred, set a debugger breakpoint on 224 224 dErrorBreak. 225 225 */ … … 285 285 Some tips on possible values of OM_TRACK, OM_CHECK, OM_KEEP: 286 286 + To find out about an address that has been freed twice, first locate the 287 file(s) where the error occur ed, and then at the beginning of these files:287 file(s) where the error occurred, and then at the beginning of these files: 288 288 #define OM_CHECK 3 289 289 #define OM_TRACK 5 … … 293 293 Under dynamic scope, do (e.g., from within the debugger): 294 294 om_Opts.MinCheck = 3; om_Opts.MinTrack = 5; omOpts.Keep = LONG_MAX; 295 + to find out where "memory corruption" occur ed, increase value of295 + to find out where "memory corruption" occurred, increase value of 296 296 OM_CHECK - the higher this value is, the more consistency checks are 297 297 done (However a value > 3 checks the entire memory each time an omalloc … … 315 315 defined, then the "real" alloc/realloc/free macros are used, and all 316 316 omTest, omDebug and omCheck routines are undefined 317 + to break after an omError occur ed within a debugger,317 + to break after an omError occurred within a debugger, 318 318 set a breakpoint on dErrorBreak 319 319 + to do checks from within the debugger, or to do checks with explicit -
libpolys/polys/nc/old.gring.cc
r50c6c2f r80f8f6c 3090 3090 if (nc_CallPlural(r->GetNC()->C, r->GetNC()->D, NULL, NULL, res, bSetupQuotient, true, true, r)) 3091 3091 { 3092 WarnS("Error occur ed while coping/setuping the NC structure!"); // No reaction!???3092 WarnS("Error occurred while coping/setuping the NC structure!"); // No reaction!??? 3093 3093 return true; // error 3094 3094 } -
libpolys/polys/pDebug.cc
r50c6c2f r80f8f6c 51 51 fprintf(stderr, "\n// ***dPolyReportError: "); 52 52 vfprintf(stderr, fmt, ap); 53 fprintf(stderr, "\n occur ed at\n");53 fprintf(stderr, "\n occurred at\n"); 54 54 omPrintCurrentBackTraceMax(stderr, 8); 55 55 if (p != NULL) 56 56 { 57 fprintf(stderr, " occur ed for poly: ");57 fprintf(stderr, " occurred for poly: "); 58 58 p_wrp(p, r); 59 59 omPrintAddrInfo(stderr, p, " "); -
libpolys/reporter/dError.cc
r50c6c2f r80f8f6c 59 59 #if !defined(OM_NDEBUG) 60 60 #ifdef omPrintCurrentBackTraceMax 61 fprintf(stderr, " occur ed at: \n");61 fprintf(stderr, " occurred at: \n"); 62 62 omPrintCurrentBackTraceMax(stderr, 8); 63 63 #endif -
libpolys/reporter/reporter.h
r50c6c2f r80f8f6c 109 109 extern int dReportError(const char* fmt, ...); 110 110 #define dReportBug(s) \ 111 dReportError("Bug reported: %s\n occur ed at %s,%d\n", s, __FILE__, __LINE__)111 dReportError("Bug reported: %s\n occurred at %s,%d\n", s, __FILE__, __LINE__) 112 112 113 113 // this is just a dummy procedure which is called after the error -
omalloc/omDebug.h
r50c6c2f r80f8f6c 180 180 if (_status && (_status != omError_MaxError)) \ 181 181 { \ 182 _omPrintAddrInfo(stderr, _status, addr, bin_size, flags, 10, " occur ed for"); \182 _omPrintAddrInfo(stderr, _status, addr, bin_size, flags, 10, " occurred for"); \ 183 183 return _status; \ 184 184 } \ -
omalloc/omDebugCheck.c
r50c6c2f r80f8f6c 410 410 om_CallErrorHook = 1; 411 411 412 _omPrintAddrInfo(stderr, error, addr, bin_size, flags, 10, " occur ed for");412 _omPrintAddrInfo(stderr, error, addr, bin_size, flags, 10, " occurred for"); 413 413 om_Opts.ErrorHook(); 414 414 -
omalloc/omError.c
r50c6c2f r80f8f6c 115 115 { 116 116 #ifndef OM_NDEBUG 117 fprintf(stderr, "\n occur ed at: ");117 fprintf(stderr, "\n occurred at: "); 118 118 if (! _omPrintCurrentBackTrace(stderr, OM_FLR_VAL)) 119 119 fprintf(stderr, " ??");
Note: See TracChangeset
for help on using the changeset viewer.