3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-24 01:25:31 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2020-03-04 14:27:32 -08:00
parent 29f3f6a7aa
commit 76d91f7d2b
3 changed files with 10 additions and 1 deletions

View file

@ -2602,13 +2602,14 @@ br_status bv_rewriter::mk_eq_core(expr * lhs, expr * rhs, expr_ref & result) {
}
br_status st;
if (m_bit2bool) {
if (m_bit2bool && false) {
st = mk_bit2bool(lhs, rhs, result);
if (st != BR_FAILED)
return st;
}
if (m_trailing) {
st = m_rm_trailing.eq_remove_trailing(lhs, rhs, result);
m_rm_trailing.reset_cache(1 << 12);
if (st != BR_FAILED) {