Skip to content

Commit

Permalink
fix #6624
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolajBjorner committed Mar 22, 2023
1 parent 03a4480 commit 50bd6ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/smt/theory_array_full.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -834,8 +834,8 @@ namespace smt {
}
for (enode* n : m_lambdas)
for (enode* p : n->get_parents())
if (!ctx.is_beta_redex(p, n)) {
TRACE("array", tout << "not a beta redex " << enode_pp(p, ctx) << "\n");
if (!is_default(p) && !ctx.is_beta_redex(p, n)) {
TRACE("array", tout << "lambda is not a beta redex " << enode_pp(p, ctx) << "\n");
return true;
}
return false;
Expand Down

0 comments on commit 50bd6ef

Please sign in to comment.