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.analysis.definitions.schedule_prefix. Require Export prosa.model.preemption.parameter. Require Export prosa.model.priority.classes. Require Export prosa.model.task.sequentiality. (** * Properties of Readiness Models *) (** In this file, we define commonsense properties of readiness models. *) Section ReadinessModelProperties. (** For any type of jobs with costs and arrival times ... *) Context {Job : JobType} `{JobCost Job} `{JobArrival Job}. (** ... and any kind of processor model, ... *) Context {PState: ProcessorState Job}. (** ... consider a notion of job readiness. *) Variable ReadinessModel : JobReady Job PState. (** First, we define a notion of non-clairvoyance for readiness models. Intuitively, whether a job is ready or not should depend only on the past (i.e., prior allocation decisions and job behavior), not on future events. Formally, we say that the [ReadinessModel] is non-clairvoyant if a job's readiness at a given time does not vary across schedules with identical prefixes. That is, given two schedules [sched] and [sched'], the predicates [job_ready sched j t] and [job_ready sched' j t] may not differ if [sched] and [sched'] are identical prior to time [t]. *) Definition nonclairvoyant_readiness := forall sched sched' j h, identical_prefix sched sched' h -> forall t, t <= h -> job_ready sched j t = job_ready sched' j t. (** Next, we relate the readiness model to the preemption model. *) Context `{JobPreemptable Job}. (** In a preemption-policy-compliant schedule, nonpreemptive jobs must remain scheduled. Further, in a valid schedule, scheduled jobs must be ready. Consequently, in a valid preemption-policy-compliant schedule, a nonpreemptive job must remain ready until at least the end of its nonpreemptive section. *) Definition valid_nonpreemptive_readiness sched := forall j t, ~~ job_preemptable j (service sched j t) -> job_ready sched j t. (** For the next definition, consider the tasks from which the jobs stem. *) Context {Task : TaskType}. Context `{JobTask Job Task}. (** We say a readiness model is sequential iff only a task's earliest incomplete job is ready, meaning that later jobs can be executed only after all earlier jobs have been completed. *) Definition sequential_readiness (arr_seq : arrival_sequence Job) := forall sched j t, job_ready sched j t -> prior_jobs_complete arr_seq sched j t. End ReadinessModelProperties.