binpack 0.1.0

solve binpacking problems using Linear Programming
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Test case with extremely large and small numbers
bins:
  b1: 10001
  b2: 10000
items:
  i1:
    quantity: 9999
    groupSize: 3333
  i2:
    quantity: 10002
    groupSize: 1
solution:
  i1:
    b2: 9999
  i2:
    b1: 10001
    b2: 1