|  |  D.15.16.2 ringOf Procedure from librarypolyclass.lib(see  polyclass_lib).
 
Example:Usage:
ringOf(F); F Poly
Return:
F.value
 |  | LIB "polyclass.lib";
ring R=0,(x,y),ds;
poly f = x+y;
Poly F = makePoly(f);
ringOf(F);
==> // coefficients: QQ considered as a field
==> // number of vars : 2
==> //        block   1 : ordering ds
==> //                  : names    x y
==> //        block   2 : ordering C
 | 
 
 |