Library prosa.model.schedule.work_conserving
Definition of Work Conservation
Consider any type of jobs...
... with arrival times and costs ...
... and any kind of processor model.
Further, allow for any notion of job readiness.
Given an arrival sequence and a schedule ...
... we say that a scheduler is work-conserving iff whenever a job j
is backlogged, the processor is always busy executing another job
j_other. Note that this definition is intentionally silent on matters of
priority.
Definition work_conserving :=
∀ j t,
arrives_in arr_seq j →
backlogged sched j t →
∃ j_other, scheduled_at sched j_other t.
End WorkConserving.
∀ j t,
arrives_in arr_seq j →
backlogged sched j t →
∃ j_other, scheduled_at sched j_other t.
End WorkConserving.