|  |  D.15.23.18 SetDeg Procedure from librarymodules.lib(see  modules_lib).
 
Example:Usage:
SetDeg(l), l list or intvec
Return:
nothing, saves own degrees for the different variables of the basering
Note:
should be used after decleration of the ring and shouldn't be changed afterwards
 |  | LIB "modules.lib";
ring r;
Deg(x);
==> 1
list l=2,2,2;
SetDeg(l);
Deg(x);
==> 2
 | 
 
 |