mirror of
https://github.com/Z3Prover/z3
synced 2025-05-08 00:05:46 +00:00
fix #5541
This commit is contained in:
parent
426306376f
commit
6f31d83633
11 changed files with 62 additions and 34 deletions
|
@ -379,7 +379,7 @@ bool has_uninterpreted(ast_manager& m, expr* _e) {
|
|||
expr_ref e(_e, m);
|
||||
arith_util au(m);
|
||||
func_decl_ref f_out(m);
|
||||
for (expr* arg : subterms(e)) {
|
||||
for (expr* arg : subterms::all(e)) {
|
||||
if (!is_app(arg))
|
||||
continue;
|
||||
app* a = to_app(arg);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue