Changeset f6c50d in git
- Timestamp:
- May 23, 2011, 3:26:45 PM (12 years ago)
- Branches:
- (u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
- Children:
- fab2cca2c0bc1394ddf0712513e994b18368d0f1
- Parents:
- 70b4f4613db72f20d5dc20493b7b6ff6414e661b
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/polys.cc
r70b4f4 rf6c50d 104 104 poly pDivide(poly a, poly b) 105 105 { 106 assume((pGetComp(a)==pGetComp(b)) || (pGetComp(b)==0)); 106 107 int i; 107 108 poly result = pInit(); … … 169 170 if (pDivisibleBy(b,a)) 170 171 { 172 assume((pGetComp(a)==pGetComp(b)) || (pGetComp(b)==0)); 171 173 for(i=(int)pVariables; i; i--) 172 174 pSubExp(a,i, pGetExp(b,i));
Note: See TracChangeset
for help on using the changeset viewer.