3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-10-13 11:10:19 +00:00

set relevancy = 0 in auto-config mode when there are bit-vectors and no quantifiers, #7484

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2024-12-20 18:10:46 +01:00
parent 114cae50a5
commit db9f45dfec
5 changed files with 23 additions and 9 deletions

View file

@ -533,7 +533,7 @@ namespace smt {
lbool context::preferred_sat(expr_ref_vector const& asms, vector<expr_ref_vector>& cores) {
pop_to_base_lvl();
cores.reset();
setup_context(false);
setup_context(false, !asms.empty());
internalize_assertions();
if (m_asserted_formulas.inconsistent() || inconsistent()) {
return l_false;