Built with Alectryon, running Coq+SerAPI v8.20.0+0.20.0. Bubbles () indicate interactive fragments: hover for details, tap to reveal contents. Use Ctrl+↑Ctrl+↓ to navigate, Ctrl+🖱️ to focus. On Mac, use ⌘ instead of Ctrl.
[Loading ML file ssrmatching_plugin.cmxs (using legacy method) ... done]
[Loading ML file ssreflect_plugin.cmxs (using legacy method) ... done]
[Loading ML file ring_plugin.cmxs (using legacy method) ... done]
Serlib plugin: coq-elpi.elpi is not available: serlib support is missing.
Incremental checking for commands in this plugin will be impacted.
[Loading ML file coq-elpi.elpi ... done]
[Loading ML file zify_plugin.cmxs (using legacy method) ... done]
[Loading ML file micromega_core_plugin.cmxs (using legacy method) ... done]
[Loading ML file micromega_plugin.cmxs (using legacy method) ... done]
[Loading ML file btauto_plugin.cmxs (using legacy method) ... done]
Notation"_ + _" was already used in scope nat_scope.
[notation-overridden,parsing,default]
Notation"_ - _" was already used in scope nat_scope.
[notation-overridden,parsing,default]
Notation"_ <= _" was already used in scope nat_scope.
[notation-overridden,parsing,default]
Notation"_ < _" was already used in scope nat_scope.
[notation-overridden,parsing,default]
Notation"_ >= _" was already used in scope nat_scope.
[notation-overridden,parsing,default]
Notation"_ > _" was already used in scope nat_scope.
[notation-overridden,parsing,default]
Notation"_ <= _ <= _" was already used in scope
nat_scope. [notation-overridden,parsing,default]
Notation"_ < _ <= _" was already used in scope
nat_scope. [notation-overridden,parsing,default]
Notation"_ <= _ < _" was already used in scope
nat_scope. [notation-overridden,parsing,default]
Notation"_ < _ < _" was already used in scope
nat_scope. [notation-overridden,parsing,default]
Notation"_ * _" was already used in scope nat_scope.
[notation-overridden,parsing,default]
Require Export prosa.util.seqset.Require Export prosa.util.rel.(** * TDMA Scheduling *)(** The TDMA scheduling policy is based on two properties. (1) Each task has a fixed, reserved time slot for execution; (2) These time slots are ordered in sequence to form a TDMA cycle, which repeats along the timeline. An example of TDMA schedule is illustrated in the following.<< _______________________________ | s1 | s2 |s3| s1 | s2 |s3|... ---------------------------------------------> 0 t>> *)(** ** Task Parameter for TDMA Scheduling *)(** We define the TDMA policy as follows.*)SectionTDMAPolicy.VariableTask: eqType.(** With each task, we associate the duration of the corresponding TDMA slot. *)DefinitionTDMA_slot := Task -> duration.(** Moreover, within each TDMA cycle, task slots are ordered according to some relation (i.e, [slot_order slot1 slot2] means that [slot1] comes before [slot2] in a TDMA cycle). *)DefinitionTDMA_slot_order := rel Task.EndTDMAPolicy.(** We introduce slots and the slot order as task parameters. *)ClassTDMAPolicy (T : TaskType) :=
{
task_time_slot : TDMA_slot T;
slot_order : TDMA_slot_order T
}.(** ** TDMA Policy Validity *)(** First, we define the properties of a valid TDMA policy. *)SectionValidTDMAPolicy.Context {Task : eqType}.(** Consider any task set ts... *)Variablets : {set Task}.(** ...and a TDMA policy. *)Context `{TDMAPolicy Task}.(** Time slot order must be transitive... *)Definitiontransitive_slot_order := transitive slot_order.(** ..., totally ordered over the task set... *)Definitiontotal_slot_order :=
total_over_list slot_order ts.(** ... and antisymmetric over task set. *)Definitionantisymmetric_slot_order :=
antisymmetric_over_list slot_order ts.(** A valid time slot must be positive *)Definitionvalid_time_slot :=
foralltsk, tsk \in ts -> task_time_slot tsk > 0.Definitionvalid_TDMAPolicy :=
transitive_slot_order /\ total_slot_order /\ antisymmetric_slot_order /\ valid_time_slot.EndValidTDMAPolicy.(** ** TDMA Cycles, Sots, and Offsets *)(** In this section, we define key TDMA concepts. *)SectionTDMADefinitions.Context {Task : eqType}.(** Consider any task set ts... *)Variablets : {set Task}.(** ...and a TDMA policy. *)Context `{TDMAPolicy Task}.(** We define the TDMA cycle as the sum of all the tasks' time slots *)DefinitionTDMA_cycle:=
\sum_(tsk <- ts) task_time_slot tsk.(** We define the function returning the slot offset for each task: i.e., the distance between the start of the TDMA cycle and the start of the task time slot. *)Definitiontask_slot_offset (tsk : Task) :=
\sum_(prev_task <- ts | slot_order prev_task tsk && (prev_task != tsk)) task_time_slot prev_task.(** The following function tests whether a task is in its time slot at instant [t]. *)Definitiontask_in_time_slot (tsk : Task) (t:instant):=
((t + TDMA_cycle - (task_slot_offset tsk)%% TDMA_cycle) %% TDMA_cycle)
< (task_time_slot tsk).EndTDMADefinitions.(** ** TDMA Schedule Validity *)SectionTDMASchedule.Context {Task : TaskType} {Job : JobType}.Context {PState : ProcessorState Job}.Context {ja : JobArrival Job} {jc : JobCost Job}.Context {jr : @JobReady Job PState jc ja} `{JobTask Job Task}.(** Consider any job arrival sequence... *)Variablearr_seq : arrival_sequence Job.(** ..., any schedule ... *)Variablesched : schedule PState.(** ... and any sporadic task set. *)Variablets: {set Task}.Context `{TDMAPolicy Task}.(** In order to characterize a TDMA policy, we first define whether a job is executing its TDMA slot at time [t]. *)Definitionjob_in_time_slot (job:Job) (t:instant):=
task_in_time_slot ts (job_task job) t.(** We say that a TDMA policy is respected by the schedule iff 1. when a job is scheduled at time [t], then the corresponding task is also in its own time slot... *)Definitionsched_implies_in_slotjt:=
scheduled_at sched j t -> job_in_time_slot j t.(** 2. when a job is backlogged at time [t], the corresponding task isn't in its own time slot or another previous job of the same task is scheduled *)Definitionbacklogged_implies_not_in_slot_or_other_job_schedjt:=
backlogged sched j t ->
~ job_in_time_slot j t \/
existsj_other, arrives_in arr_seq j_other/\
job_arrival j_other < job_arrival j/\
job_task j = job_task j_other/\
scheduled_at sched j_other t.Definitionrespects_TDMA_policy:=
forall (j:Job) (t:instant),
arrives_in arr_seq j ->
sched_implies_in_slot j t /\
backlogged_implies_not_in_slot_or_other_job_sched j t.EndTDMASchedule.