Hello everyone!
I am testing/benchmarking codes between polybori and Singular.
In polybori (via phyton) i use the follow code to get calculation time:
Code:
a=time.time();
groebner_basis([p1,p2,p3]);
print time.time()-a;
and i get in the output: 0.000234 for example.
This result is ok.In Singular i use:
Code:
int t=0;
timer=0;
system("--ticks-per-sec","10000");
t=timer;
ideal BASE=slimgb([p1,p2,p3]);
print(timer-t);
and i get: 100, sometimes 200, sometimes 0 .......
How could I get a higher accuracy in reading?
What is the greatest precision?Thank you very much.
Best regards.