up previous next
interreduce    --    interreduce a list of polynomials


Syntax
interreduce(ref L: LIST of RINGELEM)

Description
This function is the same as interreduced, but modifies the argument L, and returns nothing.

Example
/**/  use QQ[x,y,z];
/**/  L := [x^3-x*y^2+y*z, x*y, z];
/**/  interreduce(ref L);  -- returns nothing, modifies L
/**/  L;
[z,  x*y,  x^3]

See Also