mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 17:44:08 +00:00
add variables from definitions
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
92376e67f2
commit
a23a8cdfc5
|
@ -76,8 +76,10 @@ void model_reconstruction_trail::replay(unsigned qhead, expr_ref_vector& assumpt
|
||||||
// and their removed formulas are added to the resulting constraints.
|
// and their removed formulas are added to the resulting constraints.
|
||||||
|
|
||||||
if (t->is_loose() && !t->is_def() && t->is_subst()) {
|
if (t->is_loose() && !t->is_def() && t->is_subst()) {
|
||||||
for (auto const& [k, v] : t->m_subst->sub())
|
for (auto const& [k, v] : t->m_subst->sub()) {
|
||||||
|
add_vars(v, free_vars);
|
||||||
st.add(dependent_expr(m, m.mk_eq(k, v), nullptr, nullptr));
|
st.add(dependent_expr(m, m.mk_eq(k, v), nullptr, nullptr));
|
||||||
|
}
|
||||||
t->m_active = false;
|
t->m_active = false;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue