3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-14 12:58:44 +00:00

remove spurious false introduced when debugging

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2020-03-05 09:37:03 +01:00
parent c9c9efebde
commit 67e721b5bc

View file

@ -2602,7 +2602,7 @@ br_status bv_rewriter::mk_eq_core(expr * lhs, expr * rhs, expr_ref & result) {
}
br_status st;
if (m_bit2bool && false) {
if (m_bit2bool) {
st = mk_bit2bool(lhs, rhs, result);
if (st != BR_FAILED)
return st;