Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 05da680

Browse files
author
Matthias Koeppe
committedSep 7, 2023
Polyhedron_ZZ.normal_form: Reject unbounded polyhedra
1 parent 19e29d7 commit 05da680

File tree

1 file changed

+21
-5
lines changed

1 file changed

+21
-5
lines changed
 

‎src/sage/geometry/polyhedron/base_ZZ.py

+21-5
Original file line numberDiff line numberDiff line change
@@ -837,9 +837,10 @@ def is_known_summand(poly):
837837

838838
def normal_form(self, algorithm="palp_native", permutation=False):
839839
r"""
840-
Return the normal form of vertices of ``self`` if ``self`` is a lattice polytope,
841-
i.e. all vertices have integer coordinates. For more more detail,
842-
see also :meth:`~sage.geometry.lattice_polytope.LatticePolytopeClass.normal_form`.
840+
Return the normal form of vertices of the lattice polytope ``self``.
841+
842+
For more more detail,
843+
see :meth:`~sage.geometry.lattice_polytope.LatticePolytopeClass.normal_form`.
843844
844845
EXAMPLES:
845846
@@ -867,12 +868,27 @@ def normal_form(self, algorithm="palp_native", permutation=False):
867868
sage: p.normal_form()
868869
Traceback (most recent call last):
869870
...
870-
ValueError: normal form is not defined for A 2-dimensional polyhedron in ZZ^3 defined as the convex hull of 4 vertices
871+
ValueError: normal form is not defined for lower-dimensional polyhedra, got
872+
A 2-dimensional polyhedron in ZZ^3 defined as the convex hull of 4 vertices
873+
874+
The normal form is also not defined for unbounded polyhedra::
875+
876+
sage: p = Polyhedron(vertices=[[1, 1]], rays=[[1, 0], [0, 1]], base_ring=ZZ)
877+
sage: p.normal_form()
878+
Traceback (most recent call last):
879+
...
880+
ValueError: normal form is not defined for unbounded polyhedra, got
881+
A 2-dimensional polyhedron in ZZ^2 defined as the convex hull of 1 vertex and 2 rays
882+
883+
See :issue`15280` for proposed extensions to these cases.
871884
"""
872885
from sage.geometry.palp_normal_form import _palp_PM_max, _palp_canonical_order
873886

874887
if self.dim() < self.ambient_dim():
875-
raise ValueError("normal form is not defined for %s" % self)
888+
raise ValueError("normal form is not defined for lower-dimensional polyhedra, got %s" % self)
889+
890+
if not self.is_compact():
891+
raise ValueError("normal form is not defined for unbounded polyhedra, got %s" % self)
876892

877893
PM = self.slack_matrix().transpose()
878894
PM_max, permutations = _palp_PM_max(PM, check=True)

0 commit comments

Comments
 (0)
Please sign in to comment.