|  |  D.15.16.9 printPolynomialRightEquivalence Procedure from librarypolyclass.lib(see  polyclass_lib).
 
Example:Usage:
printPolynomialRightEquivalence(RE); RE PolynomialRightEquivalence
Return:
print the transformation RE
 |  | LIB "polyclass.lib";
ring R=0,(x,y),dp;
PolynomialRightEquivalence RE;
RE.in=basering;
RE.images = list(makePoly(x-x*y),makePoly(y));
RE.imagesInverse = list(makePoly(x+x*y),makePoly(y));
printPolynomialRightEquivalence(RE);
==> 
==> Transformation:
==> x-->-xy+x
==> y-->y
 | 
 
 |