Jump to content

Lawler's algorithm

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Marcocapelle (talk | contribs) at 23:46, 15 February 2018 (removed Category:Production and manufacturing; added Category:Production planning using HotCat). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

Lawler’s algorithm is a powerful technique for solving a variety of constrained scheduling problems.[1] The algorithm handles any precedence constraints. It schedules a set of simultaneously arriving tasks on one processor with precedence constraints to minimize maximum tardiness or lateness. Precedence constraints occur when certain jobs must be completed before other jobs can be started.

Objective Functions

The objective function is assumed to be in the form , where is any nondecreasing function and is the flow time.[2] When , the objective function corresponds to minimizing the maximum lateness, where is due time for job and lateness of job . Another expression is , which corresponds to minimizing the maximum tardiness.

Algorithm

The algorithm works by planning the job with the least impact as late as possible. Starting at .

 set of already scheduled jobs (at start: S = )
 set of jobs which successors have been scheduled (at start: all jobs without successors)
 time when the next job will be completed (at start: )
while:
    select  such that 
    schedule  such that it completes at time 
    add  to , delete  from  and update .
    
end while

References

  1. ^ Steven Nahmias. Production and Operations Analysis. 2008. ISBN 978-0-07-126370-2
  2. ^ Joseph Y-T. Leung. Handbook of scheduling: algorithms, models, and performance analysis. 2004. ISBN 978-1-58488-397-5

Additional readings