|  |  5.3.1 degBound 
See
 deg;
 int;
 option;
 std.Type:int
Purpose:The standard basis computation is stopped if the total
(weighted) degree
exceeds degBound.
 degBoundshould not be used for a global ordering with inhomogeneous
input, if the ordering is notdporDp.
(Remark: elimination requires always an eliminiation ordering).Reset this bound by setting
 degBoundto 0.The exact meaning of "degree" depends on the ring ordering and the command:
 slimgbuses always the total degree with weights 1,stddoes so for block orderings, only.Example:|  | degBound = 7;
option();
==> //options for 'std'-command: degBound
ideal j=std(i);
degBound;
==> 7
degBound = 0; //resets degree bound to infinity
 | 
 |