mirror of
https://github.com/Z3Prover/z3
synced 2025-04-22 16:45:31 +00:00
less is even more correct, fix #3244
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
0f5cc2ec70
commit
41965acaf1
1 changed files with 1 additions and 5 deletions
|
@ -191,16 +191,12 @@ lbool tactic2solver::check_sat_core2(unsigned num_assumptions, expr * const * as
|
|||
break;
|
||||
}
|
||||
CTRACE("tactic", md.get(), tout << *md.get() << "\n";);
|
||||
if (m_mc && md) {
|
||||
(*m_mc)(md);
|
||||
}
|
||||
TRACE("tactic",
|
||||
if (m_mc) m_mc->display(tout << "mc:\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());
|
||||
m_mc = g->mc();
|
||||
|
||||
}
|
||||
catch (z3_error & ex) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue