projects
/
linpy.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Raise TypeError if Polyhedron.widen() is called on a non-polyhedral argument
[linpy.git]
/
linpy
/
polyhedra.py
diff --git
a/linpy/polyhedra.py
b/linpy/polyhedra.py
index
fb2b4a7
..
e5e2523
100644
(file)
--- a/
linpy/polyhedra.py
+++ b/
linpy/polyhedra.py
@@
-178,7
+178,7
@@
class Polyhedron(Domain):
used on large polyhedra.
"""
if not isinstance(other, Polyhedron):
used on large polyhedra.
"""
if not isinstance(other, Polyhedron):
- raise
Valu
eError('argument must be a Polyhedron instance')
+ raise
Typ
eError('argument must be a Polyhedron instance')
inequalities1 = self._asinequalities()
inequalities2 = other._asinequalities()
inequalities = []
inequalities1 = self._asinequalities()
inequalities2 = other._asinequalities()
inequalities = []