mirror of
https://github.com/Z3Prover/z3
synced 2025-06-13 09:26:15 +00:00
Fix the Python FPRef.__lt__ implementation
This commit is contained in:
parent
9912b2cd67
commit
64b46f2310
1 changed files with 1 additions and 1 deletions
|
@ -7808,7 +7808,7 @@ class FPRef(ExprRef):
|
||||||
return fpLEQ(self, other)
|
return fpLEQ(self, other)
|
||||||
|
|
||||||
def __lt__(self, other):
|
def __lt__(self, other):
|
||||||
return fpLEQ(self, other)
|
return fpLT(self, other)
|
||||||
|
|
||||||
def __ge__(self, other):
|
def __ge__(self, other):
|
||||||
return fpGEQ(self, other)
|
return fpGEQ(self, other)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue