mirror of
https://github.com/Z3Prover/z3
synced 2025-07-19 10:52:02 +00:00
parent
592c53e46d
commit
dd91cfb47e
1 changed files with 3 additions and 3 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue