3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-06 09:34:08 +00:00
This commit is contained in:
Nikolaj Bjorner 2020-04-26 13:30:13 -07:00
parent 626d0186c8
commit 16d34b9fcc

View file

@ -46,7 +46,6 @@ class sat_tactic : public tactic {
bool produce_core = g->unsat_core_enabled();
TRACE("before_sat_solver", g->display(tout););
g->elim_redundancies();
atom2bool_var map(m);
obj_map<expr, sat::literal> dep2asm;
sat::literal_vector assumptions;
@ -113,6 +112,10 @@ class sat_tactic : public tactic {
ref<sat2goal::mc> mc;
m_sat2goal(*m_solver, map, m_params, *(g.get()), mc);
g->add(mc.get());
if (produce_core) {
// sat2goal does not preseve assumptions
g->updt_prec(goal::OVER);
}
}
g->inc_depth();
result.push_back(g.get());