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.model.readiness.jitter.(** * Task Release Jitter Bound *)(** We define a task-level parameter that expresses that the release jitter experienced by any of the task's jobs is bounded by a known constant. *)ClassTaskJitter (Task : TaskType) := task_jitter : Task -> duration.(** In the following, we connect the task-level bound to the job-level release jitter in the obvious way. *)SectionValidTaskJitter.(** Consider any type of tasks with associated jitter bounds... *)Context {Task : TaskType} `{TaskJitter Task}.(** ...and the corresponding jobs. *)Context {Job : JobType} `{JobTask Job Task} `{JobJitter Job}.(** A jitter bound is valid iff it bounds the release jitter experienced by any of job of the task. *)Definitionvalid_jitter (tsk : Task) :=
forallj,
job_task j = tsk ->
job_jitter j <= task_jitter tsk.(** In the context of a set of tasks [ts], ... *)Variablets : TaskSet Task.(** ... all tasks in the set must have valid jitter bounds. *)Definitionvalid_jitter_bounds := foralltsk, tsk \in ts -> valid_jitter tsk.EndValidTaskJitter.