mirror of
https://github.com/Z3Prover/z3
synced 2025-04-15 13:28:47 +00:00
Merge branch 'unstable' of https://github.com/jmgrosen/z3 into jmgrosen
This commit is contained in:
commit
9d505ec7ff
|
@ -7835,7 +7835,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…
Reference in a new issue