3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-24 09:35:32 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2020-03-13 10:49:39 -07:00
parent a6fcdecfd7
commit 825fbf1832
5 changed files with 31 additions and 8 deletions

View file

@ -196,9 +196,10 @@ lbool tactic2solver::check_sat_core2(unsigned num_assumptions, expr * const * as
}
TRACE("tactic",
if (m_mc) m_mc->display(tout << "mc:\n");
if (g->mc()) g->mc()->display(tout << "\ng\n:");
if (g->mc()) g->mc()->display(tout << "\ng:\n");
if (md) tout << "\nmodel:\n" << *md.get() << "\n";
);
//m_mc = concat(m_mc.get(), g->mc());
m_mc = concat(g->mc(), m_mc.get());
}