Built with Alectryon, running Coq+SerAPI v8.19.0+0.19.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]
[Loading ML file coq-elpi.elpi ... done]
[Loading ML file zify_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. *) Class TaskJitter (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. *) Section ValidTaskJitter. (** 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. *) Definition valid_jitter (tsk : Task) := forall j, job_task j = tsk -> job_jitter j <= task_jitter tsk. (** In the context of a set of tasks [ts], ... *) Variable ts : TaskSet Task. (** ... all tasks in the set must have valid jitter bounds. *) Definition valid_jitter_bounds := forall tsk, tsk \in ts -> valid_jitter tsk. End ValidTaskJitter.