Changeset 7c5fba5 in git
- Timestamp:
- Aug 3, 2010, 2:26:26 PM (13 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
- Children:
- 57dfde6393ffc702f8e898e313d4b76980cdddd5
- Parents:
- 23206f45f27f97c1e881f5551c606d81d4c1a225
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/iparith.cc
r23206f4 r7c5fba5 6389 6389 if (ringvar>0) 6390 6390 { 6391 if ((monomexpr!=NULL) && (p!=NULL) 6392 &&((long)pTotaldegree(monomexpr)> (currRing->bitmask / (long)pTotaldegree(p))))6393 { 6394 W error("OVERFLOW in subst, max exponent is %ld",currRing->bitmask);6395 return TRUE;6391 if ((monomexpr!=NULL) && (p!=NULL) && (pTotaldegree(p)!=0) && 6392 ((unsigned long)pTotaldegree(monomexpr) > (currRing->bitmask / (unsigned long)pTotaldegree(p)))) 6393 { 6394 Warn("possible OVERFLOW in subst, max exponent is %ld",currRing->bitmask); 6395 //return TRUE; 6396 6396 } 6397 6397 if ((monomexpr==NULL)||(pNext(monomexpr)==NULL))
Note: See TracChangeset
for help on using the changeset viewer.