mirror of
https://github.com/Z3Prover/z3
synced 2025-08-11 05:30:51 +00:00
parent
a20d4fa362
commit
7d976e4f4d
2 changed files with 4 additions and 3 deletions
|
@ -879,11 +879,11 @@ private:
|
|||
}
|
||||
TRACE("sat", m_solver.display_model(tout););
|
||||
sat::model ll_m = m_solver.get_model();
|
||||
mdl = alloc(model, m);
|
||||
if (m_sat_mc) {
|
||||
(*m_sat_mc)(ll_m);
|
||||
}
|
||||
mdl = alloc(model, m);
|
||||
for (sat::bool_var v = 0; v < ll_m.size(); ++v) {
|
||||
}
|
||||
for (sat::bool_var v = 0; m_sat_mc && v < m_sat_mc->num_vars(); ++v) {
|
||||
expr* n = m_sat_mc->var2expr(v);
|
||||
if (!n || !is_app(n) || to_app(n)->get_num_args() > 0) {
|
||||
continue;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue