X-Git-Url: https://scm.cri.ensmp.fr/git/linpy.git/blobdiff_plain/4e408d8113221ec6ecbaabdeb24ba0710c5a417c..f03bfa8b26b45b0ba2b47c6eadafa7787200a9c9:/linpy/polyhedra.py diff --git a/linpy/polyhedra.py b/linpy/polyhedra.py index fb2b4a7..50af053 100644 --- a/linpy/polyhedra.py +++ b/linpy/polyhedra.py @@ -144,6 +144,15 @@ class Polyhedron(Domain): def aspolyhedron(self): return self + def convex_union(self, *others): + """ + Return the convex union of two or more polyhedra. + """ + for other in others: + if not isinstance(other, Polyhedron): + raise TypeError('arguments must be Polyhedron instances') + return Polyhedron(self.union(*others)) + def __contains__(self, point): if not isinstance(point, Point): raise TypeError('point must be a Point instance') @@ -178,7 +187,7 @@ class Polyhedron(Domain): used on large polyhedra. """ if not isinstance(other, Polyhedron): - raise ValueError('argument must be a Polyhedron instance') + raise TypeError('argument must be a Polyhedron instance') inequalities1 = self._asinequalities() inequalities2 = other._asinequalities() inequalities = []