Changeset 6eb218 in git
- Timestamp:
- Jul 7, 2015, 3:51:13 PM (8 years ago)
- Branches:
- (u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
- Children:
- 35a23c97dc27edb90d79faea3ca4dc136e382ea2
- Parents:
- d0e703dc337d27819a1065c061abfc0f530c5204
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/GBEngine/kutil.cc
rd0e703d r6eb218 1524 1524 pDelete(&sim2); 1525 1525 pDelete(&pm1); 1526 pDelete(&gcd);1527 1526 pDelete(&m1); 1528 1527 pDelete(&m2); … … 1549 1548 } 1550 1549 p_Test(gcd, strat->tailRing); 1551 p_LmDelete(m1, strat->tailRing);1552 p_LmDelete(m2, strat->tailRing);1550 //p_LmDelete(m1, strat->tailRing); 1551 //p_LmDelete(m2, strat->tailRing); 1553 1552 #ifdef KDEBUG 1554 1553 if (TEST_OPT_DEBUG) … … 9216 9215 if(pLmDivisibleBy(strat->S[i], p)) 9217 9216 { 9218 n Delete(&(p->coef));9219 p ->coef = currRing->cf->cfIntMod(p->coef, strat->S[i]->coef, currRing->cf);9217 number c = currRing->cf->cfIntMod(p->coef, strat->S[i]->coef, currRing->cf); 9218 pSetCoeff(p,c); 9220 9219 } 9221 9220 if(nIsZero(p->coef)) … … 9234 9233 if(pLmDivisibleBy(strat->S[i], pp)) 9235 9234 { 9236 n Delete(&(pp->coef));9237 p p->coef = currRing->cf->cfIntMod(pp->coef, strat->S[i]->coef, currRing->cf);9235 number c = currRing->cf->cfIntMod(pp->coef, strat->S[i]->coef, currRing->cf); 9236 pSetCoeff(pp,c); 9238 9237 if(nIsZero(pp->coef)) 9239 9238 {
Note: See TracChangeset
for help on using the changeset viewer.