Skip to content
Snippets Groups Projects
Commit 405a9cfb authored by Felipe Cerqueira's avatar Felipe Cerqueira
Browse files

Fix Definition of Carry Out

Should allow jobs that arrive before the interval
parent 91dff107
No related branches found
No related tags found
No related merge requests found
......@@ -76,7 +76,7 @@ Module Schedule.
(* Job j is carry-out in interval [t1, t2) iff it arrives after t1 and is
not complete at time t2 *)
Definition carried_out (t1 t2: time) := arrived_between j t1 t2 && ~~ completed t2.
Definition carried_out (t1 t2: time) := arrived_before j t2 && ~~ completed t2.
(* The list of scheduled jobs at time t is the concatenation of the jobs
scheduled on each processor. *)
......
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