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]
(** * Fully Non-Preemptive Task Model *)(** In this module, we instantiate the task model in which jobs cannot be preempted once they have commenced execution. *)SectionFullyNonPreemptiveModel.(** Consider any type of tasks with WCET bounds. *)Context {Task : TaskType}.Context `{TaskCost Task}.(** In the fully non-preemptive model, no job can be preempted until its completion. The maximal non-preemptive segment of a job [j] has length [job_cost j], which is bounded by [task_cost tsk].*)Definitionfully_nonpreemptive_task_model : TaskMaxNonpreemptiveSegment Task :=
funtsk : Task => task_cost tsk.EndFullyNonPreemptiveModel.(** ** Run-to-Completion Threshold *)(** In this section, we instantiate the task-level run-to-completion threshold for the fully non-preemptive model. *)SectionTaskRTCThresholdFullyNonPreemptive.(** Consider any type of tasks. *)Context {Task : TaskType}.(** In the fully non-preemptive model, no job can be preempted prior to its completion. In other words, once a job starts running, it is guaranteed to finish. Thus, we can set the task-level run-to-completion threshold to ε. *)#[local] Instancefully_nonpreemptive_rtc_threshold : TaskRunToCompletionThreshold Task :=
constant ε.EndTaskRTCThresholdFullyNonPreemptive.