3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-22 19:17:53 +00:00
ensure unknown when a lambda is not in beta redex
This commit is contained in:
Nikolaj Bjorner 2022-09-19 03:19:47 -07:00
parent fce4d2ad90
commit f4bea58852
4 changed files with 18 additions and 1 deletions

View file

@ -252,6 +252,8 @@ namespace array {
return p->get_arg(0)->get_root() == n->get_root();
if (a.is_map(p->get_expr()))
return true;
if (a.is_store(p->get_expr()))
return true;
return false;
}