3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-29 20:05:51 +00:00

flush smc before use in model construction

This commit is contained in:
Nikolaj Bjorner 2025-04-27 11:18:18 -07:00
parent 71b5e44058
commit a626cd0fed

View file

@ -1115,6 +1115,8 @@ private:
}
TRACE("sat", m_solver.display(tout););
if (m_sat_mc)
m_sat_mc->flush_smc(m_solver, m_map);
if (m_sat_mc) {
(*m_sat_mc)(mdl);
}
@ -1123,6 +1125,7 @@ private:
TRACE("sat", m_mcs.back()->display(tout););
(*m_mcs.back())(mdl);
}
TRACE("sat", model_smt2_pp(tout, m, *mdl, 0););
if (!gparams::get_ref().get_bool("model_validate", false)) {