Changeset f6c50d in git for kernel/polys.cc
- Timestamp:
- May 23, 2011, 3:26:45 PM (12 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
- 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.