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

Commit bcc7ea6

Browse files
author
Jonathan Kliem
committed
added optional flags
1 parent c7ed9b5 commit bcc7ea6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/sage/geometry/polyhedron/backend_normaliz.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -767,11 +767,11 @@ def _cone_from_Vrepresentation_and_Hrepresentation(self, vertices, rays, lines,
767767
768768
Check that :trac:`30891` is fixed::
769769
770-
sage: p = Polyhedron(vertices=[(-3,-3), (3,0), (3,3), (0,3)], backend='normaliz')
771-
sage: q = loads(p.dumps())
772-
sage: q.volume()
770+
sage: p = Polyhedron(vertices=[(-3,-3), (3,0), (3,3), (0,3)], backend='normaliz') # optional - pynormaliz
771+
sage: q = loads(p.dumps()) # optional - pynormaliz
772+
sage: q.volume() # optional - pynormaliz
773773
18
774-
sage: q.ehrhart_series()
774+
sage: q.ehrhart_series() # optional - pynormaliz
775775
(13*t^2 + 22*t + 1)/(-t^3 + 3*t^2 - 3*t + 1)
776776
"""
777777
if eqns in (True, False, None):

0 commit comments

Comments
 (0)