Skip to content

Commit

Permalink
bugfix on slack
Browse files Browse the repository at this point in the history
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
  • Loading branch information
NikolajBjorner committed Dec 21, 2023
1 parent 766f5f0 commit 4fe4234
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/python/bincover.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ def _add_item2bin(self, item, bin):
def _exclude_item2bin(self, item, bin):
# print("exclude", item, "from", bin)
# Check if bin has already been blocked
if bin.slack < bin.weight:
if bin.slack < bin.min_bound:
return
if bin.weight >= bin.min_bound:
return
Expand Down

0 comments on commit 4fe4234

Please sign in to comment.