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.util.epsilon. (** * The Scheduled Job(s) *) (** In this file, we provide a computable definition of the (set of) scheduled job(s) at a given point in time. Importantly, the below definition is independent of the type of processor state. Consequently, it can be used for case analyses in generic analyses (e.g., something is scheduled or not, without making assumptions on the specific type of processor state). *) Section ScheduledJobs. (** Consider any type of jobs, ... *) Context {Job : JobType}. (** ... _any_ kind of processor, ... *) Context {PState : ProcessorState Job}. (** ... any arrival sequence, ... *) Variable arr_seq : arrival_sequence Job. (** ... and any schedule. *) Variable sched : schedule PState. (** The set of jobs scheduled at time [t] can be obtained by filtering the set of all jobs that arrive at or before time [t]. *) Definition scheduled_jobs_at t := [seq j <- arrivals_up_to arr_seq t | scheduled_at sched j t]. (** For the special case of uniprocessors, we define a convenience wrapper that reduces the sequence of scheduled jobs to an [option Job]. *) Definition scheduled_job_at t := ohead (scheduled_jobs_at t). (** We also provide a convenience wrapper to express the absence of scheduled jobs. *) Definition is_idle t := scheduled_jobs_at t == [::]. End ScheduledJobs.