3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-27 19:05:51 +00:00

Fix the Python FPRef.__lt__ implementation

This commit is contained in:
John Grosen 2015-05-25 00:31:04 -07:00
parent 9912b2cd67
commit 64b46f2310

View file

@ -7808,7 +7808,7 @@ class FPRef(ExprRef):
return fpLEQ(self, other)
def __lt__(self, other):
return fpLEQ(self, other)
return fpLT(self, other)
def __ge__(self, other):
return fpGEQ(self, other)