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

Commit 03ea96d

Browse files
author
Matthias Koeppe
committed
src/sage/geometry/polyhedron/backend_polymake.py: Add # optional - sage.rings.number_field
1 parent 59246d4 commit 03ea96d

File tree

1 file changed

+10
-7
lines changed

1 file changed

+10
-7
lines changed

src/sage/geometry/polyhedron/backend_polymake.py

+10-7
Original file line numberDiff line numberDiff line change
@@ -96,9 +96,12 @@ class Polyhedron_polymake(Polyhedron_base):
9696
9797
Quadratic fields work::
9898
99-
sage: V = polytopes.dodecahedron().vertices_list()
100-
sage: Polyhedron(vertices=V, backend='polymake') # optional - polymake
101-
A 3-dimensional polyhedron in (Number Field in sqrt5 with defining polynomial x^2 - 5 with sqrt5 = 2.236067977499790?)^3 defined as the convex hull of 20 vertices
99+
sage: V = polytopes.dodecahedron().vertices_list() # optional - sage.rings.number_field
100+
sage: Polyhedron(vertices=V, backend='polymake') # optional - polymake # optional - sage.rings.number_field
101+
A 3-dimensional polyhedron
102+
in (Number Field in sqrt5 with defining polynomial x^2 - 5
103+
with sqrt5 = 2.236067977499790?)^3
104+
defined as the convex hull of 20 vertices
102105
103106
TESTS:
104107
@@ -662,11 +665,11 @@ def __setstate__(self, state):
662665
sage: P2 = Polyhedron_polymake(P1.parent(), None, None, P1._polymake_polytope) # optional - polymake
663666
sage: P._test_polymake_pickling(other=P2) # optional - polymake
664667
665-
sage: print("Possible output"); P = polytopes.dodecahedron(backend='polymake') # optional - polymake
668+
sage: print("Possible output"); P = polytopes.dodecahedron(backend='polymake') # optional - polymake # optional - sage.rings.number_field
666669
Possible output...
667-
sage: P1 = loads(dumps(P)) # optional - polymake
668-
sage: P2 = Polyhedron_polymake(P1.parent(), None, None, P1._polymake_polytope) # optional - polymake
669-
sage: P._test_polymake_pickling(other=P2) # optional - polymake
670+
sage: P1 = loads(dumps(P)) # optional - polymake # optional - sage.rings.number_field
671+
sage: P2 = Polyhedron_polymake(P1.parent(), None, None, P1._polymake_polytope) # optional - polymake # optional - sage.rings.number_field
672+
sage: P._test_polymake_pickling(other=P2) # optional - polymake # optional - sage.rings.number_field
670673
"""
671674
if "_pickle_vertices" in state[1]:
672675
vertices = state[1].pop("_pickle_vertices")

0 commit comments

Comments
 (0)