Skip to content

Commit 0c16d34

Browse files
authored
fix #7292 (#7316)
1 parent 5fcc50f commit 0c16d34

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/qe/mbp/mbp_basic_tg.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ struct mbp_basic_tg::impl {
101101
bool is_or = m.is_or(term);
102102
app *c = to_app(term);
103103
bool t = is_or ? any_of(*c, is_true) : all_of(*c, is_true);
104-
bool f = is_or ? all_of(*c, is_false) : all_of(*c, is_false);
104+
bool f = is_or ? all_of(*c, is_false) : any_of(*c, is_false);
105105
if (t || f) {
106106
mark_seen(term);
107107
progress = true;

0 commit comments

Comments
 (0)