Skip to content
Snippets Groups Projects
Commit 8f68244f authored by Pierre Roux's avatar Pierre Roux Committed by Björn Brandenburg
Browse files

Remove sequential readiness Global Instance

parent 4eeed561
No related branches found
No related tags found
No related merge requests found
...@@ -27,12 +27,11 @@ Section SequentialTasksReadiness. ...@@ -27,12 +27,11 @@ Section SequentialTasksReadiness.
(* A job [j] is ready at a time instant [t] iff all jobs from task (* A job [j] is ready at a time instant [t] iff all jobs from task
[job_task j] that arrived earlier than job [j] are already [job_task j] that arrived earlier than job [j] are already
completed by time [t]. *) completed by time [t]. *)
Global Program Instance sequential_ready_instance : JobReady Job PState := #[local,program] Instance sequential_ready_instance : JobReady Job PState :=
{ {
job_ready sched j t := job_ready sched j t := pending sched j t &&
pending sched j t && prior_jobs_complete arr_seq sched j t
prior_jobs_complete arr_seq sched j t }.
}.
Next Obligation. by move: H2 => /andP[]. Qed. Next Obligation. by move: H2 => /andP[]. Qed.
End SequentialTasksReadiness. End SequentialTasksReadiness.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment