Skip to content

Commit

Permalink
fix(flat-bool): to_linear_constraints_system
Browse files Browse the repository at this point in the history
  • Loading branch information
caballa committed Apr 23, 2024
1 parent d2cabf9 commit 4d934fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/crab/domains/flat_boolean_domain.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -411,7 +411,7 @@ class flat_boolean_domain final
res += linear_constraint_t(v == number_t(0));
} else {
res += linear_constraint_t(v >= number_t(0));
res += linear_constraint_t(v >= number_t(1));
res += linear_constraint_t(v <= number_t(1));
}
}
return res;
Expand Down

0 comments on commit 4d934fe

Please sign in to comment.