mirror of
https://github.com/Z3Prover/z3
synced 2025-06-02 20:31:21 +00:00
issue #549, replace False by BoolVal
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
33e7640645
commit
11e8f06272
1 changed files with 1 additions and 1 deletions
|
@ -797,7 +797,7 @@ class ExprRef(AstRef):
|
||||||
False
|
False
|
||||||
"""
|
"""
|
||||||
if other == None:
|
if other == None:
|
||||||
return False
|
return BoolVal(False, self.ctx)
|
||||||
a, b = _coerce_exprs(self, other)
|
a, b = _coerce_exprs(self, other)
|
||||||
return BoolRef(Z3_mk_eq(self.ctx_ref(), a.as_ast(), b.as_ast()), self.ctx)
|
return BoolRef(Z3_mk_eq(self.ctx_ref(), a.as_ast(), b.as_ast()), self.ctx)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue