Skip to content

Commit 4fe4234

Browse files
bugfix on slack
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
1 parent 766f5f0 commit 4fe4234

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/python/bincover.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ def _add_item2bin(self, item, bin):
150150
def _exclude_item2bin(self, item, bin):
151151
# print("exclude", item, "from", bin)
152152
# Check if bin has already been blocked
153-
if bin.slack < bin.weight:
153+
if bin.slack < bin.min_bound:
154154
return
155155
if bin.weight >= bin.min_bound:
156156
return

0 commit comments

Comments
 (0)