Changeset 939ac5f in git
- Timestamp:
- Aug 22, 2000, 11:03:21 AM (23 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', '0604212ebb110535022efecad887940825b97c3f')
- Children:
- 29c03cba2a9cc84f615cbd8dc65a976688228a3c
- Parents:
- de023aded2316d538ae624544ebb39c049e712d9
- Location:
- Singular
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/polys-impl.cc
rde023ad r939ac5f 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: polys-impl.cc,v 1.4 4 2000-08-14 12:56:44 obachmanExp $ */4 /* $Id: polys-impl.cc,v 1.45 2000-08-22 09:03:20 Singular Exp $ */ 5 5 6 6 /*************************************************************** … … 914 914 #endif 915 915 916 #ifdef HAVE_SHIFTED_EXPONENTS 917 #ifdef PDEBUG 918 int rComp0(poly p1,poly p2) 919 { 920 int i; 921 for(i=0; i<=currRing->pCompHighIndex;i++) 922 { 923 if (p1->exp.l[i] != p2->exp.l[i]) 924 { 925 if (p1->exp.l[i] > p2->exp.l[i]) 926 return currRing->ordsgn[i]; 927 else 928 return -currRing->ordsgn[i]; 929 } 930 } 931 return 0; 932 } 933 #endif 934 #endif 916 935 #endif // POLYS_IMPL_CC -
Singular/polys1.cc
rde023ad r939ac5f 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: polys1.cc,v 1. 39 2000-08-14 12:56:46 obachmanExp $ */4 /* $Id: polys1.cc,v 1.40 2000-08-22 09:03:21 Singular Exp $ */ 5 5 6 6 /* … … 447 447 if (i > currRing->bitmask) 448 448 { 449 Werror("exponent is too large, max. is %d",currRing->bitmask);449 Werror("exponent %d is too large, max. is %d",i,currRing->bitmask); 450 450 return NULL; 451 451 } … … 453 453 if (i > EXPONENT_MAX) 454 454 { 455 Werror("exponent is too large, max. is %d",EXPONENT_MAX);455 Werror("exponent %d is too large, max. is %d",i,EXPONENT_MAX); 456 456 return NULL; 457 457 } -
Singular/ring.cc
rde023ad r939ac5f 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: ring.cc,v 1.10 4 2000-08-18 15:42:08Singular Exp $ */4 /* $Id: ring.cc,v 1.105 2000-08-22 09:03:21 Singular Exp $ */ 5 5 6 6 /* … … 2559 2559 for(j=0;j<=r->pCompHighIndex;j++) 2560 2560 { 2561 r->ordsgn[r->pCompLSize - j - 1] 2562 = tmp_ordsgn[j]; 2561 r->ordsgn[j] = tmp_ordsgn[j]; 2563 2562 } 2564 2563
Note: See TracChangeset
for help on using the changeset viewer.