Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
map can be simplified
  • Loading branch information
NikolajBjorner committed Aug 7, 2022
1 parent f34317d commit 539d444
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/sat/smt/array_axioms.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,8 @@ namespace array {
args1.push_back(e1);
args2.push_back(e2);
for (func_decl* f : funcs) {
expr* k = m.mk_app(f, e1, e2);
expr_ref k(m.mk_app(f, e1, e2), m);
rewrite(k);
args1.push_back(k);
args2.push_back(k);
}
Expand Down

0 comments on commit 539d444

Please sign in to comment.