-
-
Notifications
You must be signed in to change notification settings - Fork 705
Closed
Description
I always found this annoying:
sage: t = cputime()
sage: P = PolynomialRing(QQ,8,'x')
sage: I = sage.rings.ideal.Katsura(P)
sage: I.groebner_basis()
sage: print cputime(t)
0.217967
so here's my proposal for a fix:
sage: t = cputime_gobal()
sage: P = PolynomialRing(QQ,8,'x')
sage: I = sage.rings.ideal.Katsura(P)
sage: I.groebner_basis()
sage: print cputime_global(t)
5.647973
I am not sure if the design is particularly nice though.
Component: misc
Keywords: global cputime subprocesses
Author: Martin Albrecht
Reviewer: Simon King, Nick Alexander
Merged: sage-4.1.alpha0
Issue created by migration from https://trac.sagemath.org/ticket/4761