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

improve consistency by adding types

parent 2e2b01b2
No related branches found
No related tags found
1 merge request!311Add notion of supply
......@@ -20,11 +20,12 @@ Section ProcessorModels.
(** We say that a processor model offers ideal progress if a scheduled job
always receives non-zero service. *)
Definition ideal_progress_proc_model :=
forall j s, scheduled_in j s -> service_in j s > 0.
forall (j : Job) (s : PState),
scheduled_in j s -> service_in j s > 0.
(** In a uniprocessor model, the scheduled job is always unique. *)
Definition uniprocessor_model :=
forall j1 j2 s t,
forall (j1 j2 : Job) (s : schedule PState) (t : instant),
scheduled_at s j1 t ->
scheduled_at s j2 t ->
j1 = j2.
......
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