Library prosa.analysis.facts.SBF
Require Export prosa.analysis.definitions.sbf.pred.
Require Export prosa.analysis.facts.behavior.supply.
Require Export prosa.model.task.concept.
Require Export prosa.analysis.facts.behavior.supply.
Require Export prosa.model.task.concept.
In this section, we prove some useful facts about SBF.
Consider any type of tasks ...
... and any type of jobs.
Consider any kind of unit-supply processor state model, ...
Context `{PState : ProcessorState Job}.
Hypothesis H_unit_supply_proc_model : unit_supply_proc_model PState.
Hypothesis H_unit_supply_proc_model : unit_supply_proc_model PState.
... any valid arrival sequence, ...
Variable arr_seq : arrival_sequence Job.
Hypothesis H_valid_arrivals : valid_arrival_sequence arr_seq.
Hypothesis H_valid_arrivals : valid_arrival_sequence arr_seq.
... and any schedule.
In the following section, we prove a lemma about switching a
predicate inside of valid_pred_sbf.
Consider an SBF ...
... 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.
Hypothesis H_p2_implies_p1 :
∀ j t1 t2,
arrives_in arr_seq j →
P2 j t1 t2 → P1 j t1 t2.
Lemma valid_pred_sbf_switch_predicate :
valid_pred_sbf arr_seq sched P1 SBF →
valid_pred_sbf arr_seq sched P2 SBF.
End SBFChangePred.
valid_pred_sbf arr_seq sched P1 SBF →
valid_pred_sbf arr_seq sched P2 SBF.
End SBFChangePred.
Consider an arbitrary predicate on jobs and time intervals.
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).
In this section, we show a simple upper bound on the blackout
during an interval of length Δ.
Consider any job j.
In the following section, we prove a few facts about unit SBF.