3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-26 04:56:03 +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

@ -108,7 +108,9 @@ namespace array {
if (m_delay_qhead < m_axiom_trail.size())
return sat::check_result::CR_CONTINUE;
if (!check_lambdas())
return sat::check_result::CR_GIVEUP;
// validate_check();
return sat::check_result::CR_DONE;
}