Library prosa.analysis.facts.readiness_interference

In this file, we establish facts about readiness interference.
Consider any kind of jobs with arrival times and execution costs.
  Context {Job : JobType}.
  Context `{JobArrival Job}.
  Context `{JobCost Job}.

Consider any processor state model.
  Context `{PState : ProcessorState Job}.

Consider any notion of job readiness.
  Context `{!JobReady Job PState}.

Consider any valid arrival sequence of jobs ...
... and any valid schedule of the given arrival sequence.
  Variable sched : schedule PState.
  Hypothesis H_valid_schedule : valid_schedule sched arr_seq.

Allow for any JLFP priority policy.
  Context {JLFP : JLFP_policy Job}.

First, note that readiness interference is exclusive of the interference due to other higher-or-equal-priority jobs.
Next, we observe that readiness interference is exclusive of service inversion.