Library prosa.analysis.facts.readiness.basic

We assume the basic (i.e., Liu & Layland) readiness model under which any pending job is ready.
  #[local] Existing Instance basic_ready_instance.

Consider any kind of jobs ...
  Context {Job : JobType}.

... and any kind of processor state.
  Context {PState : ProcessorState Job}.

Suppose jobs have an arrival time and a cost.
  Context `{JobArrival Job} `{JobCost Job}.

The Liu & Layland readiness model is trivially non-clairvoyant.
Consider any job arrival sequence ...
  Variable arr_seq : arrival_sequence Job.

... and any schedule of these jobs.
  Variable sched : schedule PState.

In the basic Liu & Layland model, a schedule satisfies that only ready jobs execute as long as jobs must arrive to execute and completed jobs don't execute, which we note with the following theorem.
Consider a JLFP policy that indicates a reflexive higher-or-equal priority relation.
  Context `{JLFP_policy Job}.
  Hypothesis H_priority_is_reflexive : reflexive_priorities.

We show that the basic readiness model is a work-bearing readiness model. That is, at any time instant t, if a job j is pending, then there exists a job (namely j itself) with higher-or-equal priority that is ready at time t.
We add the above lemma into a "Hint Database" basic_rt_facts, so Coq will be able to apply it automatically.
Global Hint Resolve basic_readiness_is_work_bearing_readiness : basic_rt_facts.