Library prosa.analysis.facts.model.scheduled

Correctness of the Scheduled Job(s)

In this file, we establish the correctness of the computable definition of the (set of) scheduled job(s) and a useful case-analysis lemma.

Section ScheduledJobs.
Consider any type of jobs with arrival times.
  Context {Job : JobType}.
  Context `{JobArrival Job}.

Next, consider any kind of processor state model, ...
  Context {PState : ProcessorState Job}.

... any arrival sequence, ...
  Variable arr_seq : arrival_sequence Job.

... and any schedule.
  Variable sched : schedule PState.

Now we establish the validity conditions under which these definitions yield the expected results: all jobs must come from the arrival sequence and do not execute before their arrival.

The Set of Jobs Scheduled at a Given Time

Under these assumptions, scheduled_jobs_at is correct: a job is included in the sequence if and only if it scheduled.
  Lemma scheduled_jobs_at_iff :
     j t,
      j \in scheduled_jobs_at arr_seq sched t scheduled_at sched j t.

Conversely, if no jobs are in the sequence, then no job is scheduled.
  Lemma scheduled_jobs_at_nil :
     t,
      nilp (scheduled_jobs_at arr_seq sched t)
       ( j, ~~ scheduled_at sched j t).

The Job Scheduled on a Uniprocessor

For convenience, we note similar rewriting rules for uniprocessors.
  Section Uniprocessors.

Suppose we are looking at a uniprocessor.
    Hypothesis H_uni : uniprocessor_model PState.

Then scheduled_job_at t is correct: it yields some job j if and only if j is scheduled at time t.
    Corollary scheduled_job_at_iff :
       j t,
        scheduled_job_at arr_seq sched t = Some j scheduled_at sched j t.
Conversely, if scheduled_job_at t returns None, then no job is scheduled at time t.
    Corollary scheduled_job_at_none :
       t,
        scheduled_job_at arr_seq sched t = None
         ( j, ~~ scheduled_at sched j t).

  End Uniprocessors.

Case Analysis: a Scheduled Job Exists or no Job is Scheduled

Last but not least, We note a case analysis that results from the above considerations: at any point in time, either some job is scheduled, or it holds that all jobs are not scheduled.
  Lemma scheduled_at_dec :
     t,
      { j, scheduled_at sched j t} + { j, ~~ scheduled_at sched j t}.

End ScheduledJobs.