Changeset 0b5e3d in git for kernel/polys.cc
- Timestamp:
- Mar 23, 2010, 6:21:51 PM (13 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
- Children:
- 283d86b527147bf837a6040685999a8c1f187996
- Parents:
- ed5c8d1e2dbab67d9d30ee55afe96866951bb06e
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/polys.cc
red5c8d r0b5e3d 242 242 return s_save; 243 243 } 244 p_AddExp(rc,1+j, ( Exponent_t)i, r);244 p_AddExp(rc,1+j, (long)i, r); 245 245 } 246 246 else … … 340 340 if (ii!=0) 341 341 { 342 pAddExp(q,varnum, ( Exponent_t)ii);342 pAddExp(q,varnum, (long)ii); 343 343 pSetm(q); 344 344 } … … 531 531 // Splits *p into two polys: *q which consists of all monoms with 532 532 // component == comp and *p of all other monoms *lq == pLength(*q) 533 void pTakeOutComp(poly *r_p, Exponent_tcomp, poly *r_q, int *lq)533 void pTakeOutComp(poly *r_p, long comp, poly *r_q, int *lq) 534 534 { 535 535 spolyrec pp, qq; … … 579 579 } 580 580 581 void pDecrOrdTakeOutComp(poly *r_p, Exponent_tcomp, long order,581 void pDecrOrdTakeOutComp(poly *r_p, long comp, long order, 582 582 poly *r_q, int *lq) 583 583 {
Note: See TracChangeset
for help on using the changeset viewer.