unshifts the polynomial p, note: the ordering can be destroyed if the shifts for the monomials are not equal
| 351 | |
| 352 | // unshifts the polynomial p, note: the ordering can be destroyed if the shifts for the monomials are not equal |
| 353 | void p_LPunshift(poly p, const ring ri) |
| 354 | { |
| 355 | while (p!=NULL) |
| 356 | { |
| 357 | p_mLPunshift(p, ri); |
| 358 | pIter(p); |
| 359 | } |
| 360 | } |
| 361 | |
| 362 | void p_mLPshift(poly m, int sh, const ring ri) |
| 363 | { |
no test coverage detected