Skip to content
Snippets Groups Projects
Commit 3f3fac41 authored by Sergey Bozhko's avatar Sergey Bozhko :eyes: Committed by Björn Brandenburg
Browse files

add notion `receives_service_at`

parent eff367aa
No related branches found
No related tags found
No related merge requests found
......@@ -17,6 +17,10 @@ Section Service.
(** ... and the instantaneous service received by job j at time t. *)
Definition service_at (j : Job) (t : instant) := service_in j (sched t).
(** We say that a job [j] receives service at time [t] if
[service_at j t] is positive. *)
Definition receives_service_at (j : Job) (t : instant) := 0 < service_at j t.
(** Based on the notion of instantaneous service, we define the cumulative
service received by job j during any interval from [t1] until (but not
......
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