3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-07 18:05:21 +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:
Christoph M. Wintersteiger 2016-03-01 14:07:28 +00:00
commit b6e43b6d7b

View file

@ -8099,10 +8099,6 @@ class FPRef(ExprRef):
def __gt__(self, other):
return fpGT(self, other, self.ctx)
def __ne__(self, other):
return fpNEQ(self, other, self.ctx)
def __add__(self, other):
"""Create the Z3 expression `self + other`.