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]
(** * Bound on Higher-or-Equal Priority Workload under EDF Scheduling *)(** In this file, we define an upper bound on workload incurred by a job from jobs with higher-or-equal priority that come from other tasks under EDF scheduling. *)SectionEDFWorkloadBound.(** Consider any type of tasks, each characterized by a WCET [task_cost], and an arrival curve [max_arrivals]. *)Context {Task : TaskType}.Context `{TaskCost Task}.Context `{TaskDeadline Task}.Context `{MaxArrivals Task}.(** Consider an arbitrary task set [ts] ... *)Variablets : seq Task.(** ... and a task [tsk]. *)Variabletsk : Task.(** For brevity, let's denote the relative deadline of a task as [D] ... *)LetDtsk := task_deadline tsk.(** ... and let's use the abbreviation [rbf] for the task request-bound function. *)Letrbf := task_request_bound_function.(** Finally, we define an upper bound on workload received from jobs with higher-than-or-equal priority that come from other tasks. *)Definitionbound_on_athep_workloadAΔ :=
\sum_(tsk_o <- ts | tsk_o != tsk)
rbf tsk_o (minn ((A + ε) + D tsk - D tsk_o) Δ).EndEDFWorkloadBound.