1 / 35

Logic-Based Benders Methods for Planning and Scheduling

Logic-Based Benders Methods for Planning and Scheduling. John Hooker Carnegie Mellon University August 2003. The Problem: Multiple-machine resource-constrained scheduling. Schedule jobs on several machines. Each job consumes some resource at a given rate.

onealc
Download Presentation

Logic-Based Benders Methods for Planning and Scheduling

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Logic-Based Benders Methods for Planning and Scheduling John HookerCarnegie Mellon University August 2003

  2. The Problem: Multiple-machine resource-constrained scheduling • Schedule jobs on several machines. • Each job consumes some resource at a given rate. • Resource consumption rate on each machine must not exceed capacity. • Special case: jobs do not overlap. • Apply logic-based Benders decomposition • Generalizes Benders to any subproblem (not just LP, NLP). • Solve with MILP and CP (constraint programming).

  3. Basic Idea • Decompose problem into • assignment + resource-constrained assign jobsscheduling • to machinesschedule jobs on each machine • Use logic-based Benders scheme to link these. • Solve: master problem with MILP • -- good at resource allocation • subproblem with CP • -- good at scheduling • Applications in manufacturing/supply chain planning & scheduling.

  4. Previous Work • 1989 (Jeroslow & Wang) – View Horn SAT dual as inference problem. • 1995 (JH & Yan) – Apply logic-based Benders to circuit verification. • Better than BDDs when circuit contains error. • 1995, 2000 (JH) – Formulate general logic-based Benders. • Specialized Benders cuts must be designed for each problem class. • Branch-and-check proposed. • 2001 (Jain & Grossmann) – Apply logic-based Benders to multiple-machine scheduling using CP/MILP. • Several orders of magnitude speedup wrt CPLEX, ILOG Scheduler. • But… easy problem for Benders approach (min cost).

  5. 2001 (Thorsteinsson) – Apply branch-and-check to CP/MILP. • 1-2 orders of magnitude speedup on multiple machine scheduling. • 2002 (JH, Ottosson) – Apply logic-based Benders to SAT, IP. • 2003 (JH, Yan) – Relaxation for resource-constrained scheduling (cumulative constraint). • Not useful computationally for planning and scheduling. • A simpler relaxation works better. • Today – Apply logic-based Benders to resource-constrained planning/scheduling problems. • Multiple machines, parallel processing with resource constraint on each machine • Min cost and min makespan.

  6. Single-machine resource-constrained scheduling dj = duration of job j rj = rate of resource consumption of job j L = resources available [aj,bj] = time window for job j L job 3 r1 job 1 Makespan job 4 job 2 resources job 5 d1 time Total resource consumption  L at all times.

  7. Multiple-machine resource-constrained scheduling dij = duration of job j on machine i rij = resource consumption of job j on machine i Li = resources available on machine i Machine 1 Machine 2 L1 L2 r11 job 1 job 3 job 4 job 2 r22 job 5 d11 d22 Total resource consumption  Li at all times.

  8. = 1 if job j assigned to machine i Cost of assigning job j to machine i Minimize makespan = Start time of job j Minimize tardiness = Deadline for job j Some Possible Objectives Minimize cost =

  9. = 1 if job j starts at time point t on machine i (t = 1,…,N) Job j starts at one time on one machine Jobs underway at time t consume  Liin resources Jobs observe time windows Minimize Cost: Discrete Time MILP Model

  10. = 1 if event k is start of job jon machine i (k = 1,…,2N) = 1 if event k is end of job Each job is assigned to one machine and starts once and ends once Start time of event k (disaggregated by machine) Events in chronological order Minimize Cost: Discrete Event MILP Model

  11. Finish time of job j (disaggregated by machine) Release date and deadline Definition of finish time Resource limit Calculation of resource consumption on machine i at time of each event

  12. CP: The Cumulative Constraint is equivalent to Schedules jobs at times t1, …, tn so as to observe resource constraint. Edge-finding algorithms, etc., reduce domains of tj.

  13. yj = machine assigned to job j start times of jobs assigned to machine i Observe resource limit on each machine Observe time windows Minimize Cost: CP Model

  14. enforces cumulative assigns jobs to machines defines resource requirements determines cost and durations on the assigned machine time windows invokes specialized search procedure (needed for good performance) This is how it looks in OPL Studio… [Declarations] DiscreteResource machine [iinMachines] (Limit [i ]); AlternativeResources mset(machine); Activitysched [ jinJobs]; minimize sum( j in Jobs) cost [ j ] subject to { forall( j in Jobs) { sched [ j ] requires(jobm[i,j ].resource) mset; forall(i in Machines) activityHasSelectedResource(sched [ j ],mset,machine[ j ]) <=> sched [ j ].duration = jobm[i,j ].duration & cost [ j ] = jobm[i,j ].cost; sched [ j ].start >= job[ j ].release; sched [ j ].end <= job[ j ].deadline; }; }; search { assignAlternatives; setTimes; };

  15. Inference Duality Primal Dual feasible set domain Solution is a value for x. Solution is a proof that deduces f(x)  z from x S. Duality theorem based on completeness proof for inference method.

  16. Farkas Lemma (Completeness theorem for nonnegative linear combination as an inference method) Ax  b  cx  z iff uA  c, ub  z for some u  0(provided primal or dual is feasible). Example of Inference Duality: Linear Programming Primal Dual Solution is a proof that deduces cx  z from Ax  b, encoded as a vector of multipliers u. Farkas Lemma provides basis for classical LP duality theorem. Since u has polynomial size, LP belongs to NP and co-NP.

  17. Solution of master problem Benders cuts for all iterations k Solution of subproblem’s inference dual is a proof of bound that is valid when Logic-Based Benders Decomposition Subproblem Master Problem Benders cut is based on bound obtained from the same proof schema for other values of x.

  18. Solution of subproblem’s inference dual is a proof (encoded by u) of bound Example: Classical Benders Subproblem Master Problem Benders cuts Benders cut is based on bound obtained from u, which remains dual feasible (i.e., proof remains valid) for other values of x.

  19. L1 Relaxation of subproblem: “Area” dijrij of jobs assigned to a machine fit in the space available before latest deadline. job 5 job 4 job1 Minimize Cost: Logic-Based Benders Master Problem: Assign jobs to machines

  20. Subproblem: Schedule jobs assigned to each machineSolve by constraint programming solution of master problem Let Jik = set of jobs assigned to machine i in iteration k. If subproblem i is infeasible, solution of subproblem dual is a proof that not all jobs in Jik can be assigned to machine i. This provides the basis for a (trivial) Benders cut.

  21. Master Problem with Benders Cuts Solve by MILP Benders cuts

  22. Important observation: Putting a relaxation of subproblem in the master problem is essential for success. Min cost problem is particularly easy for logic-based decomposition:

  23. makespan L1 Relaxation of subproblem: “Area” of jobs provides lower bound on makespan. job 5 job 4 job1 Minimize Makespan: Logic-Based Benders Master Problem: Assign jobs to machines

  24. Subproblem: Schedule jobs assigned to each machineSolve by constraint programming Let Jik = set of jobs assigned to machine i in iteration k. We get a Benders cut even when subproblem is feasible.

  25. L1 Relaxation:Lower bound on makespan job 5 job 4 job1 Minimum makespan for machine i in subproblem Benders cut:Lower bounds on makespan as jobs are removed from machine job 1 job 4 job 5 Duality of Linear Relaxation and Linear Benders Cuts

  26. Master Problem: Assign jobs to machines Solve by MILP Relaxation Benders cuts

  27. Experimental Design *1 problem instance each** Discrete event model solved none of the problems

  28. = computation terminated

  29. ?

More Related