Skip to content

Commit

Permalink
fix wrong condition for delayed bit-blasting
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolajBjorner committed Sep 3, 2022
1 parent 0bdb2f1 commit 60967ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sat/smt/bv_delay_internalize.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ namespace bv {
return true;
unsigned num_vars = e->get_num_args();
for (expr* arg : *e)
if (!m.is_value(arg))
if (m.is_value(arg))
--num_vars;
if (num_vars <= 1)
return true;
Expand Down

0 comments on commit 60967ef

Please sign in to comment.