gbTrace -- provide tracing output during various computations in the engine.
gbTrace n -- set the tracing level for the engine to
level n. Meaningful values for the user n are
0, 1, 2, and 3.
The notations used in tracing are :
The value returned is the old tracing level.
Code:
-- ../../../Macaulay2/m2/gb.m2:10-14
gbTrace = (n) -> (
if class n === ZZ then (
sendgg(ggINT, gg n, ggtracing);
eePopInt())
else error "expected an integer" )