@@ -837,9 +837,10 @@ def is_known_summand(poly):
837
837
838
838
def normal_form (self , algorithm = "palp_native" , permutation = False ):
839
839
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`.
843
844
844
845
EXAMPLES:
845
846
@@ -867,12 +868,27 @@ def normal_form(self, algorithm="palp_native", permutation=False):
867
868
sage: p.normal_form()
868
869
Traceback (most recent call last):
869
870
...
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.
871
884
"""
872
885
from sage .geometry .palp_normal_form import _palp_PM_max , _palp_canonical_order
873
886
874
887
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 )
876
892
877
893
PM = self .slack_matrix ().transpose ()
878
894
PM_max , permutations = _palp_PM_max (PM , check = True )
0 commit comments