Skip to content

Commit 8baef0b

Browse files
committed
Add some long time markers
1 parent 9958d74 commit 8baef0b

File tree

10 files changed

+16
-10
lines changed

10 files changed

+16
-10
lines changed

src/doc/en/thematic_tutorials/vector_calculus/vector_calc_curvilinear.rst

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,8 @@ The Laplacian of a scalar field::
232232

233233
The Laplacian of a vector field::
234234

235-
sage: Du = laplacian(u)
235+
sage: # long time
236+
sage: Du = laplacian(u) # long time (20s)
236237
sage: Du.display()
237238
Delta(u) = ((r^2*d^2(u_r)/dr^2 + 2*r*d(u_r)/dr - 2*u_r(r, th, ph)
238239
+ d^2(u_r)/dth^2 - 2*d(u_theta)/dth)*sin(th)^2 - ((2*u_theta(r, th, ph)
@@ -247,6 +248,7 @@ The Laplacian of a vector field::
247248
Since this expression is quite lengthy, we may ask for a display component by
248249
component::
249250

251+
sage: # long time
250252
sage: Du.display_comp()
251253
Delta(u)^1 = ((r^2*d^2(u_r)/dr^2 + 2*r*d(u_r)/dr - 2*u_r(r, th, ph) + d^2(u_r)/dth^2
252254
- 2*d(u_theta)/dth)*sin(th)^2 - ((2*u_theta(r, th, ph) - d(u_r)/dth)*cos(th)
@@ -260,6 +262,7 @@ component::
260262

261263
We may expand each component::
262264

265+
sage: # long time
263266
sage: for i in E.irange():
264267
....: s = Du[i].expand()
265268
sage: Du.display_comp()

src/sage/doctest/forker.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2193,7 +2193,7 @@ def dispatch(self):
21932193
sage: DC.reporter = DR
21942194
sage: DC.dispatcher = DD
21952195
sage: DC.timer = Timer().start()
2196-
sage: DD.dispatch()
2196+
sage: DD.dispatch() # long time (20s)
21972197
sage -t .../sage/modules/free_module_homspace.py
21982198
[... tests, ...s wall]
21992199
sage -t .../sage/rings/big_oh.py

src/sage/dynamics/arithmetic_dynamics/projective_ds.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6974,7 +6974,7 @@ def Lattes_to_curve(self, return_conjugation=False, check_lattes=False):
69746974
sage: P.<x,y>=ProjectiveSpace(QQbar, 1)
69756975
sage: E=EllipticCurve([1, 2])
69766976
sage: f=P.Lattes_map(E, 2)
6977-
sage: f.Lattes_to_curve(check_lattes=true)
6977+
sage: f.Lattes_to_curve(check_lattes=true) # long time (30s)
69786978
Elliptic Curve defined by y^2 = x^3 + x + 2 over Rational Field
69796979
69806980
"""

src/sage/groups/perm_gps/permgroup_named.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3513,8 +3513,8 @@ class SmallPermutationGroup(PermutationGroup_generic):
35133513
[ 2 0 -1 -2 0 1]
35143514
[ 2 0 -1 2 0 -1]
35153515
sage: def numgps(n): return ZZ(libgap.NumberSmallGroups(n))
3516-
sage: all(SmallPermutationGroup(n,k).id() == [n,k]
3517-
....: for n in [1..64] for k in [1..numgps(n)]) # long time (180s)
3516+
sage: all(SmallPermutationGroup(n,k).id() == [n,k] # long time (180s)
3517+
....: for n in [1..64] for k in [1..numgps(n)])
35183518
True
35193519
sage: H = SmallPermutationGroup(6,1)
35203520
sage: H.is_abelian()

src/sage/interacts/test_jupyter.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ Test all interacts from the Sage interact library::
205205
Exact value of the integral \(\displaystyle\int_{0}^{2}x^{2} +
206206
1\,\mathrm{d}x=4.666666666666668\)
207207

208-
sage: test(interacts.calculus.function_tool)
208+
sage: test(interacts.calculus.function_tool) # long time (10s)
209209
...Interactive function <function function_tool at ...> with 7 widgets
210210
f: EvalText(value='sin(x)', description='f')
211211
g: EvalText(value='cos(x)', description='g')

src/sage/interfaces/maxima_abstract.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ def _commands(self, verbose=True):
304304
EXAMPLES::
305305
306306
# The output is kind of random
307-
sage: sorted(maxima._commands(verbose=False))
307+
sage: sorted(maxima._commands(verbose=False)) # long time (40s)
308308
[...
309309
'display',
310310
...

src/sage/rings/semirings/tropical_mpolynomial.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -543,12 +543,13 @@ def dual_subdivision(self):
543543
544544
A subdivision with many faces, not all of which are triangles::
545545
546+
sage: # long time
546547
sage: T = TropicalSemiring(QQ)
547548
sage: R.<x,y> = PolynomialRing(T)
548549
sage: p3 = (R(8) + R(4)*x + R(2)*y + R(1)*x^2 + x*y + R(1)*y^2
549550
....: + R(2)*x^3 + x^2*y + x*y^2 + R(4)*y^3 + R(8)*x^4
550551
....: + R(4)*x^3*y + x^2*y^2 + R(2)*x*y^3 + y^4)
551-
sage: pc = p3.dual_subdivision(); pc
552+
sage: pc = p3.dual_subdivision(); pc # long time (40s)
552553
Polyhedral complex with 10 maximal cells
553554
sage: [p.Vrepresentation() for p in pc.maximal_cells_sorted()]
554555
[(A vertex at (0, 0), A vertex at (0, 1), A vertex at (1, 0)),

src/sage/schemes/elliptic_curves/ell_generic.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2464,6 +2464,8 @@ def multiplication_by_m(self, m, x_only=False):
24642464
sage: assert(E(eval(f,P)) == 2*P)
24652465
24662466
The following test shows that :issue:`6413` is fixed for elliptic curves over finite fields::
2467+
2468+
sage: # long time
24672469
sage: p = 7
24682470
sage: K.<a> = GF(p^2)
24692471
sage: E = EllipticCurve(K, [a + 3, 5 - a])

src/sage/stats/distributions/discrete_gaussian_lattice.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -504,7 +504,7 @@ def __init__(self, B, sigma=1, c=0, r=None, precision=None, sigma_basis=False):
504504
....: add_samples(1000)
505505
sage: sum(counter.values()) # random
506506
3000
507-
sage: while abs(m*f(v)*1.0/nf/counter[v] - 1.0) >= 0.1: # needs sage.symbolic
507+
sage: while abs(m*f(v)*1.0/nf/counter[v] - 1.0) >= 0.1: # needs sage.symbolic # long time (20s)
508508
....: add_samples(1000)
509509
510510
If the covariance provided is not positive definite, an error is thrown::

src/sage/symbolic/expression.pyx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13201,7 +13201,7 @@ cdef class Expression(Expression_abc):
1320113201
answer::
1320213202
1320313203
sage: f = ln(1+4/5*sin(x))
13204-
sage: integrate(f, x, -3.1415, 3.1415) # random
13204+
sage: integrate(f, x, -3.1415, 3.1415) # random # long time (10s)
1320513205
integrate(log(4/5*sin(x) + 1), x, -3.14150000000000,
1320613206
3.14150000000000)
1320713207
sage: # needs sage.libs.giac

0 commit comments

Comments
 (0)