|  |  D.5.11.1 Minimus Procedure from libraryJMBTest.lib(see  JMBTest_lib).
 
Example:Usage:
Minimus(L); G list, c int
Return:
list: V
Notes:
it returns the minimal variable generating the ideal L.The input must be an ideal generated by variables.
 
 |  | LIB "JMBTest.lib";
ring r=0, (x,y,z), rp;
ideal I=y,x,z;
Minimus(I);
==> x
 | 
 
 |