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

testing maxres with sat core

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2014-08-02 12:27:57 -07:00
parent b928734348
commit 8814ba0629
12 changed files with 187 additions and 298 deletions

View file

@ -46,8 +46,7 @@ namespace sat {
m_case_split_queue(m_activity),
m_qhead(0),
m_scope_lvl(0),
m_params(p),
m_minimize_core(p.get_bool("minimize_core", false)) {
m_params(p) {
m_config.updt_params(p);
}
@ -1045,7 +1044,7 @@ namespace sat {
}
if (!m_mc.check_model(m))
ok = false;
TRACE("sat", tout << "checl: " << ok << "\n" << m << "\n";);
TRACE("sat", tout << "check: " << ok << "\n" << m << "\n";);
return ok;
}
@ -1621,7 +1620,7 @@ namespace sat {
}
while (idx > 0);
reset_unmark(old_size);
if (m_minimize_core) {
if (m_config.m_minimize_core) {
m_mus(); //ignore return value on cancelation.
}
}
@ -2236,7 +2235,6 @@ namespace sat {
m_probing.updt_params(p);
m_scc.updt_params(p);
m_rand.set_seed(p.get_uint("random_seed", 0));
m_minimize_core = p.get_bool("minimize_core", false);
}
void solver::collect_param_descrs(param_descrs & d) {