3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-11-05 13:56:03 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2021-01-20 09:12:09 -08:00
parent 3a572edb9c
commit c5432dbd88
3 changed files with 3 additions and 3 deletions

View file

@ -405,7 +405,7 @@ void static_features::process(expr * e, bool form_ctx, bool or_and_ctx, bool ite
return;
}
if (stack_depth > m_max_stack_depth) {
for (expr* arg : subterms(expr_ref(e, m)))
for (expr* arg : subterms(expr_ref(e, m)))
if (get_depth(arg) <= 3 || is_quantifier(arg))
process(arg, form_ctx, or_and_ctx, ite_ctx, stack_depth-10);
return;