3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-15 13:28:47 +00:00
This commit is contained in:
Nikolaj Bjorner 2023-03-22 14:00:09 +01:00
parent 03a44803b6
commit 50bd6efea4

View file

@ -834,8 +834,8 @@ namespace smt {
} }
for (enode* n : m_lambdas) for (enode* n : m_lambdas)
for (enode* p : n->get_parents()) for (enode* p : n->get_parents())
if (!ctx.is_beta_redex(p, n)) { if (!is_default(p) && !ctx.is_beta_redex(p, n)) {
TRACE("array", tout << "not a beta redex " << enode_pp(p, ctx) << "\n"); TRACE("array", tout << "lambda is not a beta redex " << enode_pp(p, ctx) << "\n");
return true; return true;
} }
return false; return false;