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

Function p_LPshift

libpolys/polys/shiftop.cc:392–401  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

390}
391
392void p_LPshift(poly p, int sh, const ring ri)
393{
394 if (sh == 0) return;
395
396 while (p!=NULL)
397 {
398 p_mLPshift(p, sh, ri);
399 pIter(p);
400 }
401}
402
403/* returns the number of maximal block */
404/* appearing among the monomials of p */

Callers 1

stestFunction · 0.85

Calls 1

p_mLPshiftFunction · 0.85

Tested by

no test coverage detected