This is an old revision of the document!
Table of Contents
4.2. Scheduling to Minimize Lateness: An Exchange Argument
The Problem
- We have a single resource and a set of n requests to use the resource
- The resource has a deadline d i and requires a contiguous interval of time t i
- Each request is flexible: It can be scheduled at any time before its deadline.
- Each accepted request is assigned an interval of length t i , and different requests are assigned nonoverlapping intervals
- Let S = the overall start time
- Each request i is assigned an interval of time of length t i = [ S(i), fi)], where f(i) = S(i)+ t(i)
- The algorithm must always determine the start time
- Lateness, l i = f(i) - d(i))
- l i = 0 if the request i is not late
- A request is late if it misses the deadline –>f(i)> d i
–> Goal of the algorithm: Minimize the maximum lateness, L = maxi l i by scheduling all requests using nonoverlapping intervals.