projects
/
linpy.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
24e1cba
)
Switch order of Ge() and Gt() declarations
author
Vivien Maisonneuve
<v.maisonneuve@gmail.com>
Tue, 19 Aug 2014 13:29:12 +0000
(15:29 +0200)
committer
Vivien Maisonneuve
<v.maisonneuve@gmail.com>
Tue, 19 Aug 2014 13:29:19 +0000
(15:29 +0200)
linpy/polyhedra.py
patch
|
blob
|
history
diff --git
a/linpy/polyhedra.py
b/linpy/polyhedra.py
index
31b64b1
..
fb2b4a7
100644
(file)
--- a/
linpy/polyhedra.py
+++ b/
linpy/polyhedra.py
@@
-399,15
+399,15
@@
def Ne(left, right):
return ~Eq(left, right)
@_polymorphic
return ~Eq(left, right)
@_polymorphic
-def G
t
(left, right):
+def G
e
(left, right):
"""
"""
- Create the polyhedron with constraints expr1 >
expr2 >
expr3 ...
+ Create the polyhedron with constraints expr1 >
= expr2 >=
expr3 ...
"""
"""
- return Polyhedron([], [left - right
- 1
])
+ return Polyhedron([], [left - right])
@_polymorphic
@_polymorphic
-def G
e
(left, right):
+def G
t
(left, right):
"""
"""
- Create the polyhedron with constraints expr1 >
= expr2 >=
expr3 ...
+ Create the polyhedron with constraints expr1 >
expr2 >
expr3 ...
"""
"""
- return Polyhedron([], [left - right])
+ return Polyhedron([], [left - right
- 1
])