projects
/
linpy.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Add warning in widening documentation
[linpy.git]
/
linpy
/
polyhedra.py
diff --git
a/linpy/polyhedra.py
b/linpy/polyhedra.py
index
8426d32
..
9fdf6e7
100644
(file)
--- a/
linpy/polyhedra.py
+++ b/
linpy/polyhedra.py
@@
-173,6
+173,9
@@
class Polyhedron(Domain):
def widen(self, other):
"""
Compute the standard widening of two polyhedra, à la Halbwachs.
def widen(self, other):
"""
Compute the standard widening of two polyhedra, à la Halbwachs.
+
+ In its current implementation, this method is slow and should not be
+ used on large polyhedra.
"""
if not isinstance(other, Polyhedron):
raise ValueError('argument must be a Polyhedron instance')
"""
if not isinstance(other, Polyhedron):
raise ValueError('argument must be a Polyhedron instance')