| interreduce, interreduced |
| Syntax |
interreduce(ref L: LIST of RINGELEM) interreduced(L: LIST of RINGELEM): LIST of RINGELEM |
| Description |
| Example |
/**/ 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] |