From: Vivien Maisonneuve Date: Tue, 19 Aug 2014 13:29:12 +0000 (+0200) Subject: Switch order of Ge() and Gt() declarations X-Git-Tag: 1.0~40 X-Git-Url: https://scm.cri.ensmp.fr/git/linpy.git/commitdiff_plain/4e408d8113221ec6ecbaabdeb24ba0710c5a417c Switch order of Ge() and Gt() declarations --- diff --git a/linpy/polyhedra.py b/linpy/polyhedra.py index 31b64b1..fb2b4a7 100644 --- a/linpy/polyhedra.py +++ b/linpy/polyhedra.py @@ -399,15 +399,15 @@ def Ne(left, right): return ~Eq(left, right) @_polymorphic -def Gt(left, right): +def Ge(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 -def Ge(left, right): +def Gt(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])