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

Commit

Permalink
fixed failing doctest
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan Kliem committed Feb 5, 2020
1 parent 35351b4 commit f833ccc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sage/geometry/polyhedron/library.py
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ def gale_transform_to_polyhedron(vectors, base_ring=None, backend=None):
sage: from sage.geometry.polyhedron.library import gale_transform_to_polyhedron
sage: points = polytopes.octahedron().gale_transform()
sage: points
((1, 0), (0, 1), (-1, -1), (-1, -1), (0, 1), (1, 0))
((0, -1), (-1, 0), (1, 1), (1, 1), (-1, 0), (0, -1))
sage: P = gale_transform_to_polyhedron(points); P
A 3-dimensional polyhedron in ZZ^3 defined as the convex hull of 6 vertices
sage: P.vertices()
Expand Down

0 comments on commit f833ccc

Please sign in to comment.