MCPcopy Create free account
hub / github.com/Singular/Singular / p_LPunshift

Function p_LPunshift

libpolys/polys/shiftop.cc:353–360  ·  view source on GitHub ↗

unshifts the polynomial p, note: the ordering can be destroyed if the shifts for the monomials are not equal

Source from the content-addressed store, hash-verified

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

Callers 4

shift_pp_Mult_mmFunction · 0.85
shift_p_Mult_mmFunction · 0.85
shift_pp_mm_MultFunction · 0.85
shift_p_mm_MultFunction · 0.85

Calls 1

p_mLPunshiftFunction · 0.85

Tested by

no test coverage detected