mirror of
https://github.com/Z3Prover/z3
synced 2025-05-07 15:55:46 +00:00
parent
a635049e23
commit
feff1f7f96
3 changed files with 5 additions and 3 deletions
|
@ -503,8 +503,8 @@ namespace qe {
|
|||
if (is_uninterp_const(a)) { // TBD generalize for uninterpreted functions.
|
||||
vars.push_back(a);
|
||||
}
|
||||
for (unsigned i = 0; i < a->get_num_args(); ++i) {
|
||||
todo.push_back(a->get_arg(i));
|
||||
for (expr* arg : *a) {
|
||||
todo.push_back(arg);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue