mirror of
https://github.com/Z3Prover/z3
synced 2025-04-14 04:48:45 +00:00
parent
ad6062cd9e
commit
bfca26b972
src
|
@ -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) {
|
||||
|
|
|
@ -41,6 +41,7 @@ class macro_finder_tactic : public tactic {
|
|||
goal_ref_buffer & result) {
|
||||
SASSERT(g->is_well_sorted());
|
||||
tactic_report report("macro-finder", *g);
|
||||
TRACE("macro-finder", g->display(tout););
|
||||
|
||||
bool produce_proofs = g->proofs_enabled();
|
||||
bool unsat_core_enabled = g->unsat_core_enabled();
|
||||
|
|
Loading…
Reference in a new issue