Skip to content

Commit f7e0cc0

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

File tree

11 files changed

+12
-12
lines changed

11 files changed

+12
-12
lines changed

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

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

233233
The Laplacian of a vector field::
234234

235-
sage: Du = laplacian(u)
235+
sage: Du = laplacian(u) # long time (20s)
236236
sage: Du.display()
237237
Delta(u) = ((r^2*d^2(u_r)/dr^2 + 2*r*d(u_r)/dr - 2*u_r(r, th, ph)
238238
+ d^2(u_r)/dth^2 - 2*d(u_theta)/dth)*sin(th)^2 - ((2*u_theta(r, th, ph)

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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -548,7 +548,7 @@ def dual_subdivision(self):
548548
sage: p3 = (R(8) + R(4)*x + R(2)*y + R(1)*x^2 + x*y + R(1)*y^2
549549
....: + R(2)*x^3 + x^2*y + x*y^2 + R(4)*y^3 + R(8)*x^4
550550
....: + R(4)*x^3*y + x^2*y^2 + R(2)*x*y^3 + y^4)
551-
sage: pc = p3.dual_subdivision(); pc
551+
sage: pc = p3.dual_subdivision(); pc # long time (40s)
552552
Polyhedral complex with 10 maximal cells
553553
sage: [p.Vrepresentation() for p in pc.maximal_cells_sorted()]
554554
[(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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2468,7 +2468,7 @@ def multiplication_by_m(self, m, x_only=False):
24682468
sage: K.<a> = GF(p^2)
24692469
sage: E = EllipticCurve(K, [a + 3, 5 - a])
24702470
sage: k = p^2 * 3
2471-
sage: f, g = E.multiplication_by_m(k)
2471+
sage: f, g = E.multiplication_by_m(k) # long time (10s)
24722472
sage: for _ in range(100):
24732473
....: P = E.random_point()
24742474
....: if P * k == 0:

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)