interreduce, interreduced |
Syntax |
interreduce(Ref V:LIST of POLY):NULL interreduce(Ref V:LIST of VECTOR):NULL interreduced(Ref L:LIST of POLY):LIST of POLY interreduced(Ref L:LIST of VECTOR):LIST of VECTOR where V is a variable containing a list. |
Description |
Example |
/**/ UnSet FullRed; -- FullRed = False /**/ Use R ::= QQ[x,y,z]; /**/ interreduced([x^3-x*y^2+y*z, x*y, z]); [x^3 - x*y^2 + y*z, x*y, z] /**/ Set FullRed; -- FullRed = True (the default value) /**/ interreduced([x^3-x*y^2+y*z, x*y, z]); [x*y, z, x^3] /**/ L := [x^3-x*y^2+y*z, x*y, z]; /**/ interreduce(Ref L); /**/ L; [x*y, z, x^3] |
See Also |