Changeset f7920ef in git
- Timestamp:
- Mar 15, 1999, 10:20:59 AM (25 years ago)
- Branches:
- (u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
- Children:
- 93be5f5644e16f17dc471b12e7f4af247d395f99
- Parents:
- 0a8363710624cb96eb31b5c8f73c2a20d42f0c18
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/iparith.cc
r0a8363 rf7920ef 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: iparith.cc,v 1.13 5 1999-03-12 10:16:21Singular Exp $ */4 /* $Id: iparith.cc,v 1.136 1999-03-15 09:20:59 Singular Exp $ */ 5 5 6 6 /* … … 2535 2535 } 2536 2536 if (po==NULL) 2537 { 2537 2538 po=p; 2539 } 2538 2540 else 2539 2541 { 2540 2542 // now po!=NULL, p!=NULL 2541 int d=(pFDeg(po)+(*module_w)[pGetComp(po)-1] - pFDeg(p) +(*module_w)[i-1]);2543 int d=(pFDeg(po)+(*module_w)[pGetComp(po)-1] - pFDeg(p)-(*module_w)[i-1]); 2542 2544 if (d==0) 2543 d=pComp0(p o,p);2544 if (d <0)2545 d=pComp0(p,po); 2546 if (d > 0) 2545 2547 { 2546 2548 pDelete(&po); po=p; 2547 2549 } 2548 else // (d >0)2550 else // (d < 0) 2549 2551 { 2550 2552 pDelete(&p);
Note: See TracChangeset
for help on using the changeset viewer.