Skip to content

Commit

Permalink
fix #7292
Browse files Browse the repository at this point in the history
  • Loading branch information
hgvk94 committed Jul 29, 2024
1 parent 25e683e commit 68b6ef0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/qe/mbp/mbp_basic_tg.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 68b6ef0

Please sign in to comment.