issue3.py 2.47 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
#   Copyright 2010 Pierre Schaus pschaus@gmail.com
#
#   Licensed under the Apache License, Version 2.0 (the "License");
#   you may not use this file except in compliance with the License.
#   You may obtain a copy of the License at
#
#       http://www.apache.org/licenses/LICENSE-2.0
#
#   Unless required by applicable law or agreed to in writing, software
#   distributed under the License is distributed on an "AS IS" BASIS,
#   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
#   See the License for the specific language governing permissions and
#   limitations under the License.


from constraint_solver import pywrapcp
from time import time
from random import randint

#----------------helper for binpacking posting----------------


def binpacking(cp, binvars, weights, loadvars):
  """post the connstraints forall j: loadvars[j] == sum_i (binvars[i] == j) * weights[i])"""

  nbins = len(loadvars)
  nitems = len(binvars)
  for j in range(nbins):
    b = [cp.BoolVar(str(i)) for i in range(nitems)]
    for i in range(nitems):
      cp.Add(cp.IsEqualCstCt(binvars[i], j, b[i]))
    cp.Add(solver.Sum([b[i] * weights[i] for i in range(nitems)]) == l[j])
  cp.Add(solver.Sum(loadvars) == sum(weights))

#------------------------------data reading-------------------

maxcapa = 44
weights = [4, 22, 9, 5, 8, 3, 3, 4, 7, 7, 3]
loss = [
    0, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 0, 1, 0, 2, 1, 0, 0, 0, 0, 2, 1, 0,
    0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 1, 0, 3, 2, 1, 0, 2, 1, 0, 0, 0]
nbslab = 11

#------------------solver and variable declaration-------------

solver = pywrapcp.Solver('Steel Mill Slab')
x = [solver.IntVar(range(nbslab), 'x' + str(i)) for i in range(nbslab)]
l = [solver.IntVar(range(maxcapa), 'l' + str(i)) for i in range(nbslab)]
obj = solver.IntVar(range(nbslab * maxcapa), 'obj')

#-------------------post of the constraints--------------


binpacking(solver, x, weights[:nbslab], l)
solver.Add(solver.Sum([solver.Element(loss, l[s])
                       for s in range(nbslab)]) == obj)

sol = [2, 0, 0, 0, 0, 1, 2, 2, 1, 1, 2]

#------------start the search and optimization-----------

objective = solver.Minimize(obj, 1)
db = solver.Phase(x, solver.INT_VAR_DEFAULT,
                  solver.INT_VALUE_DEFAULT)
# solver.NewSearch(db,[objective]) #segfault if I comment this

while solver.NextSolution():
  print obj, 'check:', sum([loss[l[s].Min()] for s in range(nbslab)])
  print l
solver.EndSearch()

print '#fails:', solver.failures()
print 'time:', solver.wall_time()