projects
/
linpy.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4e408d8
)
Raise TypeError if Polyhedron.widen() is called on a non-polyhedral argument
author
Vivien Maisonneuve
<v.maisonneuve@gmail.com>
Tue, 19 Aug 2014 13:30:56 +0000
(15:30 +0200)
committer
Vivien Maisonneuve
<v.maisonneuve@gmail.com>
Tue, 19 Aug 2014 13:31:00 +0000
(15:31 +0200)
linpy/polyhedra.py
patch
|
blob
|
history
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):
- 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 = []