3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-06-27 16:38:45 +00:00

fix #3115 fix #3116 regressions from #3111 etc

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2020-03-02 16:38:33 -08:00
parent c4d168205a
commit 8b720a0d66
8 changed files with 34 additions and 11 deletions

View file

@ -189,10 +189,17 @@ lbool tactic2solver::check_sat_core2(unsigned num_assumptions, expr * const * as
break;
}
if (m_mc && md) {
(*m_mc)(md);
// (*m_mc)(md);
}
TRACE("tactic",
if (m_mc) m_mc->display(tout << "mc:");
if (g->mc()) g->mc()->display(tout << "g:");
if (md) tout << *md.get() << "\n";
);
m_mc = concat(g->mc(), m_mc.get());
TRACE("tactic", if (m_mc) m_mc->display(tout););
}
catch (z3_error & ex) {
TRACE("tactic2solver", tout << "exception: " << ex.msg() << "\n";);