3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-24 17:45:32 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2020-03-02 04:46:12 -08:00
parent ad6062cd9e
commit bfca26b972
2 changed files with 5 additions and 4 deletions

View file

@ -173,9 +173,6 @@ lbool tactic2solver::check_sat_core2(unsigned num_assumptions, expr * const * as
try {
switch (::check_sat(*m_tactic, g, md, labels, pr, core, reason_unknown)) {
case l_true:
if (m_mc) {
(*m_mc)(md);
}
m_result->set_status(l_true);
break;
case l_false:
@ -191,7 +188,10 @@ lbool tactic2solver::check_sat_core2(unsigned num_assumptions, expr * const * as
}
break;
}
m_mc = g->mc();
m_mc = concat(g->mc(), m_mc.get());
if (m_mc && md) {
(*m_mc)(md);
}
TRACE("tactic", if (m_mc) m_mc->display(tout););
}
catch (z3_error & ex) {