mirror of
https://github.com/Z3Prover/z3
synced 2025-04-12 12:08:18 +00:00
Merge pull request #468 from 4tXJ7f/fix_fp_neq
[Z3py] Consistent behavior of eq and ne for FP
This commit is contained in:
commit
b6e43b6d7b
|
@ -8099,10 +8099,6 @@ class FPRef(ExprRef):
|
||||||
def __gt__(self, other):
|
def __gt__(self, other):
|
||||||
return fpGT(self, other, self.ctx)
|
return fpGT(self, other, self.ctx)
|
||||||
|
|
||||||
def __ne__(self, other):
|
|
||||||
return fpNEQ(self, other, self.ctx)
|
|
||||||
|
|
||||||
|
|
||||||
def __add__(self, other):
|
def __add__(self, other):
|
||||||
"""Create the Z3 expression `self + other`.
|
"""Create the Z3 expression `self + other`.
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue