Built with Alectryon, running Coq+SerAPI v8.19.0+0.19.0. Bubbles () indicate interactive fragments: hover for details, tap to reveal contents. Use Ctrl+↑ Ctrl+↓ to navigate, Ctrl+🖱️ to focus. On Mac, use instead of Ctrl.
[Loading ML file ssrmatching_plugin.cmxs (using legacy method) ... done]
[Loading ML file ssreflect_plugin.cmxs (using legacy method) ... done]
[Loading ML file ring_plugin.cmxs (using legacy method) ... done]
[Loading ML file coq-elpi.elpi ... done]
[Loading ML file zify_plugin.cmxs (using legacy method) ... done]
[Loading ML file micromega_plugin.cmxs (using legacy method) ... done]
[Loading ML file btauto_plugin.cmxs (using legacy method) ... done]
Notation "_ + _" was already used in scope nat_scope. [notation-overridden,parsing,default]
Notation "_ - _" was already used in scope nat_scope. [notation-overridden,parsing,default]
Notation "_ <= _" was already used in scope nat_scope. [notation-overridden,parsing,default]
Notation "_ < _" was already used in scope nat_scope. [notation-overridden,parsing,default]
Notation "_ >= _" was already used in scope nat_scope. [notation-overridden,parsing,default]
Notation "_ > _" was already used in scope nat_scope. [notation-overridden,parsing,default]
Notation "_ <= _ <= _" was already used in scope nat_scope. [notation-overridden,parsing,default]
Notation "_ < _ <= _" was already used in scope nat_scope. [notation-overridden,parsing,default]
Notation "_ <= _ < _" was already used in scope nat_scope. [notation-overridden,parsing,default]
Notation "_ < _ < _" was already used in scope nat_scope. [notation-overridden,parsing,default]
Notation "_ * _" was already used in scope nat_scope. [notation-overridden,parsing,default]
Require Export prosa.analysis.facts.model.rbf. Require Export prosa.analysis.facts.model.task_schedule. Require Export prosa.analysis.facts.model.sequential. Require Export prosa.analysis.abstract.abstract_rta. (** In this section, we define a notion of _task_ interference-bound function [task_IBF]. Function [task_IBF] bounds interference that excludes interference due to self-interference. *) Section TaskInterferenceBound. (** Consider any type of job associated with any type of tasks... *) Context {Job : JobType}. Context {Task : TaskType}. Context `{JobTask Job Task}. (** ... with arrival times and costs. *) Context `{JobArrival Job}. Context `{JobCost Job}. (** Consider any kind of processor state model. *) Context {PState : ProcessorState Job}. (** Consider any arrival sequence ... *) Variable arr_seq : arrival_sequence Job. (** ... and any schedule of this arrival sequence. *) Variable sched : schedule PState. (** Let [tsk] be any task that is to be analyzed. *) Variable tsk : Task. (** Assume we are provided with abstract functions for interference and interfering workload. *) Context `{Interference Job}. Context `{InterferingWorkload Job}. (** Next we introduce the notion of _task_ interference. Intuitively, task [tsk] incurs interference when some of the jobs of task [tsk] incur interference. As a result, [tsk] cannot make any progress. More formally, consider a job [j] of task [tsk]. The task experiences interference at time [t] if job [j] experiences interference ([interference j t = true]) and task [tsk] is not scheduled at time [t]. *) (** Let us define a predicate stating that the task of a job [j] is _not_ scheduled at a time instant [t]. *) Definition nonself (j : Job) (t : instant) := ~~ task_served_at arr_seq sched (job_task j) t. (** We define task interference as conditional interference where [nonself] is used as the predicate. This way, [task_interference j t] is [false] if the interference experienced by a job [j] is caused by a job of the same task. *) Definition task_interference (j : Job) (t : instant) := cond_interference nonself j t. (** Next, we define the cumulative task interference. *) Definition cumul_task_interference j t1 t2 := cumul_cond_interference nonself j t1 t2. (** Consider an interference bound function [task_IBF]. *) Variable task_IBF : duration -> duration -> work. (** We say that task interference is bounded by [task_IBF] iff for any job [j] of task [tsk] cumulative _task_ interference within the interval <<[t1, t1 + R)>> is bounded by function [task_IBF(tsk, A, R)]. *) Definition task_interference_is_bounded_by := cond_interference_is_bounded_by arr_seq sched tsk task_IBF (relative_arrival_time_of_job_is_A sched) nonself. End TaskInterferenceBound. (** In the following section, we prove that, under certain assumptions defined next, the fact that a function [task_IBF tsk A R] satisfies hypothesis [task_interference_is_bounded_by] implies that a function [(task_rbf (A + ε) - task_cost tsk) + task_IBF tsk A R] satisfies [job_interference_is_bounded_by]. In other words, the self-interference can be bounded by the term [(task_rbf (A + ε) - task_cost tsk)], where [A] is the relative arrival time of a job under analysis. *) Section TaskIBFtoJobIBF. (** Consider any type of tasks ... *) Context {Task : TaskType}. Context `{TaskCost Task}. (** ... and any type of jobs associated with these tasks. *) Context {Job : JobType}. Context `{JobTask Job Task}. Context `{JobArrival Job}. Context {jc : JobCost Job}. (** Consider any kind of ideal uni-processor state model. *) Context `{PState : ProcessorState Job}. Hypothesis H_uniprocessor_proc_model : uniprocessor_model PState. Hypothesis H_unit_service_proc_model : unit_service_proc_model PState. (** Consider any valid arrival sequence with consistent, non-duplicate arrivals...*) Variable arr_seq : arrival_sequence Job. Hypothesis H_valid_arrival_sequence : valid_arrival_sequence arr_seq. (** ... and any ideal schedule of this arrival sequence. *) Variable sched : schedule PState. Hypothesis H_jobs_come_from_arrival_sequence : jobs_come_from_arrival_sequence sched arr_seq. (** ... where jobs do not execute before their arrival nor after completion. *) Hypothesis H_jobs_must_arrive_to_execute : jobs_must_arrive_to_execute sched. Hypothesis H_completed_jobs_dont_execute : completed_jobs_dont_execute sched. (** Assume that the job costs are no larger than the task costs. *) Hypothesis H_valid_job_cost : arrivals_have_valid_job_costs arr_seq. (** Consider an arbitrary task set. *) Variable ts : list Task. (** Let [tsk] be any task in ts that is to be analyzed. *) Variable tsk : Task. Hypothesis H_tsk_in_ts : tsk \in ts. (** Let [max_arrivals] be a family of valid arrival curves, i.e., for any task [tsk] in [ts], [max_arrival tsk] is (1) an arrival bound of [tsk], and (2) it is a monotonic function that equals [0] for the empty interval [delta = 0]. *) Context `{MaxArrivals Task}. Hypothesis H_valid_arrival_curve : valid_taskset_arrival_curve ts max_arrivals. Hypothesis H_is_arrival_curve : taskset_respects_max_arrivals arr_seq ts. (** Assume we are provided with abstract functions for interference and interfering workload. *) Context `{Interference Job}. Context `{InterferingWorkload Job}. (** We assume that the schedule is work-conserving. *) Hypothesis H_work_conserving : work_conserving arr_seq sched. (** Let's define some local names for clarity. *) Let task_rbf := task_request_bound_function tsk. Let arrivals_between := arrivals_between arr_seq. (** When assuming sequential tasks, we need to introduce an additional hypothesis to ensure that the values of interference and workload remain consistent with the priority policy. To understand why, let us consider a case where the sequential task assumption does _not_ hold, and then work backwards. Consider a fully preemptive policy that assigns the highest priority to the job that was released _last_. Then, if there is a pending job [j] of a task [tsk], it is not a part of a busy interval of the next job [j'] of the same task. In this case, both the interference and the interfering workload of job [j'] will simply ignore job [j]. Thus, it is possible to have a quiet time (for [j']) even though [j] is pending. Now, assuming that our priority policy ensures that tasks are sequential, the situation described above is impossible (job [j] will always have a higher-or-equal priority than job [j']). Hence, we need to rule our interference and interfering workload instantiations that do not conform to the sequential tasks assumption. We ensure the consistency by assuming that, when a busy interval of a job [j] of task [tsk] starts, both the cumulative task workload and the task service must be equal within the interval <<[0, t1)>>. This implies that a busy interval for job [j] cannot start if there is another pending job of the same task [tsk].*) Definition interference_and_workload_consistent_with_sequential_tasks := forall (j : Job) (t1 t2 : instant), arrives_in arr_seq j -> job_of_task tsk j -> job_cost j > 0 -> busy_interval sched j t1 t2 -> task_workload_between arr_seq tsk 0 t1 = task_service_of_jobs_in sched tsk (arrivals_between 0 t1) 0 t1. (** To prove the reduction from [task_IBF] to [job_IBF], we need to ensure that the scheduling policy, interference, and interfering workload all respect the sequential tasks hypothesis. For this, we assume that (1) tasks are sequential and (2) functions interference and interfering_workload are consistent with the hypothesis of sequential tasks. *) Hypothesis H_sequential_tasks : sequential_tasks arr_seq sched. Hypothesis H_interference_and_workload_consistent_with_sequential_tasks : interference_and_workload_consistent_with_sequential_tasks. (** Next, we assume that [task_IBF] is a bound on interference incurred by the task. *) Variable task_IBF : duration -> duration -> duration. Hypothesis H_task_interference_is_bounded : task_interference_is_bounded_by arr_seq sched tsk task_IBF. (** Before proceed to the main proof, we first show a few simple lemmas about the completion of jobs from the task considering the busy interval of the job under consideration. *) Section CompletionOfJobsFromSameTask. (** Consider any two jobs [j1] [j2] of [tsk]. *) Variable j1 j2 : Job. Hypothesis H_j1_arrives : arrives_in arr_seq j1. Hypothesis H_j2_arrives : arrives_in arr_seq j2. Hypothesis H_j1_from_tsk : job_of_task tsk j1. Hypothesis H_j2_from_tsk : job_of_task tsk j2. Hypothesis H_j1_cost_positive : job_cost_positive j1. (** Consider the busy interval <<[t1, t2)>> of job j1. *) Variable t1 t2 : instant. Hypothesis H_busy_interval : busy_interval sched j1 t1 t2. (** We prove that if a job from task [tsk] arrived before the beginning of the busy interval, then it must be completed before the beginning of the busy interval *)
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j1, j2: Job
H_j1_arrives: arrives_in arr_seq j1
H_j2_arrives: arrives_in arr_seq j2
H_j1_from_tsk: job_of_task tsk j1
H_j2_from_tsk: job_of_task tsk j2
H_j1_cost_positive: job_cost_positive j1
t1, t2: instant
H_busy_interval: busy_interval sched j1 t1 t2

job_arrival j2 < t1 -> completed_by sched j2 t1
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j1, j2: Job
H_j1_arrives: arrives_in arr_seq j1
H_j2_arrives: arrives_in arr_seq j2
H_j1_from_tsk: job_of_task tsk j1
H_j2_from_tsk: job_of_task tsk j2
H_j1_cost_positive: job_cost_positive j1
t1, t2: instant
H_busy_interval: busy_interval sched j1 t1 t2

job_arrival j2 < t1 -> completed_by sched j2 t1
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j1, j2: Job
H_j1_arrives: arrives_in arr_seq j1
H_j2_arrives: arrives_in arr_seq j2
H_j1_from_tsk: job_of_task tsk j1
H_j2_from_tsk: job_of_task tsk j2
H_j1_cost_positive: job_cost_positive j1
t1, t2: instant
H_busy_interval: busy_interval sched j1 t1 t2
JA: job_arrival j2 < t1
TSK2eq: job_task j2 = tsk

completed_by sched j2 t1
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j1, j2: Job
H_j1_arrives: arrives_in arr_seq j1
H_j2_arrives: arrives_in arr_seq j2
H_j1_from_tsk: job_of_task tsk j1
H_j2_from_tsk: job_of_task tsk j2
H_j1_cost_positive: job_cost_positive j1
t1, t2: instant
H_busy_interval: busy_interval sched j1 t1 t2
JA: job_arrival j2 < t1
TSK2eq: job_task j2 = tsk
ZERO: job_cost j2 = 0

completed_by sched j2 t1
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j1, j2: Job
H_j1_arrives: arrives_in arr_seq j1
H_j2_arrives: arrives_in arr_seq j2
H_j1_from_tsk: job_of_task tsk j1
H_j2_from_tsk: job_of_task tsk j2
H_j1_cost_positive: job_cost_positive j1
t1, t2: instant
H_busy_interval: busy_interval sched j1 t1 t2
JA: job_arrival j2 < t1
TSK2eq: job_task j2 = tsk
POS: 0 < job_cost j2
completed_by sched j2 t1
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j1, j2: Job
H_j1_arrives: arrives_in arr_seq j1
H_j2_arrives: arrives_in arr_seq j2
H_j1_from_tsk: job_of_task tsk j1
H_j2_from_tsk: job_of_task tsk j2
H_j1_cost_positive: job_cost_positive j1
t1, t2: instant
H_busy_interval: busy_interval sched j1 t1 t2
JA: job_arrival j2 < t1
TSK2eq: job_task j2 = tsk
ZERO: job_cost j2 = 0

completed_by sched j2 t1
by rewrite /completed_by /service.completed_by ZERO.
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j1, j2: Job
H_j1_arrives: arrives_in arr_seq j1
H_j2_arrives: arrives_in arr_seq j2
H_j1_from_tsk: job_of_task tsk j1
H_j2_from_tsk: job_of_task tsk j2
H_j1_cost_positive: job_cost_positive j1
t1, t2: instant
H_busy_interval: busy_interval sched j1 t1 t2
JA: job_arrival j2 < t1
TSK2eq: job_task j2 = tsk
POS: 0 < job_cost j2

completed_by sched j2 t1
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j1, j2: Job
H_j1_arrives: arrives_in arr_seq j1
H_j2_arrives: arrives_in arr_seq j2
H_j1_from_tsk: job_of_task tsk j1
H_j2_from_tsk: job_of_task tsk j2
H_j1_cost_positive: job_cost_positive j1
t1, t2: instant
H_busy_interval: busy_interval sched j1 t1 t2
JA: job_arrival j2 < t1
TSK2eq: job_task j2 = tsk
POS: 0 < job_cost j2

completed_by sched j2 t1
by eapply all_jobs_have_completed_equiv_workload_eq_service => //. } Qed. (** Next we prove that if a job is pending after the beginning of the busy interval <<[t1, t2)>> then it arrives after [t1]. *)
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j1, j2: Job
H_j1_arrives: arrives_in arr_seq j1
H_j2_arrives: arrives_in arr_seq j2
H_j1_from_tsk: job_of_task tsk j1
H_j2_from_tsk: job_of_task tsk j2
H_j1_cost_positive: job_cost_positive j1
t1, t2: instant
H_busy_interval: busy_interval sched j1 t1 t2

forall t : nat, t1 <= t -> pending sched j2 t -> arrived_between j2 t1 t.+1
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j1, j2: Job
H_j1_arrives: arrives_in arr_seq j1
H_j2_arrives: arrives_in arr_seq j2
H_j1_from_tsk: job_of_task tsk j1
H_j2_from_tsk: job_of_task tsk j2
H_j1_cost_positive: job_cost_positive j1
t1, t2: instant
H_busy_interval: busy_interval sched j1 t1 t2

forall t : nat, t1 <= t -> pending sched j2 t -> arrived_between j2 t1 t.+1
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j1, j2: Job
H_j1_arrives: arrives_in arr_seq j1
H_j2_arrives: arrives_in arr_seq j2
H_j1_from_tsk: job_of_task tsk j1
H_j2_from_tsk: job_of_task tsk j2
H_j1_cost_positive: job_cost_positive j1
t1, t2: instant
H_busy_interval: busy_interval sched j1 t1 t2
t: nat
GE: t1 <= t
PEND: pending sched j2 t

arrived_between j2 t1 t.+1
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j1, j2: Job
H_j1_arrives: arrives_in arr_seq j1
H_j2_arrives: arrives_in arr_seq j2
H_j1_from_tsk: job_of_task tsk j1
H_j2_from_tsk: job_of_task tsk j2
H_j1_cost_positive: job_cost_positive j1
t1, t2: instant
H_busy_interval: busy_interval sched j1 t1 t2
t: nat
GE: t1 <= t
PEND: pending sched j2 t

job_arrival j2 < t.+1
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j1, j2: Job
H_j1_arrives: arrives_in arr_seq j1
H_j2_arrives: arrives_in arr_seq j2
H_j1_from_tsk: job_of_task tsk j1
H_j2_from_tsk: job_of_task tsk j2
H_j1_cost_positive: job_cost_positive j1
t1, t2: instant
H_busy_interval: busy_interval sched j1 t1 t2
t: nat
GE: t1 <= t
PEND: pending sched j2 t
t1 <= job_arrival j2
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j1, j2: Job
H_j1_arrives: arrives_in arr_seq j1
H_j2_arrives: arrives_in arr_seq j2
H_j1_from_tsk: job_of_task tsk j1
H_j2_from_tsk: job_of_task tsk j2
H_j1_cost_positive: job_cost_positive j1
t1, t2: instant
H_busy_interval: busy_interval sched j1 t1 t2
t: nat
GE: t1 <= t
PEND: pending sched j2 t

job_arrival j2 < t.+1
by move: PEND => /andP [ARR _]; rewrite ltnS.
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j1, j2: Job
H_j1_arrives: arrives_in arr_seq j1
H_j2_arrives: arrives_in arr_seq j2
H_j1_from_tsk: job_of_task tsk j1
H_j2_from_tsk: job_of_task tsk j2
H_j1_cost_positive: job_cost_positive j1
t1, t2: instant
H_busy_interval: busy_interval sched j1 t1 t2
t: nat
GE: t1 <= t
PEND: pending sched j2 t

t1 <= job_arrival j2
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j1, j2: Job
H_j1_arrives: arrives_in arr_seq j1
H_j2_arrives: arrives_in arr_seq j2
H_j1_from_tsk: job_of_task tsk j1
H_j2_from_tsk: job_of_task tsk j2
H_j1_cost_positive: job_cost_positive j1
t1, t2: instant
H_busy_interval: busy_interval sched j1 t1 t2
t: nat
GE: t1 <= t
PEND: pending sched j2 t
LT: job_arrival j2 < t1

False
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j1, j2: Job
H_j1_arrives: arrives_in arr_seq j1
H_j2_arrives: arrives_in arr_seq j2
H_j1_from_tsk: job_of_task tsk j1
H_j2_from_tsk: job_of_task tsk j2
H_j1_cost_positive: job_cost_positive j1
t1, t2: instant
H_busy_interval: busy_interval sched j1 t1 t2
t: nat
GE: t1 <= t
PEND: pending sched j2 t
LT: job_arrival j2 < t1
L12: completed_by sched j2 t1

False
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j1, j2: Job
H_j1_arrives: arrives_in arr_seq j1
H_j2_arrives: arrives_in arr_seq j2
H_j1_from_tsk: job_of_task tsk j1
H_j2_from_tsk: job_of_task tsk j2
H_j1_cost_positive: job_cost_positive j1
t1, t2: instant
H_busy_interval: busy_interval sched j1 t1 t2
t: nat
GE: t1 <= t
PEND: pending sched j2 t
LT: job_arrival j2 < t1
L12: completed_by sched j2 t

False
by move: PEND => /andP [_ /negP T2]. Qed. End CompletionOfJobsFromSameTask. (** In this section we show that there exists a bound for cumulative interference for any job of task [tsk]. *) Section BoundOfCumulativeJobInterference. (** Consider any job [j] of [tsk]. *) Variable j : Job. Hypothesis H_j_arrives : arrives_in arr_seq j. Hypothesis H_job_of_tsk : job_of_task tsk j. Hypothesis H_job_cost_positive : job_cost_positive j. (** Consider the busy interval <<[t1, t2)>> of job [j]. *) Variable t1 t2 : instant. Hypothesis H_busy_interval : busy_interval sched j t1 t2. (** Let's define [A] as a relative arrival time of job [j] (with respect to time [t1]). *) Let A : duration := job_arrival j - t1. (** Consider an arbitrary time [x] ... *) Variable x : duration. (** ... such that [t1 + x] is inside the busy interval ... *) Hypothesis H_inside_busy_interval : t1 + x < t2. (** ... and job [j] is not completed by time [t1 + x]. *) Hypothesis H_job_j_is_not_completed : ~~ completed_by sched j (t1 + x). (** In this section, we show that the cumulative interference of job [j] in the interval <<[t1, t1 + x)>> is bounded by the sum of the task workload in the interval <<[t1, t1 + A + ε)>> and the cumulative interference of [j]'s task in the interval <<[t1, t1 + x)>>. Note that the task workload is computed only on the interval <<[t1, t1 + A + ε)>>. Thanks to the hypothesis about sequential tasks, jobs of task [tsk] that arrive after [t1 + A + ε] cannot interfere with [j]. *) Section TaskInterferenceBoundsInterference. (** We start by proving a simpler analog of the lemma that states that at any time instant <<t ∈ [t1, t1 + x)>> the sum of [interference j t] and [scheduled_at j t] is no larger than the sum of [the service received by jobs of task tsk at time t] and [task_iterference tsk t]. *) (** Next we consider 4 cases. *) Section CaseAnalysis. (** Consider an arbitrary time instant [t] ∈ <<[t1, t1 + x)>>. *) Variable t : instant. Hypothesis H_t_in_interval : t1 <= t < t1 + x. Section Case1. (** Assume the processor is idle at time [t]. *) Hypothesis H_idle : is_idle arr_seq sched t. (** In case when the processor is idle, one can show that [interference j t = 1, service_at j t = 0]. But since interference doesn't come from a job of task [tsk] [task_interference tsk = 1]. Which reduces to [1 ≤ 1]. *)
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
H_idle: is_idle arr_seq sched t

interference j t + service_at sched j t <= service_of_jobs_at sched (job_of_task tsk) (arrivals_between t1 (t1 + A + 1)) t + task_interference arr_seq sched j t
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
H_idle: is_idle arr_seq sched t

interference j t + service_at sched j t <= service_of_jobs_at sched (job_of_task tsk) (arrivals_between t1 (t1 + A + 1)) t + task_interference arr_seq sched j t
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
H_idle: is_idle arr_seq sched t

0 = service_of_jobs_at sched (job_of_task tsk) (arrivals_between t1 (t1 + A + 1)) t
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
H_idle: is_idle arr_seq sched t
interference j t + service_at sched j t <= 0 + task_interference arr_seq sched j t
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
H_idle: is_idle arr_seq sched t

0 = service_of_jobs_at sched (job_of_task tsk) (arrivals_between t1 (t1 + A + 1)) t
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
H_idle: is_idle arr_seq sched t

\sum_(j <- arrivals_between t1 (t1 + A + 1) | job_of_task tsk j) service_at sched j t = 0
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
H_idle: is_idle arr_seq sched t
j': Job

service_at sched j' t = 0
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
H_idle: is_idle arr_seq sched t
j': Job

~~ scheduled_at sched j' t
exact: not_scheduled_when_idle.
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
H_idle: is_idle arr_seq sched t

interference j t + service_at sched j t <= 0 + task_interference arr_seq sched j t
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
H_idle: is_idle arr_seq sched t

service_at sched j t = 0
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
H_idle: is_idle arr_seq sched t
interference j t + 0 <= 0 + task_interference arr_seq sched j t
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
H_idle: is_idle arr_seq sched t

service_at sched j t = 0
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
H_idle: is_idle arr_seq sched t

~~ scheduled_at sched j t
exact: not_scheduled_when_idle.
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
H_idle: is_idle arr_seq sched t

interference j t + 0 <= 0 + task_interference arr_seq sched j t
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
H_idle: is_idle arr_seq sched t

interference j t <= nonself arr_seq sched j t && interference j t
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
H_idle: is_idle arr_seq sched t
INT: interference j t = true

true <= nonself arr_seq sched j t && true
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
H_idle: is_idle arr_seq sched t
INT: interference j t = true

nonself arr_seq sched j t
exact: no_task_served_when_idle. Qed. End Case1. Section Case2. (** Assume a job [j'] from another task is scheduled at time [t]. *) Variable j' : Job. Hypothesis H_sched : scheduled_at sched j' t. Hypothesis H_not_job_of_tsk : ~~ job_of_task tsk j'. (** If a job [j'] from another task is scheduled at time [t], then [interference j t = 1, served_at j t = 0]. But since interference doesn't come from a job of task [tsk] [task_interference tsk = 1]. Which reduces to [1 ≤ 1]. *)
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
j': Job
H_sched: scheduled_at sched j' t
H_not_job_of_tsk: ~~ job_of_task tsk j'

interference j t + service_at sched j t <= service_of_jobs_at sched (job_of_task tsk) (arrivals_between t1 (t1 + A + 1)) t + task_interference arr_seq sched j t
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
j': Job
H_sched: scheduled_at sched j' t
H_not_job_of_tsk: ~~ job_of_task tsk j'

interference j t + service_at sched j t <= service_of_jobs_at sched (job_of_task tsk) (arrivals_between t1 (t1 + A + 1)) t + task_interference arr_seq sched j t
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
j': Job
H_sched: scheduled_at sched j' t
H_not_job_of_tsk: ~~ job_of_task tsk j'

arrives_in arr_seq j'
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
j': Job
H_sched: scheduled_at sched j' t
H_not_job_of_tsk: ~~ job_of_task tsk j'
ARRs: arrives_in arr_seq j'
interference j t + service_at sched j t <= service_of_jobs_at sched (job_of_task tsk) (arrivals_between t1 (t1 + A + 1)) t + task_interference arr_seq sched j t
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
j': Job
H_sched: scheduled_at sched j' t
H_not_job_of_tsk: ~~ job_of_task tsk j'

arrives_in arr_seq j'
by apply H_jobs_come_from_arrival_sequence with t.
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
j': Job
H_sched: scheduled_at sched j' t
H_not_job_of_tsk: ~~ job_of_task tsk j'
ARRs: arrives_in arr_seq j'

interference j t + service_at sched j t <= service_of_jobs_at sched (job_of_task tsk) (arrivals_between t1 (t1 + A + 1)) t + task_interference arr_seq sched j t
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
j': Job
H_sched: scheduled_at sched j' t
H_not_job_of_tsk: ~~ job_of_task tsk j'
ARRs: arrives_in arr_seq j'

interference j t + service_at sched j t <= service_of_jobs_at sched (job_of_task tsk) (arrivals_between t1 (t1 + A + 1)) t + nonself arr_seq sched j t && interference j t
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
j': Job
H_sched: scheduled_at sched j' t
H_not_job_of_tsk: ~~ job_of_task tsk j'
ARRs: arrives_in arr_seq j'

service_at sched j t = 0
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
j': Job
H_sched: scheduled_at sched j' t
H_not_job_of_tsk: ~~ job_of_task tsk j'
ARRs: arrives_in arr_seq j'
interference j t + 0 <= service_of_jobs_at sched (job_of_task tsk) (arrivals_between t1 (t1 + A + 1)) t + nonself arr_seq sched j t && interference j t
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
j': Job
H_sched: scheduled_at sched j' t
H_not_job_of_tsk: ~~ job_of_task tsk j'
ARRs: arrives_in arr_seq j'

service_at sched j t = 0
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
j': Job
H_sched: scheduled_at sched j' t
H_not_job_of_tsk: ~~ job_of_task tsk j'
ARRs: arrives_in arr_seq j'
SCHED: scheduled_at sched j t

False
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
j': Job
H_sched: scheduled_at sched j' t
H_not_job_of_tsk: ~~ job_of_task tsk j'
ARRs: arrives_in arr_seq j'
SCHED: scheduled_at sched j t
EQ: j' = j

False
by subst; move: H_not_job_of_tsk; rewrite H_job_of_tsk.
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
j': Job
H_sched: scheduled_at sched j' t
H_not_job_of_tsk: ~~ job_of_task tsk j'
ARRs: arrives_in arr_seq j'

interference j t + 0 <= service_of_jobs_at sched (job_of_task tsk) (arrivals_between t1 (t1 + A + 1)) t + nonself arr_seq sched j t && interference j t
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
j': Job
H_sched: scheduled_at sched j' t
H_not_job_of_tsk: ~~ job_of_task tsk j'
ARRs: arrives_in arr_seq j'
INT: interference j t = true

true + 0 <= service_of_jobs_at sched (job_of_task tsk) (arrivals_between t1 (t1 + A + 1)) t + nonself arr_seq sched j t && true
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
j': Job
H_sched: scheduled_at sched j' t
H_not_job_of_tsk: ~~ job_of_task tsk j'
ARRs: arrives_in arr_seq j'
INT: interference j t = true

true + 0 <= service_of_jobs_at sched (job_of_task tsk) (arrivals_between t1 (t1 + A + 1)) t + nonself arr_seq sched j t
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
j': Job
H_sched: scheduled_at sched j' t
H_not_job_of_tsk: ~~ job_of_task tsk j'
ARRs: arrives_in arr_seq j'
INT: interference j t = true

nonself arr_seq sched j t
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
j': Job
H_sched: scheduled_at sched j' t
H_not_job_of_tsk: ~~ job_of_task tsk j'
ARRs: arrives_in arr_seq j'
INT: interference j t = true
true + 0 <= service_of_jobs_at sched (job_of_task tsk) (arrivals_between t1 (t1 + A + 1)) t + true
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
j': Job
H_sched: scheduled_at sched j' t
H_not_job_of_tsk: ~~ job_of_task tsk j'
ARRs: arrives_in arr_seq j'
INT: interference j t = true

nonself arr_seq sched j t
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
j': Job
H_sched: scheduled_at sched j' t
H_not_job_of_tsk: ~~ job_of_task tsk j'
ARRs: arrives_in arr_seq j'
INT: interference j t = true

~~ job_of_task (job_task j) j'
by move: (H_job_of_tsk) => /eqP ->; apply: H_not_job_of_tsk.
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
j': Job
H_sched: scheduled_at sched j' t
H_not_job_of_tsk: ~~ job_of_task tsk j'
ARRs: arrives_in arr_seq j'
INT: interference j t = true

true + 0 <= service_of_jobs_at sched (job_of_task tsk) (arrivals_between t1 (t1 + A + 1)) t + true
by clear; lia. Qed. End Case2. Section Case3. (** Assume a job [j'] of task [tsk] is scheduled at time [t] but receives no service. *) Variable j' : Job. Hypothesis H_sched : scheduled_at sched j' t. Hypothesis H_not_job_of_tsk : job_of_task tsk j'. Hypothesis H_serv : service_at sched j' t = 0. (** If a job [j'] of task [tsk] is scheduled at time [t], then [interference j t = 1, service_at j t = 0]. Moreover, since interference comes from a job of the same task [task_interference tsk = 0]. However, in this case [service_of_jobs of tsk = 1]. Which reduces to [1 ≤ 1]. *)
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
j': Job
H_sched: scheduled_at sched j' t
H_not_job_of_tsk: job_of_task tsk j'
H_serv: service_at sched j' t = 0

interference j t + service_at sched j t <= service_of_jobs_at sched (job_of_task tsk) (arrivals_between t1 (t1 + A + 1)) t + task_interference arr_seq sched j t
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
j': Job
H_sched: scheduled_at sched j' t
H_not_job_of_tsk: job_of_task tsk j'
H_serv: service_at sched j' t = 0

interference j t + service_at sched j t <= service_of_jobs_at sched (job_of_task tsk) (arrivals_between t1 (t1 + A + 1)) t + task_interference arr_seq sched j t
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
j': Job
H_sched: scheduled_at sched j' t
H_not_job_of_tsk: job_of_task tsk j'
H_serv: service_at sched j' t = 0

interference j t + service_at sched j t <= service_of_jobs_at sched (job_of_task tsk) (arrivals_between t1 (t1 + A + 1)) t + nonself arr_seq sched j t && interference j t
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
j': Job
H_sched: scheduled_at sched j' t
H_not_job_of_tsk: job_of_task tsk j'
H_serv: service_at sched j' t = 0

service_at sched j t = 0
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
j': Job
H_sched: scheduled_at sched j' t
H_not_job_of_tsk: job_of_task tsk j'
H_serv: service_at sched j' t = 0
SERVj: service_at sched j t = 0
interference j t + 0 <= service_of_jobs_at sched (job_of_task tsk) (arrivals_between t1 (t1 + A + 1)) t + nonself arr_seq sched j t && interference j t
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
j': Job
H_sched: scheduled_at sched j' t
H_not_job_of_tsk: job_of_task tsk j'
H_serv: service_at sched j' t = 0

service_at sched j t = 0
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
j': Job
H_sched: scheduled_at sched j' t
H_not_job_of_tsk: job_of_task tsk j'
H_serv: service_at sched j' t = 0
SERVj: service_at sched j t = 1

service_at sched j t = 0
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
j': Job
H_sched: scheduled_at sched j' t
H_not_job_of_tsk: job_of_task tsk j'
H_serv: service_at sched j' t = 0
SERVj: service_at sched j t = 1
SCHED: scheduled_at sched j t

False
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
j': Job
H_sched: scheduled_at sched j' t
H_not_job_of_tsk: job_of_task tsk j'
H_serv: service_at sched j' t = 0
SERVj: service_at sched j t = 1
SCHED: scheduled_at sched j t
EQ: j' = j

False
by subst j'; move: H_serv SERVj => ->.
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
j': Job
H_sched: scheduled_at sched j' t
H_not_job_of_tsk: job_of_task tsk j'
H_serv: service_at sched j' t = 0
SERVj: service_at sched j t = 0

interference j t + 0 <= service_of_jobs_at sched (job_of_task tsk) (arrivals_between t1 (t1 + A + 1)) t + nonself arr_seq sched j t && interference j t
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
j': Job
H_sched: scheduled_at sched j' t
H_not_job_of_tsk: job_of_task tsk j'
H_serv: service_at sched j' t = 0
SERVj: service_at sched j t = 0

interference j t = true
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
j': Job
H_sched: scheduled_at sched j' t
H_not_job_of_tsk: job_of_task tsk j'
H_serv: service_at sched j' t = 0
SERVj: service_at sched j t = 0
true + 0 <= service_of_jobs_at sched (job_of_task tsk) (arrivals_between t1 (t1 + A + 1)) t + nonself arr_seq sched j t && true
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
j': Job
H_sched: scheduled_at sched j' t
H_not_job_of_tsk: job_of_task tsk j'
H_serv: service_at sched j' t = 0
SERVj: service_at sched j t = 0

interference j t = true
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
j': Job
H_sched: scheduled_at sched j' t
H_not_job_of_tsk: job_of_task tsk j'
H_serv: service_at sched j' t = 0
SERVj: service_at sched j t = 0
NEQT: t1 <= t < t2

interference j t = true
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
j': Job
H_sched: scheduled_at sched j' t
H_not_job_of_tsk: job_of_task tsk j'
H_serv: service_at sched j' t = 0
SERVj: service_at sched j t = 0
NEQT: t1 <= t < t2
Hn: ~ interference j t -> receives_service_at sched j t

interference j t = true
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
j': Job
H_sched: scheduled_at sched j' t
H_not_job_of_tsk: job_of_task tsk j'
H_serv: service_at sched j' t = 0
SERVj: service_at sched j t = 0
NEQT: t1 <= t < t2
Hn: ~ interference j t -> receives_service_at sched j t
CONTR: ~ interference j t

False
by apply Hn in CONTR; move: CONTR; rewrite /receives_service_at SERVj.
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
j': Job
H_sched: scheduled_at sched j' t
H_not_job_of_tsk: job_of_task tsk j'
H_serv: service_at sched j' t = 0
SERVj: service_at sched j t = 0

true + 0 <= service_of_jobs_at sched (job_of_task tsk) (arrivals_between t1 (t1 + A + 1)) t + nonself arr_seq sched j t && true
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
j': Job
H_sched: scheduled_at sched j' t
H_not_job_of_tsk: job_of_task tsk j'
H_serv: service_at sched j' t = 0
SERVj: service_at sched j t = 0

nonself arr_seq sched j t == true
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
j': Job
H_sched: scheduled_at sched j' t
H_not_job_of_tsk: job_of_task tsk j'
H_serv: service_at sched j' t = 0
SERVj: service_at sched j t = 0
true + 0 <= service_of_jobs_at sched (job_of_task tsk) (arrivals_between t1 (t1 + A + 1)) t + true && true
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
j': Job
H_sched: scheduled_at sched j' t
H_not_job_of_tsk: job_of_task tsk j'
H_serv: service_at sched j' t = 0
SERVj: service_at sched j t = 0

nonself arr_seq sched j t == true
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
j': Job
H_sched: scheduled_at sched j' t
H_not_job_of_tsk: job_of_task tsk j'
H_serv: service_at sched j' t = 0
SERVj: service_at sched j t = 0

nonself arr_seq sched j t
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
j': Job
H_sched: scheduled_at sched j' t
H_not_job_of_tsk: job_of_task tsk j'
H_serv: service_at sched j' t = 0
SERVj: service_at sched j t = 0

job_of_task (job_task j) j'
by move: H_job_of_tsk => /eqP ->.
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
j': Job
H_sched: scheduled_at sched j' t
H_not_job_of_tsk: job_of_task tsk j'
H_serv: service_at sched j' t = 0
SERVj: service_at sched j t = 0

true + 0 <= service_of_jobs_at sched (job_of_task tsk) (arrivals_between t1 (t1 + A + 1)) t + true && true
by rewrite addnC leq_add => //. Qed. End Case3. Section Case4. (** Before proceeding to the last case, let us note that the sum of interference and the service of [j] at [t] always equals to [1]. *)
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x

interference j t + service_at sched j t = 1
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x

interference j t + service_at sched j t = 1
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
NEQT: t1 <= t < t2

interference j t + service_at sched j t = 1
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
NEQT: t1 <= t < t2
SERVj: service_at sched j t = 0

interference j t + service_at sched j t = 1
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
NEQT: t1 <= t < t2
SERVj: service_at sched j t = 1
interference j t + service_at sched j t = 1
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
NEQT: t1 <= t < t2
SERVj: service_at sched j t = 0

interference j t + service_at sched j t = 1
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
NEQT: t1 <= t < t2
SERVj: service_at sched j t = 0

interference j t + 0 = 1
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
NEQT: t1 <= t < t2
SERVj: service_at sched j t = 0

interference j t = true
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
NEQT: t1 <= t < t2
SERVj: service_at sched j t = 0

interference j t = true
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
NEQT: t1 <= t < t2
SERVj: service_at sched j t = 0
Hn: ~ interference j t -> receives_service_at sched j t

interference j t = true
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
NEQT: t1 <= t < t2
SERVj: service_at sched j t = 0
Hn: ~ interference j t -> receives_service_at sched j t
CONTR: ~ interference j t

False
by apply Hn in CONTR; move: CONTR; rewrite /receives_service_at SERVj. }
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
NEQT: t1 <= t < t2
SERVj: service_at sched j t = 1

interference j t + service_at sched j t = 1
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
NEQT: t1 <= t < t2
SERVj: service_at sched j t = 1

interference j t + service_at sched j t = 1
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
NEQT: t1 <= t < t2
SERVj: service_at sched j t = 1

interference j t + 1 = 1
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
NEQT: t1 <= t < t2
SERVj: service_at sched j t = 1

interference j t = false
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
NEQT: t1 <= t < t2
SERVj: service_at sched j t = 1

interference j t = false
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
NEQT: t1 <= t < t2
SERVj: service_at sched j t = 1
Hs: receives_service_at sched j t -> ~ interference j t

interference j t = false
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
NEQT: t1 <= t < t2
SERVj: service_at sched j t = 1

receives_service_at sched j t
by rewrite /receives_service_at SERVj. } } Qed. (** Assume that a job [j'] is scheduled at time [t] and receives service. *) Variable j' : Job. Hypothesis H_sched : scheduled_at sched j' t. Hypothesis H_not_job_of_tsk : job_of_task tsk j'. Hypothesis H_serv : service_at sched j' t = 1. (** If job [j'] is served at time [t], then [service_of_jobs of tsk = 1]. With the fact that [interference + service_at = 1], we get the inequality to [1 ≤ 1]. *)
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
j': Job
H_sched: scheduled_at sched j' t
H_not_job_of_tsk: job_of_task tsk j'
H_serv: service_at sched j' t = 1

interference j t + service_at sched j t <= service_of_jobs_at sched (job_of_task tsk) (arrivals_between t1 (t1 + A + 1)) t + task_interference arr_seq sched j t
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
j': Job
H_sched: scheduled_at sched j' t
H_not_job_of_tsk: job_of_task tsk j'
H_serv: service_at sched j' t = 1

interference j t + service_at sched j t <= service_of_jobs_at sched (job_of_task tsk) (arrivals_between t1 (t1 + A + 1)) t + task_interference arr_seq sched j t
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
j': Job
H_sched: scheduled_at sched j' t
H_not_job_of_tsk: job_of_task tsk j'
H_serv: service_at sched j' t = 1

0 < service_of_jobs_at sched (job_of_task tsk) (arrivals_between t1 (t1 + A + (1 + 0))) t
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
j': Job
H_sched: scheduled_at sched j' t
H_not_job_of_tsk: job_of_task tsk j'
H_serv: service_at sched j' t = 1

exists2 x : Job, x \in arrivals_between t1 (t1 + A + (1 + 0)) & 0 < (if job_of_task tsk x then service_at sched x t else 0)
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
j': Job
H_sched: scheduled_at sched j' t
H_not_job_of_tsk: job_of_task tsk j'
H_serv: service_at sched j' t = 1

j' \in arrivals_between t1 (t1 + A + (1 + 0))
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
j': Job
H_sched: scheduled_at sched j' t
H_not_job_of_tsk: job_of_task tsk j'
H_serv: service_at sched j' t = 1

arrived_between j' t1 (t1 + A + (1 + 0))
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
j': Job
H_sched: scheduled_at sched j' t
H_not_job_of_tsk: job_of_task tsk j'
H_serv: service_at sched j' t = 1

t1 <= job_arrival j'
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
j': Job
H_sched: scheduled_at sched j' t
H_not_job_of_tsk: job_of_task tsk j'
H_serv: service_at sched j' t = 1
job_arrival j' < t1 + A + (1 + 0)
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
j': Job
H_sched: scheduled_at sched j' t
H_not_job_of_tsk: job_of_task tsk j'
H_serv: service_at sched j' t = 1

t1 <= job_arrival j'
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
j': Job
H_sched: scheduled_at sched j' t
H_not_job_of_tsk: job_of_task tsk j'
H_serv: service_at sched j' t = 1
CONTR: job_arrival j' < t1

False
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
j': Job
H_sched: scheduled_at sched j' t
H_not_job_of_tsk: job_of_task tsk j'
H_serv: service_at sched j' t = 1
CONTR: completed_by sched j' t1

False
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
j': Job
H_sched: ~~ completed_by sched j' t
H_not_job_of_tsk: job_of_task tsk j'
H_serv: service_at sched j' t = 1
CONTR: completed_by sched j' t1

False
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
j': Job
H_sched: ~~ completed_by sched j' t
H_not_job_of_tsk: job_of_task tsk j'
H_serv: service_at sched j' t = 1
CONTR: completed_by sched j' t1

completed_by sched j' t
by apply (completion_monotonic _ _ t1) => //; move: (H_t_in_interval); clear; lia.
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
j': Job
H_sched: scheduled_at sched j' t
H_not_job_of_tsk: job_of_task tsk j'
H_serv: service_at sched j' t = 1

job_arrival j' < t1 + A + (1 + 0)
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
j': Job
H_sched: scheduled_at sched j' t
H_not_job_of_tsk: job_of_task tsk j'
H_serv: service_at sched j' t = 1

job_arrival j' <= job_arrival j
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
j': Job
H_sched: scheduled_at sched j' t
H_not_job_of_tsk: job_of_task tsk j'
H_serv: service_at sched j' t = 1

~~ completed_by sched j t
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
j': Job
H_sched: scheduled_at sched j' t
H_not_job_of_tsk: job_of_task tsk j'
H_serv: service_at sched j' t = 1
NCOMPL: ~~ completed_by sched j t
job_arrival j' <= job_arrival j
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
j': Job
H_sched: scheduled_at sched j' t
H_not_job_of_tsk: job_of_task tsk j'
H_serv: service_at sched j' t = 1

~~ completed_by sched j t
by apply: (incompletion_monotonic _ _ _ (t1 + x)) => //; move: (H_t_in_interval); clear; lia.
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
j': Job
H_sched: scheduled_at sched j' t
H_not_job_of_tsk: job_of_task tsk j'
H_serv: service_at sched j' t = 1
NCOMPL: ~~ completed_by sched j t

job_arrival j' <= job_arrival j
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
t: instant
H_t_in_interval: t1 <= t < t1 + x
j': Job
H_sched: scheduled_at sched j' t
H_not_job_of_tsk: job_of_task tsk j'
H_serv: service_at sched j' t = 1
NCOMPL: ~~ completed_by sched j t

same_task j' j
by rewrite /same_task; move: (H_job_of_tsk) (H_not_job_of_tsk) => /eqP -> /eqP ->. Qed. End Case4. (** We use the above case analysis to prove that any time instant <<t ∈ [t1, t1 + x)>> the sum of [interference j t] and [scheduled_at j t] is no larger than the sum of [the service received by jobs of task tsk at time t] and [task_iterference tsk t]. *)
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x

interference j t + service_at sched j t <= service_of_jobs_at sched (job_of_task tsk) (arrivals_between t1 (t1 + A + 1)) t + task_interference arr_seq sched j t
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x

interference j t + service_at sched j t <= service_of_jobs_at sched (job_of_task tsk) (arrivals_between t1 (t1 + A + 1)) t + task_interference arr_seq sched j t
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x

interference j t + service_at sched j t <= service_of_jobs_at sched (job_of_task tsk) (arrivals_between t1 (t1 + A + 1)) t + nonself arr_seq sched j t && interference j t
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
IDLE: is_idle arr_seq sched t

interference j t + service_at sched j t <= service_of_jobs_at sched (job_of_task tsk) (arrivals_between t1 (t1 + A + 1)) t + nonself arr_seq sched j t && interference j t
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
SCHED: ~~ is_idle arr_seq sched t
interference j t + service_at sched j t <= service_of_jobs_at sched (job_of_task tsk) (arrivals_between t1 (t1 + A + 1)) t + nonself arr_seq sched j t && interference j t
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
IDLE: is_idle arr_seq sched t

interference j t + service_at sched j t <= service_of_jobs_at sched (job_of_task tsk) (arrivals_between t1 (t1 + A + 1)) t + nonself arr_seq sched j t && interference j t
by apply interference_plus_sched_le_serv_of_task_plus_task_interference_idle.
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
SCHED: ~~ is_idle arr_seq sched t

interference j t + service_at sched j t <= service_of_jobs_at sched (job_of_task tsk) (arrivals_between t1 (t1 + A + 1)) t + nonself arr_seq sched j t && interference j t
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
SCHED: ~~ is_idle arr_seq sched t

interference j t + service_at sched j t <= service_of_jobs_at sched (job_of_task tsk) (arrivals_between t1 (t1 + A + 1)) t + nonself arr_seq sched j t && interference j t
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
s: Job
SCHEDs: scheduled_at sched s t

interference j t + service_at sched j t <= service_of_jobs_at sched (job_of_task tsk) (arrivals_between t1 (t1 + A + 1)) t + nonself arr_seq sched j t && interference j t
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
s: Job
SCHEDs: scheduled_at sched s t
ARRs: arrives_in arr_seq s

interference j t + service_at sched j t <= service_of_jobs_at sched (job_of_task tsk) (arrivals_between t1 (t1 + A + 1)) t + nonself arr_seq sched j t && interference j t
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
s: Job
SCHEDs: scheduled_at sched s t
ARRs: arrives_in arr_seq s
TSKNEQ: ~~ job_of_task tsk s

interference j t + service_at sched j t <= service_of_jobs_at sched (job_of_task tsk) (arrivals_between t1 (t1 + A + 1)) t + nonself arr_seq sched j t && interference j t
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
s: Job
SCHEDs: scheduled_at sched s t
ARRs: arrives_in arr_seq s
TSKEQ: job_of_task tsk s
interference j t + service_at sched j t <= service_of_jobs_at sched (job_of_task tsk) (arrivals_between t1 (t1 + A + 1)) t + nonself arr_seq sched j t && interference j t
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
s: Job
SCHEDs: scheduled_at sched s t
ARRs: arrives_in arr_seq s
TSKNEQ: ~~ job_of_task tsk s

interference j t + service_at sched j t <= service_of_jobs_at sched (job_of_task tsk) (arrivals_between t1 (t1 + A + 1)) t + nonself arr_seq sched j t && interference j t
exact: interference_plus_sched_le_serv_of_task_plus_task_interference_task.
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
s: Job
SCHEDs: scheduled_at sched s t
ARRs: arrives_in arr_seq s
TSKEQ: job_of_task tsk s

interference j t + service_at sched j t <= service_of_jobs_at sched (job_of_task tsk) (arrivals_between t1 (t1 + A + 1)) t + nonself arr_seq sched j t && interference j t
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
s: Job
SCHEDs: scheduled_at sched s t
ARRs: arrives_in arr_seq s
TSKEQ: job_of_task tsk s

interference j t + service_at sched j t <= service_of_jobs_at sched (job_of_task tsk) (arrivals_between t1 (t1 + A + 1)) t + nonself arr_seq sched j t && interference j t
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
s: Job
SCHEDs: scheduled_at sched s t
ARRs: arrives_in arr_seq s
TSKEQ: job_of_task tsk s
SERVj: service_at sched s t = 0

interference j t + service_at sched j t <= service_of_jobs_at sched (job_of_task tsk) (arrivals_between t1 (t1 + A + 1)) t + nonself arr_seq sched j t && interference j t
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
s: Job
SCHEDs: scheduled_at sched s t
ARRs: arrives_in arr_seq s
TSKEQ: job_of_task tsk s
SERVj: service_at sched s t = 1
interference j t + service_at sched j t <= service_of_jobs_at sched (job_of_task tsk) (arrivals_between t1 (t1 + A + 1)) t + nonself arr_seq sched j t && interference j t
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
s: Job
SCHEDs: scheduled_at sched s t
ARRs: arrives_in arr_seq s
TSKEQ: job_of_task tsk s
SERVj: service_at sched s t = 0

interference j t + service_at sched j t <= service_of_jobs_at sched (job_of_task tsk) (arrivals_between t1 (t1 + A + 1)) t + nonself arr_seq sched j t && interference j t
exact: interference_plus_sched_le_serv_of_task_plus_task_interference_job.
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
s: Job
SCHEDs: scheduled_at sched s t
ARRs: arrives_in arr_seq s
TSKEQ: job_of_task tsk s
SERVj: service_at sched s t = 1

interference j t + service_at sched j t <= service_of_jobs_at sched (job_of_task tsk) (arrivals_between t1 (t1 + A + 1)) t + nonself arr_seq sched j t && interference j t
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
t: instant
H_t_in_interval: t1 <= t < t1 + x
s: Job
SCHEDs: scheduled_at sched s t
ARRs: arrives_in arr_seq s
TSKEQ: job_of_task tsk s
SERVj: service_at sched s t = 1

interference j t + service_at sched j t <= service_of_jobs_at sched (job_of_task tsk) (arrivals_between t1 (t1 + A + 1)) t + nonself arr_seq sched j t && interference j t
exact: interference_plus_sched_le_serv_of_task_plus_task_interference_j. } } } Qed. End CaseAnalysis. (** Next we prove cumulative version of the lemma above. *)
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)

cumulative_interference j t1 (t1 + x) <= task_service_of_jobs_in sched tsk (arrivals_between t1 (t1 + A + 1)) t1 (t1 + x) - service_during sched j t1 (t1 + x) + cumul_task_interference arr_seq sched j t1 (t1 + x)
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)

cumulative_interference j t1 (t1 + x) <= task_service_of_jobs_in sched tsk (arrivals_between t1 (t1 + A + 1)) t1 (t1 + x) - service_during sched j t1 (t1 + x) + cumul_task_interference arr_seq sched j t1 (t1 + x)
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)

j \in arrivals_between t1 (t1 + A + 1)
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
j_is_in_arrivals_between: j \in arrivals_between t1 (t1 + A + 1)
cumulative_interference j t1 (t1 + x) <= task_service_of_jobs_in sched tsk (arrivals_between t1 (t1 + A + 1)) t1 (t1 + x) - service_during sched j t1 (t1 + x) + cumul_task_interference arr_seq sched j t1 (t1 + x)
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)

j \in arrivals_between t1 (t1 + A + 1)
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)

arrived_between j t1 (t1 + A + 1)
by apply/andP; split; last rewrite /A subnKC // addn1.
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
j_is_in_arrivals_between: j \in arrivals_between t1 (t1 + A + 1)

cumulative_interference j t1 (t1 + x) <= task_service_of_jobs_in sched tsk (arrivals_between t1 (t1 + A + 1)) t1 (t1 + x) - service_during sched j t1 (t1 + x) + cumul_task_interference arr_seq sched j t1 (t1 + x)
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
j_is_in_arrivals_between: j \in arrivals_between t1 (t1 + A + 1)

cumulative_interference j t1 (t1 + x) <= \sum_(t1 <= j < t1 + x) \sum_(i <- arrivals_between t1 (t1 + A + 1) | job_of_task tsk i) service_at sched i j - service_during sched j t1 (t1 + x) + cumul_task_interference arr_seq sched j t1 (t1 + x)
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
j_is_in_arrivals_between: j \in arrivals_between t1 (t1 + A + 1)

cumulative_interference j t1 (t1 + x) + \sum_(t1 <= t < t1 + x) service_at sched j t <= \sum_(t1 <= j < t1 + x) \sum_(i <- arrivals_between t1 (t1 + A + 1) | job_of_task tsk i) service_at sched i j - service_during sched j t1 (t1 + x) + cumul_task_interference arr_seq sched j t1 (t1 + x) + \sum_(t1 <= t < t1 + x) service_at sched j t
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
j_is_in_arrivals_between: j \in arrivals_between t1 (t1 + A + 1)

\sum_(t1 <= t < t1 + x) service_at sched j t <= \sum_(t1 <= j < t1 + x) \sum_(i <- arrivals_between t1 (t1 + A + 1) | job_of_task tsk i) service_at sched i j
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
j_is_in_arrivals_between: j \in arrivals_between t1 (t1 + A + 1)
cumulative_interference j t1 (t1 + x) + \sum_(t1 <= t < t1 + x) service_at sched j t <= \sum_(t1 <= j < t1 + x) \sum_(i <- arrivals_between t1 (t1 + A + 1) | job_of_task tsk i) service_at sched i j + cumul_task_interference arr_seq sched j t1 (t1 + x)
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
j_is_in_arrivals_between: j \in arrivals_between t1 (t1 + A + 1)

\sum_(t1 <= t < t1 + x) service_at sched j t <= \sum_(t1 <= j < t1 + x) \sum_(i <- arrivals_between t1 (t1 + A + 1) | job_of_task tsk i) service_at sched i j
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
j_is_in_arrivals_between: j \in arrivals_between t1 (t1 + A + 1)

\sum_(t1 <= t < t1 + x) service_at sched j t <= (if job_of_task tsk j then \sum_(t1 <= i < t1 + x) service_at sched j i else 0) + \sum_(y <- rem (T:=Job) j (arrivals_between t1 (t1 + A + 1)) | job_of_task tsk y) \sum_(t1 <= i < t1 + x) service_at sched y i
by rewrite H_job_of_tsk leq_addr.
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
j_is_in_arrivals_between: j \in arrivals_between t1 (t1 + A + 1)

cumulative_interference j t1 (t1 + x) + \sum_(t1 <= t < t1 + x) service_at sched j t <= \sum_(t1 <= j < t1 + x) \sum_(i <- arrivals_between t1 (t1 + A + 1) | job_of_task tsk i) service_at sched i j + cumul_task_interference arr_seq sched j t1 (t1 + x)
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
j_is_in_arrivals_between: j \in arrivals_between t1 (t1 + A + 1)

\sum_(t1 <= i < t1 + x) (cond_interference (fun=> xpredT) j i + service_at sched j i) <= \sum_(t1 <= i < t1 + x) (\sum_(i0 <- arrivals_between t1 (t1 + A + 1) | job_of_task tsk i0) service_at sched i0 i + cond_interference (nonself arr_seq sched) j i)
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
j_is_in_arrivals_between: j \in arrivals_between t1 (t1 + A + 1)
t: nat
NEQ: t1 <= t < t1 + x

cond_interference (fun=> xpredT) j t + service_at sched j t <= \sum_(i <- arrivals_between t1 (t1 + A + 1) | job_of_task tsk i) service_at sched i t + cond_interference (nonself arr_seq sched) j t
rewrite -(leqRW (interference_plus_sched_le_serv_of_task_plus_task_interference _ _ )) => //. Qed. (** As the next step, the service terms in the inequality above can be upper-bound by the workload terms. *)
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)

task_service_of_jobs_in sched tsk (arrivals_between t1 (t1 + A + 1)) t1 (t1 + x) - service_during sched j t1 (t1 + x) + cumul_task_interference arr_seq sched j t1 (t1 + x) <= task_workload_between arr_seq tsk t1 (t1 + A + 1) - job_cost j + cumul_task_interference arr_seq sched j t1 (t1 + x)
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)

task_service_of_jobs_in sched tsk (arrivals_between t1 (t1 + A + 1)) t1 (t1 + x) - service_during sched j t1 (t1 + x) + cumul_task_interference arr_seq sched j t1 (t1 + x) <= task_workload_between arr_seq tsk t1 (t1 + A + 1) - job_cost j + cumul_task_interference arr_seq sched j t1 (t1 + x)
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)

j \in arrivals_between t1 (t1 + A + 1)
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
j_is_in_arrivals_between: j \in arrivals_between t1 (t1 + A + 1)
task_service_of_jobs_in sched tsk (arrivals_between t1 (t1 + A + 1)) t1 (t1 + x) - service_during sched j t1 (t1 + x) + cumul_task_interference arr_seq sched j t1 (t1 + x) <= task_workload_between arr_seq tsk t1 (t1 + A + 1) - job_cost j + cumul_task_interference arr_seq sched j t1 (t1 + x)
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)

j \in arrivals_between t1 (t1 + A + 1)
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)

arrived_between j t1 (t1 + A + 1)
by apply/andP; split; last rewrite /A subnKC // addn1.
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
j_is_in_arrivals_between: j \in arrivals_between t1 (t1 + A + 1)

task_service_of_jobs_in sched tsk (arrivals_between t1 (t1 + A + 1)) t1 (t1 + x) - service_during sched j t1 (t1 + x) + cumul_task_interference arr_seq sched j t1 (t1 + x) <= task_workload_between arr_seq tsk t1 (t1 + A + 1) - job_cost j + cumul_task_interference arr_seq sched j t1 (t1 + x)
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
j_is_in_arrivals_between: j \in arrivals_between t1 (t1 + A + 1)

task_service_of_jobs_in sched tsk (arrivals_between t1 (t1 + A + 1)) t1 (t1 + x) - service_during sched j t1 (t1 + x) <= task_workload_between arr_seq tsk t1 (t1 + A + 1) - job_cost j
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
j_is_in_arrivals_between: j \in arrivals_between t1 (t1 + A + 1)

\sum_(j <- arrivals_between t1 (t1 + A + 1) | job_of_task tsk j) service_during sched j t1 (t1 + x) - service_during sched j t1 (t1 + x) <= task_workload_between arr_seq tsk t1 (t1 + A + 1) - job_cost j
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
j_is_in_arrivals_between: j \in arrivals_between t1 (t1 + A + 1)

(if job_of_task tsk j then service_during sched j t1 (t1 + x) else 0) + \sum_(y <- rem (T:=Job) j (arrivals_between t1 (t1 + A + 1)) | job_of_task tsk y) service_during sched y t1 (t1 + x) - service_during sched j t1 (t1 + x) <= (if job_of_task tsk j then job_cost j else 0) + \sum_(y <- rem (T:=Job) j (arrival_sequence.arrivals_between arr_seq t1 (t1 + A + 1)) | job_of_task tsk y) job_cost y - job_cost j
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
j_is_in_arrivals_between: j \in arrivals_between t1 (t1 + A + 1)

\sum_(y <- rem (T:=Job) j (arrivals_between t1 (t1 + A + 1)) | job_of_task tsk y) service_during sched y t1 (t1 + x) + (service_during sched j t1 (t1 + x) - service_during sched j t1 (t1 + x)) <= \sum_(y <- rem (T:=Job) j (arrival_sequence.arrivals_between arr_seq t1 (t1 + A + 1)) | job_of_task tsk y) job_cost y + (job_cost j - job_cost j)
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)
j_is_in_arrivals_between: j \in arrivals_between t1 (t1 + A + 1)

\sum_(y <- rem (T:=Job) j (arrivals_between t1 (t1 + A + 1)) | job_of_task tsk y) service_during sched y t1 (t1 + x) <= \sum_(y <- rem (T:=Job) j (arrival_sequence.arrivals_between arr_seq t1 (t1 + A + 1)) | job_of_task tsk y) job_cost y
exact: service_of_jobs_le_workload. Qed. (** Finally, we show that the cumulative interference of job [j] in the interval <<[t1, t1 + x)>> is bounded by the sum of the task workload in the interval [t1, t1 + A + ε) and the cumulative interference of [j]'s task in the interval <<[t1, t1 + x)>>. *)
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)

cumulative_interference j t1 (t1 + x) <= task_workload_between arr_seq tsk t1 (t1 + A + 1) - job_cost j + cumul_task_interference arr_seq sched j t1 (t1 + x)
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)

cumulative_interference j t1 (t1 + x) <= task_workload_between arr_seq tsk t1 (t1 + A + 1) - job_cost j + cumul_task_interference arr_seq sched j t1 (t1 + x)
by apply leq_trans with (task_service_of_jobs_in sched tsk (arrivals_between t1 (t1 + A + ε)) t1 (t1 + x) - service_during sched j t1 (t1 + x) + cumul_task_interference arr_seq sched j t1 (t1 + x)); [ apply cumul_interference_plus_sched_le_serv_of_task_plus_cumul_task_interference | apply serv_of_task_le_workload_of_task_plus]. Qed. End TaskInterferenceBoundsInterference. (** We use the lemmas above to obtain the bound on [interference] in terms of [task_rbf] and [task_interference]. *)
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)

cumulative_interference j t1 (t1 + x) <= task_rbf (A + 1) - task_cost tsk + cumul_task_interference arr_seq sched j t1 (t1 + x)
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
H_inside_busy_interval: t1 + x < t2
H_job_j_is_not_completed: ~~ completed_by sched j (t1 + x)

cumulative_interference j t1 (t1 + x) <= task_rbf (A + 1) - task_cost tsk + cumul_task_interference arr_seq sched j t1 (t1 + x)
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
y:= t1 + x: nat
H_inside_busy_interval: y < t2
H_job_j_is_not_completed: ~~ completed_by sched j y

cumulative_interference j t1 y <= task_rbf (A + 1) - task_cost tsk + cumul_task_interference arr_seq sched j t1 y
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
y:= t1 + x: nat
H_inside_busy_interval: y < t2
H_job_j_is_not_completed: ~~ completed_by sched j y

j \in arrivals_between t1 (t1 + A + 1)
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
y:= t1 + x: nat
H_inside_busy_interval: y < t2
H_job_j_is_not_completed: ~~ completed_by sched j y
IN: j \in arrivals_between t1 (t1 + A + 1)
cumulative_interference j t1 y <= task_rbf (A + 1) - task_cost tsk + cumul_task_interference arr_seq sched j t1 y
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
y:= t1 + x: nat
H_inside_busy_interval: y < t2
H_job_j_is_not_completed: ~~ completed_by sched j y

j \in arrivals_between t1 (t1 + A + 1)
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
y:= t1 + x: nat
H_inside_busy_interval: y < t2
H_job_j_is_not_completed: ~~ completed_by sched j y

arrived_between j t1 (t1 + A + 1)
by apply/andP; split; last rewrite /A subnKC // addn1.
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
y:= t1 + x: nat
H_inside_busy_interval: y < t2
H_job_j_is_not_completed: ~~ completed_by sched j y
IN: j \in arrivals_between t1 (t1 + A + 1)

cumulative_interference j t1 y <= task_rbf (A + 1) - task_cost tsk + cumul_task_interference arr_seq sched j t1 y
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
y:= t1 + x: nat
H_inside_busy_interval: y < t2
H_job_j_is_not_completed: ~~ completed_by sched j y
IN: j \in arrivals_between t1 (t1 + A + 1)

cumulative_interference j t1 y <= task_workload_between arr_seq tsk t1 (t1 + A + 1) - job_cost j + cumul_task_interference arr_seq sched j t1 y
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
y:= t1 + x: nat
H_inside_busy_interval: y < t2
H_job_j_is_not_completed: ~~ completed_by sched j y
IN: j \in arrivals_between t1 (t1 + A + 1)
task_workload_between arr_seq tsk t1 (t1 + A + 1) - job_cost j + cumul_task_interference arr_seq sched j t1 y <= task_rbf (A + 1) - task_cost tsk + cumul_task_interference arr_seq sched j t1 y
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
y:= t1 + x: nat
H_inside_busy_interval: y < t2
H_job_j_is_not_completed: ~~ completed_by sched j y
IN: j \in arrivals_between t1 (t1 + A + 1)

cumulative_interference j t1 y <= task_workload_between arr_seq tsk t1 (t1 + A + 1) - job_cost j + cumul_task_interference arr_seq sched j t1 y
by apply cumulative_job_interference_le_task_interference_bound.
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
y:= t1 + x: nat
H_inside_busy_interval: y < t2
H_job_j_is_not_completed: ~~ completed_by sched j y
IN: j \in arrivals_between t1 (t1 + A + 1)

task_workload_between arr_seq tsk t1 (t1 + A + 1) - job_cost j + cumul_task_interference arr_seq sched j t1 y <= task_rbf (A + 1) - task_cost tsk + cumul_task_interference arr_seq sched j t1 y
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
y:= t1 + x: nat
H_inside_busy_interval: y < t2
H_job_j_is_not_completed: ~~ completed_by sched j y
IN: j \in arrivals_between t1 (t1 + A + 1)

task_workload_between arr_seq tsk t1 (t1 + (job_arrival j - t1) + 1) - job_cost j <= task_rbf (job_arrival j - t1 + 1) - task_cost tsk
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
y:= t1 + x: nat
H_inside_busy_interval: y < t2
H_job_j_is_not_completed: ~~ completed_by sched j y
IN: j \in arrivals_between t1 (t1 + A + 1)

task_workload_between arr_seq tsk t1 (t1 + (job_arrival j - t1 + 1)) - job_cost j <= task_rbf (job_arrival j - t1 + 1) - task_cost tsk
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
j: Job
H_j_arrives: arrives_in arr_seq j
H_job_of_tsk: job_of_task tsk j
H_job_cost_positive: job_cost_positive j
t1, t2: instant
H_busy_interval: busy_interval sched j t1 t2
A:= job_arrival j - t1: duration
x: duration
y:= t1 + x: nat
H_inside_busy_interval: y < t2
H_job_j_is_not_completed: ~~ completed_by sched j y
IN: j \in arrivals_between t1 (t1 + A + 1)

job_arrival j < t1 + (job_arrival j - t1 + 1)
by move: IN => /[!job_arrival_in_bounds] // -[]; lia. Qed. End BoundOfCumulativeJobInterference. (** Finally, we show that one can construct a job IBF from the given task IBF. *)
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF

job_interference_is_bounded_by arr_seq sched tsk (fun A R : duration => task_rbf (A + 1) - task_cost tsk + task_IBF A R) (relative_arrival_time_of_job_is_A sched)
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF

job_interference_is_bounded_by arr_seq sched tsk (fun A R : duration => task_rbf (A + 1) - task_cost tsk + task_IBF A R) (relative_arrival_time_of_job_is_A sched)
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
t1, t2: instant
R: nat
j: Job
ARR: arrives_in arr_seq j
TSK: job_of_task tsk j
BUSY: busy_interval sched j t1 t2
NEQ: t1 + R < t2
COMPL: ~~ completed_by sched j (t1 + R)

forall X : nat, relative_arrival_time_of_job_is_A sched j X -> cumul_cond_interference (fun=> xpredT) j t1 (t1 + R) <= task_rbf (X + 1) - task_cost tsk + task_IBF X R
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
t1, t2: instant
R: nat
j: Job
ARR: arrives_in arr_seq j
TSK: job_of_task tsk j
BUSY: busy_interval sched j t1 t2
NEQ: t1 + R < t2
COMPL: ~~ completed_by sched j (t1 + R)
ZERO: job_cost j = 0

forall X : nat, relative_arrival_time_of_job_is_A sched j X -> cumul_cond_interference (fun=> xpredT) j t1 (t1 + R) <= task_rbf (X + 1) - task_cost tsk + task_IBF X R
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
t1, t2: instant
R: nat
j: Job
ARR: arrives_in arr_seq j
TSK: job_of_task tsk j
BUSY: busy_interval sched j t1 t2
NEQ: t1 + R < t2
COMPL: ~~ completed_by sched j (t1 + R)
POS: 0 < job_cost j
forall X : nat, relative_arrival_time_of_job_is_A sched j X -> cumul_cond_interference (fun=> xpredT) j t1 (t1 + R) <= task_rbf (X + 1) - task_cost tsk + task_IBF X R
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
t1, t2: instant
R: nat
j: Job
ARR: arrives_in arr_seq j
TSK: job_of_task tsk j
BUSY: busy_interval sched j t1 t2
NEQ: t1 + R < t2
COMPL: ~~ completed_by sched j (t1 + R)
ZERO: job_cost j = 0

forall X : nat, relative_arrival_time_of_job_is_A sched j X -> cumul_cond_interference (fun=> xpredT) j t1 (t1 + R) <= task_rbf (X + 1) - task_cost tsk + task_IBF X R
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
t1, t2: instant
R: nat
j: Job
ARR: arrives_in arr_seq j
TSK: job_of_task tsk j
BUSY: busy_interval sched j t1 t2
NEQ: t1 + R < t2
ZERO: job_cost j = 0

completed_by sched j (t1 + R)
by rewrite /service.completed_by ZERO.
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
t1, t2: instant
R: nat
j: Job
ARR: arrives_in arr_seq j
TSK: job_of_task tsk j
BUSY: busy_interval sched j t1 t2
NEQ: t1 + R < t2
COMPL: ~~ completed_by sched j (t1 + R)
POS: 0 < job_cost j

forall X : nat, relative_arrival_time_of_job_is_A sched j X -> cumul_cond_interference (fun=> xpredT) j t1 (t1 + R) <= task_rbf (X + 1) - task_cost tsk + task_IBF X R
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
t1, t2: instant
R: nat
j: Job
ARR: arrives_in arr_seq j
TSK: job_of_task tsk j
BUSY: busy_interval sched j t1 t2
NEQ: t1 + R < t2
COMPL: ~~ completed_by sched j (t1 + R)
POS: 0 < job_cost j
A: nat
LE: A = job_arrival j - t1

cumul_cond_interference (fun=> xpredT) j t1 (t1 + R) <= task_rbf (A + 1) - task_cost tsk + task_IBF A R
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
t1, t2: instant
R: nat
j: Job
ARR: arrives_in arr_seq j
TSK: job_of_task tsk j
BUSY: busy_interval sched j t1 t2
NEQ: t1 + R < t2
COMPL: ~~ completed_by sched j (t1 + R)
POS: 0 < job_cost j
A: nat
LE: A = job_arrival j - t1

cumul_cond_interference (fun=> xpredT) j t1 (t1 + R) <= task_rbf (A + 1) - task_cost tsk + cumul_task_interference arr_seq sched j t1 (t1 + R)
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
t1, t2: instant
R: nat
j: Job
ARR: arrives_in arr_seq j
TSK: job_of_task tsk j
BUSY: busy_interval sched j t1 t2
NEQ: t1 + R < t2
COMPL: ~~ completed_by sched j (t1 + R)
POS: 0 < job_cost j
A: nat
LE: A = job_arrival j - t1
task_rbf (A + 1) - task_cost tsk + cumul_task_interference arr_seq sched j t1 (t1 + R) <= task_rbf (A + 1) - task_cost tsk + task_IBF A R
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
t1, t2: instant
R: nat
j: Job
ARR: arrives_in arr_seq j
TSK: job_of_task tsk j
BUSY: busy_interval sched j t1 t2
NEQ: t1 + R < t2
COMPL: ~~ completed_by sched j (t1 + R)
POS: 0 < job_cost j
A: nat
LE: A = job_arrival j - t1

cumul_cond_interference (fun=> xpredT) j t1 (t1 + R) <= task_rbf (A + 1) - task_cost tsk + cumul_task_interference arr_seq sched j t1 (t1 + R)
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
t1, t2: instant
R: nat
j: Job
ARR: arrives_in arr_seq j
TSK: job_of_task tsk j
BUSY: busy_interval sched j t1 t2
NEQ: t1 + R < t2
COMPL: ~~ completed_by sched j (t1 + R)
POS: 0 < job_cost j
A: nat
LE: A = job_arrival j - t1

cumul_cond_interference (fun=> xpredT) j t1 (t1 + R) <= task_rbf (A + 1) - task_cost tsk + cumul_task_interference arr_seq sched j t1 (t1 + R)
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
t1, t2: instant
R: nat
j: Job
ARR: arrives_in arr_seq j
TSK: job_of_task tsk j
BUSY: busy_interval sched j t1 t2
NEQ: t1 + R < t2
COMPL: ~~ completed_by sched j (t1 + R)
POS: 0 < job_cost j
A: nat
LE: A = job_arrival j - t1

task_rbf (job_arrival j - t1 + 1) - task_cost tsk + cumul_task_interference arr_seq sched j t1 (t1 + R) <= task_rbf (A + 1) - task_cost tsk + cumul_task_interference arr_seq sched j t1 (t1 + R)
by rewrite LE; replace (t1 + A - t1) with A by lia.
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
t1, t2: instant
R: nat
j: Job
ARR: arrives_in arr_seq j
TSK: job_of_task tsk j
BUSY: busy_interval sched j t1 t2
NEQ: t1 + R < t2
COMPL: ~~ completed_by sched j (t1 + R)
POS: 0 < job_cost j
A: nat
LE: A = job_arrival j - t1

task_rbf (A + 1) - task_cost tsk + cumul_task_interference arr_seq sched j t1 (t1 + R) <= task_rbf (A + 1) - task_cost tsk + task_IBF A R
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
t1, t2: instant
R: nat
j: Job
ARR: arrives_in arr_seq j
TSK: job_of_task tsk j
BUSY: busy_interval sched j t1 t2
NEQ: t1 + R < t2
COMPL: ~~ completed_by sched j (t1 + R)
POS: 0 < job_cost j
A: nat
LE: A = job_arrival j - t1

cumul_task_interference arr_seq sched j t1 (t1 + R) <= task_IBF A R
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
t1, t2: instant
R: nat
j: Job
ARR: arrives_in arr_seq j
TSK: job_of_task tsk j
BUSY: busy_interval sched j t1 t2
NEQ: t1 + R < t2
COMPL: ~~ completed_by sched j (t1 + R)
POS: 0 < job_cost j
A: nat
LE: A = job_arrival j - t1

cumul_cond_interference (nonself arr_seq sched) j t1 (t1 + R) <= task_IBF A R
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
t1, t2: instant
R: nat
j: Job
ARR: arrives_in arr_seq j
TSK: job_of_task tsk j
BUSY: busy_interval sched j t1 t2
NEQ: t1 + R < t2
COMPL: ~~ completed_by sched j (t1 + R)
POS: 0 < job_cost j
A: nat
LE: A = job_arrival j - t1

relative_arrival_time_of_job_is_A sched j A
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
t1, t2: instant
R: nat
j: Job
ARR: arrives_in arr_seq j
TSK: job_of_task tsk j
BUSY: busy_interval sched j t1 t2
NEQ: t1 + R < t2
COMPL: ~~ completed_by sched j (t1 + R)
POS: 0 < job_cost j
A: nat
LE: A = job_arrival j - t1
EQ: job_arrival j - t1 = A

relative_arrival_time_of_job_is_A sched j A
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
t1, t2: instant
R: nat
j: Job
ARR: arrives_in arr_seq j
TSK: job_of_task tsk j
BUSY: busy_interval sched j t1 t2
NEQ: t1 + R < t2
COMPL: ~~ completed_by sched j (t1 + R)
POS: 0 < job_cost j
EQ: job_arrival j - t1 = job_arrival j - t1

relative_arrival_time_of_job_is_A sched j (job_arrival j - t1)
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
t1, t2: instant
R: nat
j: Job
ARR: arrives_in arr_seq j
TSK: job_of_task tsk j
BUSY: busy_interval sched j t1 t2
NEQ: t1 + R < t2
COMPL: ~~ completed_by sched j (t1 + R)
POS: 0 < job_cost j
EQ: job_arrival j - t1 = job_arrival j - t1
t1', t2': instant
BUSY': busy_interval sched j t1' t2'

job_arrival j - t1 = job_arrival j - t1'
Task: TaskType
H: TaskCost Task
Job: JobType
H0: JobTask Job Task
H1: JobArrival Job
jc: JobCost Job
PState: ProcessorState Job
H_uniprocessor_proc_model: uniprocessor_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_valid_arrival_sequence: valid_arrival_sequence arr_seq
sched: schedule PState
H_jobs_come_from_arrival_sequence: jobs_come_from_arrival_sequence sched arr_seq
H_jobs_must_arrive_to_execute: jobs_must_arrive_to_execute sched
H_completed_jobs_dont_execute: completed_jobs_dont_execute sched
H_valid_job_cost: arrivals_have_valid_job_costs arr_seq
ts: seq Task
tsk: Task
H_tsk_in_ts: tsk \in ts
H2: MaxArrivals Task
H_valid_arrival_curve: valid_taskset_arrival_curve ts max_arrivals
H_is_arrival_curve: taskset_respects_max_arrivals arr_seq ts
H3: Interference Job
H4: InterferingWorkload Job
H_work_conserving: work_conserving arr_seq sched
task_rbf:= task_request_bound_function tsk: duration -> nat
arrivals_between:= arrival_sequence.arrivals_between arr_seq: instant -> instant -> seq Job
H_sequential_tasks: sequential_tasks arr_seq sched
H_interference_and_workload_consistent_with_sequential_tasks: interference_and_workload_consistent_with_sequential_tasks
task_IBF: duration -> duration -> duration
H_task_interference_is_bounded: task_interference_is_bounded_by arr_seq sched tsk task_IBF
t1, t2: instant
R: nat
j: Job
ARR: arrives_in arr_seq j
TSK: job_of_task tsk j
BUSY: busy_interval sched j t1 t2
NEQ: t1 + R < t2
COMPL: ~~ completed_by sched j (t1 + R)
POS: 0 < job_cost j
EQ: job_arrival j - t1 = job_arrival j - t1
t1', t2': instant
BUSY': busy_interval sched j t1' t2'
EQ1: t1 = t1'
E2: t2 = t2'

job_arrival j - t1 = job_arrival j - t1'
by subst. Qed. End TaskIBFtoJobIBF.