Skip to content
This repository was archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
add some long time warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan Kliem committed Aug 19, 2020
1 parent 0c1a2da commit d7e07af
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/sage/geometry/polyhedron/library.py
Original file line number Diff line number Diff line change
Expand Up @@ -881,7 +881,7 @@ def small_rhombicuboctahedron(self, exact=True, base_ring=None, backend=None):
(1, 24, 48, 26, 1)
sage: sr.volume() # optional - pynormaliz
80/3*sqrt2 + 32
sage: TestSuite(sr).run() # optional - pynormaliz
sage: TestSuite(sr).run() # optional - pynormaliz, long time
"""
if base_ring is None and exact:
from sage.rings.number_field.number_field import QuadraticField
Expand Down Expand Up @@ -1487,7 +1487,7 @@ def icosidodecahedron(self, exact=True, backend=None):
(1, 30, 60, 32, 1)
sage: id.base_ring() # optional - pynormaliz
Number Field in sqrt5 with defining polynomial x^2 - 5 with sqrt5 = 2.236067977499790?
sage: TestSuite(id).run() # optional - pynormaliz
sage: TestSuite(id).run() # optional - pynormaliz, long time
"""
from sage.rings.number_field.number_field import QuadraticField
from itertools import product
Expand Down Expand Up @@ -1560,7 +1560,7 @@ def icosidodecahedron_V2(self, exact=True, base_ring=None, backend=None):
(1, 30, 60, 32, 1)
sage: id.base_ring() # optional - pynormaliz
Number Field in sqrt5 with defining polynomial x^2 - 5 with sqrt5 = 2.236067977499790?
sage: TestSuite(id).run() # optional - pynormaliz
sage: TestSuite(id).run() # optional - pynormaliz, long time
"""
if base_ring is None and exact:
from sage.rings.number_field.number_field import QuadraticField
Expand Down Expand Up @@ -3339,7 +3339,7 @@ def cross_polytope(self, dim, backend=None):
::
sage: P = polytopes.cross_polytope(6, backend='field')
sage: TestSuite(P).run()
sage: TestSuite(P).run() # long time
Check that double description is set up correctly::
Expand Down

0 comments on commit d7e07af

Please sign in to comment.