3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-07-24 21:26:59 +00:00
This commit is contained in:
Nikolaj Bjorner 2022-01-17 10:43:15 -08:00
parent fcc9f379e7
commit d777306bb6
2 changed files with 3 additions and 4 deletions

View file

@ -3531,7 +3531,7 @@ namespace sat {
for (unsigned i = old_num_vars; i < sz; ++i) {
bool_var v = m_active_vars[i];
if (is_visited(v) || is_active(v)) {
if (is_external(v) || is_visited(v) || is_active(v)) {
m_vars_to_reinit.push_back(v);
m_active_vars[j++] = v;
m_var_scope[v] = new_lvl;