Skip to content

Commit 3b33819

Browse files
author
Release Manager
committed
sagemathgh-40998: Miscellaneous "long time" additions Fix a few random warnings I picked out of the CI, all confirmed locally. URL: sagemath#40998 Reported by: Michael Orlitzky Reviewer(s): David Coudert
2 parents eadd203 + e9b7ad1 commit 3b33819

File tree

5 files changed

+6
-2
lines changed

5 files changed

+6
-2
lines changed

src/sage/combinat/tiling.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1450,6 +1450,7 @@ def self_surrounding(self, radius, remove_incomplete_copies=True,
14501450
14511451
::
14521452
1453+
sage: # long time
14531454
sage: solution = H.self_surrounding(8, remove_incomplete_copies=False)
14541455
sage: G = sum([p.show2d() for p in solution], Graphics()) # needs sage.plot
14551456
"""

src/sage/geometry/hyperplane_arrangement/ordered_arrangement.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -494,7 +494,7 @@ def projective_meridians(self):
494494
1: [x3], 2: [x4], 3: [x1], 4: [x2], 5: [x0]}
495495
sage: A4.<t1, t2, t3, t4> = OrderedHyperplaneArrangements(QQ)
496496
sage: H = A4(hyperplane_arrangements.braid(4))
497-
sage: H.projective_meridians()
497+
sage: H.projective_meridians() # long time
498498
{0: [x2^-1*x0^-1*x4^-1*x3^-1*x1^-1], 1: [x3],
499499
2: [x4], 3: [x0], 4: [x2], 5: [x1]}
500500

src/sage/rings/polynomial/multi_polynomial_libsingular.pyx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4747,6 +4747,7 @@ cdef class MPolynomial_libsingular(MPolynomial_libsingular_base):
47474747
47484748
Ensure interrupt does not make the internal state inconsistent::
47494749
4750+
sage: # long time
47504751
sage: R.<x,y> = QQ[]
47514752
sage: n = 17 # chosen so that the computation takes > 1 second but not excessively long.
47524753
....: # when Singular improves the algorithm or hardware gets faster, increase n.

src/sage/schemes/elliptic_curves/isogeny_class.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1406,8 +1406,9 @@ def possible_isogeny_degrees(E, algorithm='Billerey', max_l=None,
14061406
14071407
Over an extension field::
14081408
1409+
sage: # long time
14091410
sage: E3 = E.change_ring(CyclotomicField(3))
1410-
sage: possible_isogeny_degrees(E3) # long time (5s)
1411+
sage: possible_isogeny_degrees(E3)
14111412
[5]
14121413
sage: [phi.degree() for phi in E3.isogenies_prime_degree()]
14131414
[5, 5]

src/sage/tests/book_schilling_zabrocki_kschur_primer.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -786,6 +786,7 @@
786786
787787
Sage example in ./kschurnotes/notes-mike-anne.tex, line 5588::
788788
789+
sage: # long time
789790
sage: SymQ3 = Sym.kBoundedQuotient(3,t=1)
790791
sage: G1 = SymQ3.AffineGrothendieckPolynomial([1],6)
791792
sage: G2 = SymQ3.AffineGrothendieckPolynomial([2],6)

0 commit comments

Comments
 (0)