|
D.2.11.25 changeordTo
Procedure from library ring.lib (see ring_lib).
- Usage:
- changeordTo(ring, string s);
- Return:
- a ring with the oderinging changed to the (simple) ordering s
Example:
| 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
|
|