Library prosa.model.preemption.fully_nonpreemptive
Preemption Model: Fully Non-Preemptive Jobs
In this section, we instantiate job_preemptable for the fully non-preemptive model, wherein no job can be forcefully preempted at any time.
Consider any type of jobs with execution costs.
We say that the model is fully non-preemptive iff no job
can be preempted until its completion.
#[local] Instance fully_nonpreemptive_job_model : JobPreemptable Job :=
{
job_preemptable (j : Job) (ρ : work) := (ρ == 0) || (ρ == job_cost j)
}.
End FullyNonPreemptiveModel.
{
job_preemptable (j : Job) (ρ : work) := (ρ == 0) || (ρ == job_cost j)
}.
End FullyNonPreemptiveModel.