mirror of
https://github.com/Z3Prover/z3
synced 2025-06-27 16:38:45 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
c4d168205a
commit
8b720a0d66
8 changed files with 34 additions and 11 deletions
|
@ -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";);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue