3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-06 17:44:08 +00:00
This commit is contained in:
Hari Govind V K 2024-07-30 14:35:33 -04:00 committed by GitHub
parent 5fcc50f606
commit 0c16d34eb0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -101,7 +101,7 @@ struct mbp_basic_tg::impl {
bool is_or = m.is_or(term);
app *c = to_app(term);
bool t = is_or ? any_of(*c, is_true) : all_of(*c, is_true);
bool f = is_or ? all_of(*c, is_false) : all_of(*c, is_false);
bool f = is_or ? all_of(*c, is_false) : any_of(*c, is_false);
if (t || f) {
mark_seen(term);
progress = true;