Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
update temp variables
  • Loading branch information
NikolajBjorner committed Aug 24, 2021
1 parent 592c53e commit dd91cfb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/sat/smt/q_mam.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3344,8 +3344,8 @@ namespace q {
update_plbls(lbl2);
update_pp(m_lbl_hasher(lbl1), m_lbl_hasher(lbl2), curr_path, p, qa, mp);
}
if (!found)
var_paths.push_back(p);
if (!found)
var_paths.push_back(p);
}

enode * get_ground_arg(app * pat, quantifier * qa, unsigned & pos) {
Expand Down Expand Up @@ -3413,7 +3413,7 @@ namespace q {
unsigned num_vars = qa->get_num_decls();
if (num_vars >= m_var_paths.size())
m_var_paths.resize(num_vars+1);
for (unsigned i = 0; i < num_vars; i++)
for (unsigned i = 0; i <= num_vars; i++)
m_var_paths[i].reset();
m_tmp_region.reset();
// Given a multi-pattern (p_1, ..., p_n)
Expand Down

0 comments on commit dd91cfb

Please sign in to comment.