mirror of
https://github.com/Z3Prover/z3
synced 2025-05-02 21:37:02 +00:00
build fix
This commit is contained in:
parent
90490cb22f
commit
7b12a5c5a8
5 changed files with 48 additions and 13 deletions
|
@ -977,14 +977,8 @@ class solve_eqs_tactic : public tactic {
|
|||
if (m_produce_models) {
|
||||
if (!mc.get())
|
||||
mc = alloc(gmc, m(), "solve-eqs");
|
||||
for (app* v : m_ordered_vars) {
|
||||
expr * def = nullptr;
|
||||
proof * pr;
|
||||
expr_dependency * dep = nullptr;
|
||||
m_norm_subst->find(v, def, pr, dep);
|
||||
SASSERT(def);
|
||||
static_cast<gmc*>(mc.get())->add(v, def);
|
||||
}
|
||||
for (app* v : m_ordered_vars)
|
||||
static_cast<gmc*>(mc.get())->add(v, m_norm_subst->find(v));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue