Project

General

Profile

Slug #1394

Updated by Anna Maria Bigatti about 2 months ago

The following computation seems to spend more time in "clean up" than elsewhere; is this reasonable?

<pre>
use P ::= QQ[x,y],Lex;

StartTime := CpuTime();
I := ideal(subst([x^6 -3*x^3*y^2 +x^4, y^6 +4*x*y^3],y,y+x));
SetVerbosityLevel(130); SetVerbosityLevel(100);
RGB := ReducedGBasis(I);
println "RGB time: ", TimeFrom(StartTime);
</pre>

Back