From d7e07afea623171d56fac51f62bc7d7dc96da312 Mon Sep 17 00:00:00 2001 From: Jonathan Kliem Date: Mon, 10 Aug 2020 17:30:18 +0200 Subject: [PATCH] add some long time warnings --- src/sage/geometry/polyhedron/library.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/sage/geometry/polyhedron/library.py b/src/sage/geometry/polyhedron/library.py index 3af66fac443..015ea8a3928 100644 --- a/src/sage/geometry/polyhedron/library.py +++ b/src/sage/geometry/polyhedron/library.py @@ -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 @@ -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 @@ -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 @@ -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::