mirror of
https://github.com/Z3Prover/z3
synced 2025-04-22 00:26:38 +00:00
fix #7292
This commit is contained in:
parent
25e683e4e1
commit
68b6ef0a47
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue