Library prosa.analysis.facts.SBF

In this section, we prove some useful facts about SBF.
Consider any type of tasks ...
  Context {Task : TaskType}.

... and any type of jobs.
  Context {Job : JobType}.
  Context `{JobArrival Job}.
  Context `{JobCost Job}.

Consider any kind of unit-supply processor state model, ...
... any valid arrival sequence, ...
... and any schedule.
  Variable sched : schedule PState.

In the following section, we prove a lemma about switching a predicate inside of valid_pred_sbf.
  Section SBFChangePred.

Consider an SBF ...
    Context {SBF : SupplyBoundFunction}.

... and two predicates P1 and P2 such that, for any job j and a time interval [t1, t2), P2 j t1 t2 implies P1 j t1 t2.
    Variables P1 P2 : Job instant instant Prop.
    Hypothesis H_p2_implies_p1 :
       j t1 t2,
        arrives_in arr_seq j
        P2 j t1 t2 P1 j t1 t2.

Then if SBF is a valid SBF w.r.t. predicate P1, then SBF is a valid SBF w.r.t. predicate P2.
Consider an arbitrary predicate on jobs and time intervals.
  Variable P : Job instant instant Prop.

Consider a supply-bound function SBF that is valid w.r.t. the predicate P. That is, (1) SBF 0 = 0 and (2) for any job j, an interval [t1, t2) satisfying P j, and a subinterval [t1, t) ⊆ [t1, t2), the supply produced during the time interval [t1, t) is at least SBF (t - t1).
  Context {SBF : SupplyBoundFunction}.
  Hypothesis H_valid_SBF : valid_pred_sbf arr_seq sched P SBF.

In this section, we show a simple upper bound on the blackout during an interval of length Δ.
  Section BlackoutBound.

Consider any job j.
    Variable j : Job.
    Hypothesis H_arrives_in : arrives_in arr_seq j.

Consider an interval [t1, t2) satisfying P j.
    Variables t1 t2 : instant.
    Hypothesis H_P_interval : P j t1 t2.

Consider an arbitrary duration Δ such that t1 + Δ t2.
    Variable Δ : duration.
    Hypothesis H_subinterval : t1 + Δ t2.

We show that the total blackout time during an interval of length Δ is bounded by Δ - SBF Δ.
    Lemma blackout_during_bound :
      blackout_during sched t1 (t1 + Δ) Δ - SBF Δ.
  End BlackoutBound.

In the following section, we prove a few facts about unit SBF.
In addition, let us assume that SBF is a unit-supply SBF. That is, SBF makes steps of at most one.
    Hypothesis H_unit_SBF : unit_supply_bound_function SBF.

We prove that the complement of such an SBF (i.e., fun Δ Δ - SBF Δ) is monotone.
    Lemma complement_SBF_monotone :
       Δ1 Δ2,
        Δ1 Δ2
        Δ1 - SBF Δ1 Δ2 - SBF Δ2.

  End UnitSupplyBoundFunctionLemmas.

End SupplyBoundFunctionLemmas.