Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/sage/combinat/tiling.py
Original file line number Diff line number Diff line change
Expand Up @@ -1445,11 +1445,12 @@
....: (0, 3), (0, 4), (0, 5), (0, 6), (0, 7), (0, 8), (1, 1), (1, 2),
....: (1, 3), (1, 4), (1, 5), (1, 6), (1, 7), (1, 8), (2, 0), (2, 2),
....: (2, 3), (2, 5), (2, 6), (2, 8)])
sage: solution = H.self_surrounding(8)

Check warning on line 1448 in src/sage/combinat/tiling.py

View workflow job for this annotation

GitHub Actions / Conda (ubuntu, Python 3.12, all, editable)

Warning: slow doctest:

slow doctest:: Test ran for 11.14s cpu, 8.39s wall Check ran for 0.00s cpu, 0.00s wall
sage: G = sum([p.show2d() for p in solution], Graphics()) # needs sage.plot

::

sage: # long time
sage: solution = H.self_surrounding(8, remove_incomplete_copies=False)
sage: G = sum([p.show2d() for p in solution], Graphics()) # needs sage.plot
"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -494,7 +494,7 @@ def projective_meridians(self):
1: [x3], 2: [x4], 3: [x1], 4: [x2], 5: [x0]}
sage: A4.<t1, t2, t3, t4> = OrderedHyperplaneArrangements(QQ)
sage: H = A4(hyperplane_arrangements.braid(4))
sage: H.projective_meridians()
sage: H.projective_meridians() # long time
{0: [x2^-1*x0^-1*x4^-1*x3^-1*x1^-1], 1: [x3],
2: [x4], 3: [x0], 4: [x2], 5: [x1]}

Expand Down
1 change: 1 addition & 0 deletions src/sage/rings/polynomial/multi_polynomial_libsingular.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -4745,6 +4745,7 @@ cdef class MPolynomial_libsingular(MPolynomial_libsingular_base):

Ensure interrupt does not make the internal state inconsistent::

sage: # long time
sage: R.<x,y> = QQ[]
sage: n = 17 # chosen so that the computation takes > 1 second but not excessively long.
....: # when Singular improves the algorithm or hardware gets faster, increase n.
Expand Down
3 changes: 2 additions & 1 deletion src/sage/schemes/elliptic_curves/isogeny_class.py
Original file line number Diff line number Diff line change
Expand Up @@ -1406,8 +1406,9 @@ def possible_isogeny_degrees(E, algorithm='Billerey', max_l=None,

Over an extension field::

sage: # long time
sage: E3 = E.change_ring(CyclotomicField(3))
sage: possible_isogeny_degrees(E3) # long time (5s)
sage: possible_isogeny_degrees(E3)
[5]
sage: [phi.degree() for phi in E3.isogenies_prime_degree()]
[5, 5]
Expand Down
1 change: 1 addition & 0 deletions src/sage/tests/book_schilling_zabrocki_kschur_primer.py
Original file line number Diff line number Diff line change
Expand Up @@ -786,6 +786,7 @@

Sage example in ./kschurnotes/notes-mike-anne.tex, line 5588::

sage: # long time
sage: SymQ3 = Sym.kBoundedQuotient(3,t=1)
sage: G1 = SymQ3.AffineGrothendieckPolynomial([1],6)
sage: G2 = SymQ3.AffineGrothendieckPolynomial([2],6)
Expand Down
Loading