Skip to content

Commit

Permalink
removed debugging prints
Browse files Browse the repository at this point in the history
  • Loading branch information
benmaier committed Jul 16, 2020
1 parent 3d7d7cb commit 89166e3
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion binpacking/to_constant_bin_number.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ def to_constant_bin_number(d,N_bin,weight_pos=None,key=None,lower_bound=None,upp

if isinstance(d, list) and key:
new_dict = {i: val for i, val in enumerate(d)}
print(new_dict)
d = {i: key(val) for i, val in enumerate(d)}
isdict = True
is_tuple_list = True
Expand Down
1 change: 0 additions & 1 deletion binpacking/to_constant_volume.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ def to_constant_volume(d,V_max,weight_pos=None,key=None,lower_bound=None,upper_b

if isinstance(d, list) and key:
new_dict = {i: val for i, val in enumerate(d)}
print(new_dict)
d = {i: key(val) for i, val in enumerate(d)}
isdict = True
is_tuple_list = True
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from setuptools import setup

setup(name='binpacking',
version='1.4.2',
version='1.4.3',
description='Heuristic distribution of weighted items to bins (either a fixed number of bins or a fixed number of volume per bin). Data may be in form of list, dictionary, list of tuples or csv-file.',
url='https://www.github.com/benmaier/binpacking',
author='Benjamin F. Maier',
Expand Down

0 comments on commit 89166e3

Please sign in to comment.