| LIB "sagbiNormaliz.lib";
ring R = 0, (x,y,z),dp;
ideal P = x^6+y^6+z^6, x^7+y^7+z^7, x^8+y^8+z^8;
ideal Q;
int success;
// degree bound 40, no sorting, no terminal output
(Q,success) = sagbiByDegree(P,40,0,0);
lead(Q);
==> _[1]=x6
==> _[2]=x7
==> _[3]=x8
==> _[4]=x8y6
==> _[5]=x18y6
==> _[6]=x23y7
==> _[7]=x25y7
"Note: success = 1 <==> Unknown whether complete";
==> Note: success = 1 <==> Unknown whether complete
"success",success;
==> success 1
|