Skip to content
Snippets Groups Projects
Commit 8db57cc7 authored by Sergey Bozhko's avatar Sergey Bozhko :eyes:
Browse files

improve comments about service lemmas

parent 82aae63c
No related branches found
No related tags found
1 merge request!363Prove RTA for RS-FP-EDF and RS-NP-EDF
......@@ -329,7 +329,8 @@ Section RelationToScheduled.
by apply not_scheduled_implies_no_service.
Qed.
(** Conversely, if a job receives service, then it must be scheduled. *)
(** Conversely, if the job's instantaneous received service is
positive, then it must be scheduled. *)
Lemma service_at_implies_scheduled_at :
forall t,
service_at sched j t > 0 -> scheduled_at sched j t.
......@@ -338,8 +339,8 @@ Section RelationToScheduled.
by rewrite not_scheduled_implies_no_service// negbT.
Qed.
(** Thus, if the cumulative amount of service changes, then it must be
scheduled, too. *)
(** Thus, if the cumulative amount of service changes, then it must
be scheduled, too. *)
Lemma service_delta_implies_scheduled :
forall t,
service sched j t < service sched j t.+1 -> scheduled_at sched j t.
......
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