Update flexible_job_shop_sat.py

This commit is contained in:
Mizux
2021-01-15 15:51:53 +01:00
committed by GitHub
parent 4a755da303
commit 4ebb5a1184

View File

@@ -35,9 +35,9 @@ def flexible_jobshop():
# Data part.
jobs = [ # task = (processing_time, machine_id)
[ # Job 0
[(3, 0), (1, 1), (5, 2)], # alternative 0
[(2, 0), (4, 1), (6, 2)], # alternative 1
[(2, 0), (3, 1), (1, 2)], # alternative 2
[(3, 0), (1, 1), (5, 2)], # task 0 with 3 alternative
[(2, 0), (4, 1), (6, 2)], # task 1 with 3 alternative
[(2, 0), (3, 1), (1, 2)], # task 2 with 3 alternative
],
[ # Job 1
[(2, 0), (3, 1), (4, 2)],