Files
ortools-clone/examples/python/bacp.py

88 lines
2.8 KiB
Python
Raw Normal View History

2010-10-13 16:22:39 +00:00
# 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.
import argparse
from ortools.constraint_solver import pywrapcp
2010-10-13 16:22:39 +00:00
parser = argparse.ArgumentParser()
2010-10-13 16:22:39 +00:00
2016-04-12 18:04:18 +02:00
parser.add_argument('--data', default = 'examples/data/bacp/bacp12.txt',
help = 'path to data file')
2010-10-13 16:22:39 +00:00
#----------------helper for binpacking posting----------------
2014-05-22 20:13:16 +00:00
2010-10-13 16:22:39 +00:00
def BinPacking(solver, binvars, weights, loadvars):
'''post the load constraint on bins.
constraints forall j: loadvars[j] == sum_i (binvars[i] == j) * weights[i])
'''
2010-10-13 16:58:10 +00:00
pack = solver.Pack(binvars, len(loadvars))
2014-05-22 20:13:16 +00:00
pack.AddWeightedSumEqualVarDimension(weights, loadvars)
2010-10-13 16:58:10 +00:00
solver.Add(pack)
2010-10-13 16:22:39 +00:00
solver.Add(solver.SumEquality(loadvars, sum(weights)))
#------------------------------data reading-------------------
2014-05-22 20:13:16 +00:00
2010-10-13 16:22:39 +00:00
def ReadData(filename):
2014-05-22 20:13:16 +00:00
"""Read data from <filename>."""
2010-10-13 16:22:39 +00:00
f = open(filename)
2010-10-13 16:58:10 +00:00
nb_courses, nb_periods, min_credit, max_credit, nb_prereqs =\
[int(nb) for nb in f.readline().split()]
2010-10-13 16:22:39 +00:00
credits = [int(nb) for nb in f.readline().split()]
2014-05-22 20:13:16 +00:00
prereq = [int(nb) for nb in f.readline().split()]
prereq = [(prereq[i * 2], prereq[i * 2 + 1]) for i in range(nb_prereqs)]
return (credits, nb_periods, prereq)
2010-10-13 16:22:39 +00:00
def main(args):
2010-10-13 16:22:39 +00:00
#------------------solver and variable declaration-------------
credits, nb_periods, prereq = ReadData(args.data)
2010-10-13 16:22:39 +00:00
nb_courses = len(credits)
2010-10-13 16:58:10 +00:00
solver = pywrapcp.Solver('Balanced Academic Curriculum Problem')
2010-10-13 16:22:39 +00:00
2010-10-13 16:58:10 +00:00
x = [solver.IntVar(0, nb_periods - 1, 'x' + str(i))
for i in range(nb_courses)]
load_vars = [solver.IntVar(0, sum(credits), 'load_vars' + str(i))
for i in range(nb_periods)]
2010-10-13 16:22:39 +00:00
#-------------------post of the constraints--------------
2010-10-13 16:58:10 +00:00
# Bin Packing.
2010-10-13 16:22:39 +00:00
BinPacking(solver, x, credits, load_vars)
2010-10-13 16:58:10 +00:00
# Add dependencies.
2014-05-22 20:13:16 +00:00
for i, j in prereq:
solver.Add(x[i] < x[j])
2010-10-13 16:22:39 +00:00
#----------------Objective-------------------------------
2010-10-13 16:58:10 +00:00
objective_var = solver.Max(load_vars)
2010-10-13 16:22:39 +00:00
objective = solver.Minimize(objective_var, 1)
#------------start the search and optimization-----------
2010-10-13 16:58:10 +00:00
db = solver.Phase(x,
solver.CHOOSE_MIN_SIZE_LOWEST_MIN,
solver.INT_VALUE_DEFAULT)
2010-10-13 16:22:39 +00:00
search_log = solver.SearchLog(100000, objective_var)
2010-10-13 16:58:10 +00:00
solver.Solve(db, [objective, search_log])
2010-10-13 16:22:39 +00:00
if __name__ == '__main__':
main(parser.parse_args())