Changeset 1bc154 in git for IntegerProgramming
- Timestamp:
- Apr 22, 2003, 5:02:44 PM (20 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a657104b677b4c461d018cbf3204d72d34ad66a9')
- Children:
- 06929a86708ebe85e54f18d8893aab70ff1e24a9
- Parents:
- fbe76fdafa3dff0afdb58e9671e287324431e611
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
IntegerProgramming/ideal.cc
rfbe76f r1bc154 264 264 #ifdef _INT_ 265 265 266 if(((A.H)[j][k]> INT_MAX) || ((A.H)[j][k]<INT_MIN))266 if(((A.H)[j][k]>(const BigInt&)INT_MAX) || ((A.H)[j][k]<(const BigInt&)INT_MIN)) 267 267 { 268 268 cerr<<"\nWARNING: ideal& ideal::Pottier_ideal(matrix&, const " … … 278 278 #ifdef _LONG_ 279 279 280 if(((A.H)[j][k]> LONG_MAX) || ((A.H)[j][k]<LONG_MIN))280 if(((A.H)[j][k]>(const BigInt&)LONG_MAX) || ((A.H)[j][k]<(const BigInt&)LONG_MIN)) 281 281 { 282 282 cerr<<"\nWARNING: ideal& ideal::Pottier_ideal(matrix&, const " … … 387 387 #ifdef _INT_ 388 388 389 if(((A.H)[j][k]> INT_MAX) || ((A.H)[j][k]<INT_MIN))389 if(((A.H)[j][k]>(const BigInt&)INT_MAX) || ((A.H)[j][k]<(const BigInt&)INT_MIN)) 390 390 { 391 391 cerr<<"\nWARNING: ideal& ideal::Hosten_Sturmfels_ideal(matrix&, const " … … 400 400 #ifdef _LONG_ 401 401 402 if(((A.H)[j][k]> LONG_MAX) || ((A.H)[j][k]<LONG_MIN))402 if(((A.H)[j][k]>(const BigInt&)LONG_MAX) || ((A.H)[j][k]<(const BigInt&)LONG_MIN)) 403 403 { 404 404 cerr<<"\nWARNING: ideal& ideal::Hosten_Sturmfels_ideal(matrix&, const " … … 509 509 #ifdef _INT_ 510 510 511 if(((A.H)[j][k]> INT_MAX) || ((A.H)[j][k]<INT_MIN))511 if(((A.H)[j][k]>(const BigInt&)INT_MAX) || ((A.H)[j][k]<(const BigInt&)INT_MIN)) 512 512 { 513 513 cerr<<"\nWARNING: ideal& ideal::DiBiase_Urbanke_ideal(matrix&, const " … … 522 522 #ifdef _LONG_ 523 523 524 if(((A.H)[j][k]> LONG_MAX) || ((A.H)[j][k]<LONG_MIN))524 if(((A.H)[j][k]>(const BigInt&)LONG_MAX) || ((A.H)[j][k]<(const BigInt&)LONG_MIN)) 525 525 { 526 526 cerr<<"\nWARNING: ideal& ideal::DiBiase_Urbanke_ideal(matrix&, const " … … 630 630 #ifdef _INT_ 631 631 632 if(((A.H)[j][k]> INT_MAX) || ((A.H)[j][k]<INT_MIN))632 if(((A.H)[j][k]>(const BigInt&)INT_MAX) || ((A.H)[j][k]<(const BigInt&)INT_MIN)) 633 633 { 634 634 cerr<<"\nWARNING: ideal& ideal::Bigatti_LaScala_Robbiano_ideal" … … 643 643 #ifdef _LONG_ 644 644 645 if(((A.H)[j][k]> LONG_MAX) || ((A.H)[j][k]<LONG_MIN))645 if(((A.H)[j][k]>(const BigInt&)LONG_MAX) || ((A.H)[j][k]<(const BigInt&)LONG_MIN)) 646 646 { 647 647 cerr<<"\nWARNING: ideal& ideal::Bigatti_LaScala_Robbiano_ideal"
Note: See TracChangeset
for help on using the changeset viewer.