|  |  D.2.11.25 changeordTo Procedure from libraryring.lib(see  ring_lib).
 
Example:Usage:
changeordTo(ring, string s);
Return:
a ring with the oderinging changed to the (simple) ordering s
 |  | LIB "ring.lib";
ring r=0,(x,y),lp;
def rr=changeordTo(r,"dp");
rr;
==> // coefficients: QQ
==> // number of vars : 2
==> //        block   1 : ordering C
==> //        block   2 : ordering dp
==> //                  : names    x y
 | 
 
 |