3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-06 17:44:08 +00:00

Disable hoist entirely, it is bad on QF_LIA and does not help on other observed cases

This commit is contained in:
Nikolaj Bjorner 2023-12-02 15:40:47 -08:00
parent 585d027668
commit ba8d8f0af7

View file

@ -270,7 +270,7 @@ br_status bool_rewriter::mk_nflat_or_core(unsigned num_args, expr * const * args
return BR_DONE;
}
#if 1
#if 0
br_status st;
expr_ref r(m());
st = m_hoist.mk_or(buffer.size(), buffer.data(), r);
@ -282,7 +282,7 @@ br_status bool_rewriter::mk_nflat_or_core(unsigned num_args, expr * const * args
get_num_internal_exprs(m_counts2, m_todo2, args[i]);
unsigned count1 = count_internal_nodes(m_counts1, m_todo1);
unsigned count2 = count_internal_nodes(m_counts2, m_todo2);
if (count1 > count2 + num_args)
if (count1 > count2)
st = BR_FAILED;
}
if (st != BR_FAILED)