Built with Alectryon, running Coq+SerAPI v8.15.0+0.15.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.
Notation "[ rel _ _ | _ ]" was already used in scope fun_scope. [notation-overridden,parsing]
Notation "[ rel _ _ : _ | _ ]" was already used in scope fun_scope. [notation-overridden,parsing]
Notation "[ rel _ _ in _ & _ | _ ]" was already used in scope fun_scope. [notation-overridden,parsing]
Notation "[ rel _ _ in _ & _ ]" was already used in scope fun_scope. [notation-overridden,parsing]
Notation "[ rel _ _ in _ | _ ]" was already used in scope fun_scope. [notation-overridden,parsing]
Notation "[ rel _ _ in _ ]" was already used in scope fun_scope. [notation-overridden,parsing]
Notation "_ + _" was already used in scope nat_scope. [notation-overridden,parsing]
Notation "_ - _" was already used in scope nat_scope. [notation-overridden,parsing]
Notation "_ <= _" was already used in scope nat_scope. [notation-overridden,parsing]
Notation "_ < _" was already used in scope nat_scope. [notation-overridden,parsing]
Notation "_ >= _" was already used in scope nat_scope. [notation-overridden,parsing]
Notation "_ > _" was already used in scope nat_scope. [notation-overridden,parsing]
Notation "_ <= _ <= _" was already used in scope nat_scope. [notation-overridden,parsing]
Notation "_ < _ <= _" was already used in scope nat_scope. [notation-overridden,parsing]
Notation "_ <= _ < _" was already used in scope nat_scope. [notation-overridden,parsing]
Notation "_ < _ < _" was already used in scope nat_scope. [notation-overridden,parsing]
Notation "_ * _" was already used in scope nat_scope. [notation-overridden,parsing]
Notation "[ rel _ _ | _ ]" was already used in scope fun_scope. [notation-overridden,parsing]
Notation "[ rel _ _ : _ | _ ]" was already used in scope fun_scope. [notation-overridden,parsing]
Notation "[ rel _ _ in _ & _ | _ ]" was already used in scope fun_scope. [notation-overridden,parsing]
Notation "[ rel _ _ in _ & _ ]" was already used in scope fun_scope. [notation-overridden,parsing]
Notation "[ rel _ _ in _ | _ ]" was already used in scope fun_scope. [notation-overridden,parsing]
Notation "[ rel _ _ in _ ]" was already used in scope fun_scope. [notation-overridden,parsing]
Notation "[ rel _ _ | _ ]" was already used in scope fun_scope. [notation-overridden,parsing]
Notation "[ rel _ _ : _ | _ ]" was already used in scope fun_scope. [notation-overridden,parsing]
Notation "[ rel _ _ in _ & _ | _ ]" was already used in scope fun_scope. [notation-overridden,parsing]
Notation "[ rel _ _ in _ & _ ]" was already used in scope fun_scope. [notation-overridden,parsing]
Notation "[ rel _ _ in _ | _ ]" was already used in scope fun_scope. [notation-overridden,parsing]
Notation "[ rel _ _ in _ ]" was already used in scope fun_scope. [notation-overridden,parsing]
Require Export prosa.analysis.abstract.search_space.
Notation "[ rel _ _ | _ ]" was already used in scope fun_scope. [notation-overridden,parsing]
Notation "[ rel _ _ : _ | _ ]" was already used in scope fun_scope. [notation-overridden,parsing]
Notation "[ rel _ _ in _ & _ | _ ]" was already used in scope fun_scope. [notation-overridden,parsing]
Notation "[ rel _ _ in _ & _ ]" was already used in scope fun_scope. [notation-overridden,parsing]
Notation "[ rel _ _ in _ | _ ]" was already used in scope fun_scope. [notation-overridden,parsing]
Notation "[ rel _ _ in _ ]" was already used in scope fun_scope. [notation-overridden,parsing]
Notation "[ rel _ _ | _ ]" was already used in scope fun_scope. [notation-overridden,parsing]
Notation "[ rel _ _ : _ | _ ]" was already used in scope fun_scope. [notation-overridden,parsing]
Notation "[ rel _ _ in _ & _ | _ ]" was already used in scope fun_scope. [notation-overridden,parsing]
Notation "[ rel _ _ in _ & _ ]" was already used in scope fun_scope. [notation-overridden,parsing]
Notation "[ rel _ _ in _ | _ ]" was already used in scope fun_scope. [notation-overridden,parsing]
Notation "[ rel _ _ in _ ]" was already used in scope fun_scope. [notation-overridden,parsing]
(** * Abstract Response-Time Analysis *) (** In this module, we propose the general framework for response-time analysis (RTA) of uni-processor scheduling of real-time tasks with arbitrary arrival models. *) (** We prove that the maximum (with respect to the set of offsets) among the solutions of the response-time bound recurrence is a response time bound for [tsk]. Note that in this section we do not rely on any hypotheses about job sequentiality. *) Section Abstract_RTA. (** Consider any type of tasks ... *) Context {Task : TaskType}. Context `{TaskCost Task}. Context `{TaskRunToCompletionThreshold Task}. (** ... and any type of jobs associated with these tasks. *) Context {Job : JobType}. Context `{JobTask Job Task}. Context {JA : JobArrival Job}. Context {JC : JobCost Job}. Context `{JobPreemptable Job}. (** Consider any kind of uni-service ideal processor state model. *) Context {PState : ProcessorState Job}. Hypothesis H_ideal_progress_proc_model : ideal_progress_proc_model PState. Hypothesis H_unit_service_proc_model : unit_service_proc_model PState. (** Consider any arrival sequence with consistent, non-duplicate arrivals... *) Variable arr_seq : arrival_sequence Job. Hypothesis H_arrival_times_are_consistent : consistent_arrival_times arr_seq. Hypothesis H_arr_seq_is_a_set : arrival_sequence_uniq arr_seq. (** Next, consider any 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 a task set ts... *) Variable ts : list Task. (** ... and a task [tsk] of ts that is to be analyzed. *) Variable tsk : Task. Hypothesis H_tsk_in_ts : tsk \in ts. (** Consider a valid preemption model... *) Hypothesis H_valid_preemption_model: valid_preemption_model arr_seq sched. (** ...and a valid task run-to-completion threshold function. That is, [task_rtct tsk] is (1) no bigger than [tsk]'s cost, (2) for any job of task [tsk] [job_rtct] is bounded by [task_rtct]. *) Hypothesis H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk. (** Let's define some local names for clarity. *) Let work_conserving := work_conserving arr_seq sched. Let busy_intervals_are_bounded_by := busy_intervals_are_bounded_by arr_seq sched tsk. Let job_interference_is_bounded_by := job_interference_is_bounded_by arr_seq sched tsk. (** Assume we are provided with abstract functions for interference and interfering workload. *) Variable interference : Job -> instant -> bool. Variable interfering_workload : Job -> instant -> duration. (** We assume that the scheduler is work-conserving. *) Hypothesis H_work_conserving : work_conserving interference interfering_workload. (** For simplicity, let's define some local names. *) Let cumul_interference := cumul_interference interference. Let cumul_interfering_workload := cumul_interfering_workload interfering_workload. Let busy_interval := busy_interval sched interference interfering_workload. Let response_time_bounded_by := task_response_time_bound arr_seq sched. (** Let L be a constant which bounds any busy interval of task [tsk]. *) Variable L : duration. Hypothesis H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L. (** Next, assume that interference_bound_function is a bound on the interference incurred by jobs of task [tsk]. *) Variable interference_bound_function : Task -> duration -> duration -> duration. Hypothesis H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function. (** For simplicity, let's define a local name for the search space. *) Let is_in_search_space A := is_in_search_space tsk L interference_bound_function A. (** Consider any value [R] that upper-bounds the solution of each response-time recurrence, i.e., for any relative arrival time [A] in the search space, there exists a corresponding solution [F] such that [R >= F + (task_cost tsk - task_rtct tsk)]. *) Variable R: nat. Hypothesis H_R_is_maximum: forall A, is_in_search_space A -> exists F, A + F >= task_rtct tsk + interference_bound_function tsk A (A + F) /\ R >= F + (task_cost tsk - task_rtct tsk). (** In this section we show a detailed proof of the main theorem that establishes that R is a response-time bound of task [tsk]. *) Section ProofOfTheorem. (** Consider any job j of [tsk] with positive cost. *) 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. (** Assume we have a busy interval <<[t1, t2)>> of job j that is bounded by L. *) Variable t1 t2: instant. Hypothesis H_busy_interval: busy_interval j t1 t2. (** Let's define A as a relative arrival time of job j (with respect to time t1). *) Let A := job_arrival j - t1. (** In order to prove that R is a response-time bound of job j, we use hypothesis H_R_is_maximum. Note that the relative arrival time (A) is not necessarily from the search space. However, earlier we have proven that for any A there exists another [A_sp] from the search space that shares the same IBF value. Moreover, we've also shown that there exists an [F_sp] such that [F_sp] is a solution of the response time recurrence for parameter [A_sp]. Thus, despite the fact that the relative arrival time may not lie in the search space, we can still use the assumption H_R_is_maximum. *) (** More formally, consider any [A_sp] and [F_sp] such that:.. *) Variable A_sp F_sp : duration. (** (a) [A_sp] is less than or equal to [A]... *) Hypothesis H_A_gt_Asp : A_sp <= A. (** (b) [interference_bound_function(A, x)] is equal to [interference_bound_function(A_sp, x)] for all [x] less than [L]... *) Hypothesis H_equivalent : are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L. (** (c) [A_sp] is in the search space, ... *) Hypothesis H_Asp_is_in_search_space : is_in_search_space A_sp. (** (d) [A_sp + F_sp] is a solution of the response time recurrence... *) Hypothesis H_Asp_Fsp_fixpoint : A_sp + F_sp >= task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp). (** (e) and finally, [F_sp + (task_last - ε)] is no greater than R. *) Hypothesis H_R_gt_Fsp : R >= F_sp + (task_cost tsk - task_rtct tsk). (** In this section, we consider the case where the solution is so large that the value of [t1 + A_sp + F_sp] goes beyond the busy interval. Although this case may be impossible in some scenarios, it can be easily proven, since any job that completes by the end of the busy interval remains completed. *) Section FixpointOutsideBusyInterval. (** By assumption, suppose that t2 is less than or equal to [t1 + A_sp + F_sp]. *) Hypothesis H_big_fixpoint_solution : t2 <= t1 + (A_sp + F_sp). (** Then we prove that [job_arrival j + R] is no less than [t2]. *)
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_big_fixpoint_solution: t2 <= t1 + (A_sp + F_sp)

t2 <= job_arrival j + R
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_big_fixpoint_solution: t2 <= t1 + (A_sp + F_sp)

t2 <= job_arrival j + R
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_big_fixpoint_solution: t2 <= t1 + (A_sp + F_sp)
GT: t1 <= job_arrival j
LT: job_arrival j < t2
QT1: quiet_time sched interference interfering_workload j t1
NTQ: forall t : nat, t1 < t < t2 -> ~ quiet_time sched interference interfering_workload j t
QT2: quiet_time sched interference interfering_workload j t2

t2 <= job_arrival j + R
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_big_fixpoint_solution: t2 <= t1 + (A_sp + F_sp)
GT: t1 <= job_arrival j
LT: job_arrival j < t2
QT1: quiet_time sched interference interfering_workload j t1
NTQ: forall t : nat, t1 < t < t2 -> ~ quiet_time sched interference interfering_workload j t
QT2: quiet_time sched interference interfering_workload j t2

t1 + (A_sp + F_sp) <= job_arrival j + R
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_big_fixpoint_solution: t2 <= t1 + (A_sp + F_sp)
GT: t1 <= job_arrival j
LT: job_arrival j < t2
QT1: quiet_time sched interference interfering_workload j t1
NTQ: forall t : nat, t1 < t < t2 -> ~ quiet_time sched interference interfering_workload j t
QT2: quiet_time sched interference interfering_workload j t2

t1 + (A_sp + F_sp) <= t1 + A + F_sp
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_big_fixpoint_solution: t2 <= t1 + (A_sp + F_sp)
GT: t1 <= job_arrival j
LT: job_arrival j < t2
QT1: quiet_time sched interference interfering_workload j t1
NTQ: forall t : nat, t1 < t < t2 -> ~ quiet_time sched interference interfering_workload j t
QT2: quiet_time sched interference interfering_workload j t2
t1 + A + F_sp <= job_arrival j + R
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_big_fixpoint_solution: t2 <= t1 + (A_sp + F_sp)
GT: t1 <= job_arrival j
LT: job_arrival j < t2
QT1: quiet_time sched interference interfering_workload j t1
NTQ: forall t : nat, t1 < t < t2 -> ~ quiet_time sched interference interfering_workload j t
QT2: quiet_time sched interference interfering_workload j t2

t1 + (A_sp + F_sp) <= t1 + A + F_sp
by rewrite !addnA leq_add2r leq_add2l.
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_big_fixpoint_solution: t2 <= t1 + (A_sp + F_sp)
GT: t1 <= job_arrival j
LT: job_arrival j < t2
QT1: quiet_time sched interference interfering_workload j t1
NTQ: forall t : nat, t1 < t < t2 -> ~ quiet_time sched interference interfering_workload j t
QT2: quiet_time sched interference interfering_workload j t2

t1 + A + F_sp <= job_arrival j + R
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_big_fixpoint_solution: t2 <= t1 + (A_sp + F_sp)
GT: t1 <= job_arrival j
LT: job_arrival j < t2
QT1: quiet_time sched interference interfering_workload j t1
NTQ: forall t : nat, t1 < t < t2 -> ~ quiet_time sched interference interfering_workload j t
QT2: quiet_time sched interference interfering_workload j t2

job_arrival j + F_sp <= job_arrival j + R
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_big_fixpoint_solution: t2 <= t1 + (A_sp + F_sp)
GT: t1 <= job_arrival j
LT: job_arrival j < t2
QT1: quiet_time sched interference interfering_workload j t1
NTQ: forall t : nat, t1 < t < t2 -> ~ quiet_time sched interference interfering_workload j t
QT2: quiet_time sched interference interfering_workload j t2

F_sp <= R
by apply leq_trans with (F_sp + (task_cost tsk - task_rtct tsk)); first rewrite leq_addr. Qed. (** But since we know that the job is completed by the end of its busy interval, we can show that job j is completed by [job arrival j + R]. *)
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_big_fixpoint_solution: t2 <= t1 + (A_sp + F_sp)

completed_by sched j (job_arrival j + R)
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_big_fixpoint_solution: t2 <= t1 + (A_sp + F_sp)

completed_by sched j (job_arrival j + R)
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_big_fixpoint_solution: t2 <= t1 + (A_sp + F_sp)
GT: t1 <= job_arrival j
LT: job_arrival j < t2
QT1: quiet_time sched interference interfering_workload j t1
NTQ: forall t : nat, t1 < t < t2 -> ~ quiet_time sched interference interfering_workload j t
QT2: quiet_time sched interference interfering_workload j t2

completed_by sched j (job_arrival j + R)
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_big_fixpoint_solution: t2 <= t1 + (A_sp + F_sp)
GT: t1 <= job_arrival j
LT: job_arrival j < t2
QT1: quiet_time sched interference interfering_workload j t1
NTQ: forall t : nat, t1 < t < t2 -> ~ quiet_time sched interference interfering_workload j t
QT2: quiet_time sched interference interfering_workload j t2

t2 <= job_arrival j + R
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_big_fixpoint_solution: t2 <= t1 + (A_sp + F_sp)
GT: t1 <= job_arrival j
LT: job_arrival j < t2
QT1: quiet_time sched interference interfering_workload j t1
NTQ: forall t : nat, t1 < t < t2 -> ~ quiet_time sched interference interfering_workload j t
QT2: quiet_time sched interference interfering_workload j t2
completed_by sched j t2
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_big_fixpoint_solution: t2 <= t1 + (A_sp + F_sp)
GT: t1 <= job_arrival j
LT: job_arrival j < t2
QT1: quiet_time sched interference interfering_workload j t1
NTQ: forall t : nat, t1 < t < t2 -> ~ quiet_time sched interference interfering_workload j t
QT2: quiet_time sched interference interfering_workload j t2

completed_by sched j t2
eapply job_completes_within_busy_interval; eauto 2. Qed. End FixpointOutsideBusyInterval. (** In this section, we consider the complementary case where [t1 + A_sp + F_sp] lies inside the busy interval. *) Section FixpointInsideBusyInterval. (** So, assume that [t1 + A_sp + F_sp] is less than t2. *) Hypothesis H_small_fixpoint_solution : t1 + (A_sp + F_sp) < t2. (** Next, let's consider two other cases: *) (** CASE 1: the value of the fix-point is no less than the relative arrival time of job [j]. *) Section FixpointIsNoLessThanArrival. (** Suppose that [A_sp + F_sp] is no less than relative arrival of job [j]. *) Hypothesis H_fixpoint_is_no_less_than_relative_arrival_of_j : A <= A_sp + F_sp. (** In this section, we prove that the fact that job [j] is not completed by time [job_arrival j + R] leads to a contradiction. Which in turn implies that the opposite is true -- job [j] completes by time [job_arrival j + R]. *) Section ProofByContradiction. (** Recall that by lemma "solution_for_A_exists" there is a solution [F] of the response-time recurrence for the given relative arrival time [A] (which is not necessarily from the search space). *) (** Thus, consider a constant [F] such that:.. *) Variable F : duration. (** (a) the sum of [A_sp] and [F_sp] is equal to the sum of [A] and [F]... *) Hypothesis H_Asp_Fsp_eq_A_F : A_sp + F_sp = A + F. (** (b) [F] is at mo1st [F_sp]... *) Hypothesis H_F_le_Fsp : F <= F_sp. (** (c) and [A + F] is a solution for the response-time recurrence for [A]. *) Hypothesis H_A_F_fixpoint: A + F >= task_rtct tsk + interference_bound_function tsk A (A + F). (** Next, we assume that job [j] is not completed by time [job_arrival j + R]. *) Hypothesis H_j_not_completed : ~~ completed_by sched j (job_arrival j + R). (** Some additional reasoning is required since the term [task_cost tsk - task_rtct tsk] does not necessarily bound the term [job_cost j - job_rtct j]. That is, a job can have a small run-to-completion threshold, thereby becoming non-preemptive much earlier than guaranteed according to task run-to-completion threshold, while simultaneously executing the last non-preemptive segment that is longer than [task_cost tsk - task_rtct tsk] (e.g., this is possible in the case of floating non-preemptive sections). In this case we cannot directly apply lemma "j_receives_at_least_run_to_completion_threshold". Therefore we introduce two temporal notions of the last non-preemptive region of job j and an execution optimism. We use these notions inside this proof, so we define them only locally. *) (** Let the last non-preemptive region of job [j] (last) be the difference between the cost of the job and the [j]'s run-to-completion threshold (i.e. [job_cost j - job_rtct j]). We know that after j has reached its run-to-completion threshold, it will additionally be executed [job_last j] units of time. *) Let job_last := job_cost j - job_rtct j. (** And let execution optimism (optimism) be the difference between the [tsk]'s run-to-completion threshold and the [j]'s run-to-completion threshold (i.e. [task_rtct - job_rtct]). Intuitively, optimism is how much earlier job j has received its run-to-completion threshold than it could at worst. *) Let optimism := task_rtct tsk - job_rtct j. (** From lemma "j_receives_at_least_run_to_completion_threshold" with parameters [progress_of_job := job_rtct j] and [delta := (A + F) - optimism)] we know that service of [j] by time [t1 + (A + F) - optimism] is no less than [job_rtct j]. Hence, job [j] is completed by time [t1 + (A + F) - optimism + last]. *)
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
H_j_not_completed: ~~ completed_by sched j (job_arrival j + R)
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat

completed_by sched j (t1 + (A + F - optimism) + job_last)
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
H_j_not_completed: ~~ completed_by sched j (job_arrival j + R)
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat

completed_by sched j (t1 + (A + F - optimism) + job_last)
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
H_j_not_completed: ~~ completed_by sched j (job_arrival j + R)
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
GT: t1 <= job_arrival j
LT: job_arrival j < t2

completed_by sched j (t1 + (A + F - optimism) + job_last)
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
H_j_not_completed: ~~ completed_by sched j (job_arrival j + R)
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
GT: t1 <= job_arrival j
LT: job_arrival j < t2
ESERV: forall (j0 : JobArrival Job) (j1 : JobCost Job), ideal_progress_proc_model PState -> unit_service_proc_model PState -> definitions.work_conserving arr_seq sched interference interfering_workload -> arrives_in arr_seq j -> job_cost_positive j -> definitions.busy_interval sched interference interfering_workload j t1 t2 -> forall (j2 : JobCost Job) (j3 : JobPreemptable Job), job_rtct j <= job_cost j -> job_rtct j + definitions.cumul_interference interference j t1 (t1 + (A + F - optimism)) <= A + F - optimism -> job_rtct j <= service sched j (t1 + (A + F - optimism))

completed_by sched j (t1 + (A + F - optimism) + job_last)
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
H_j_not_completed: ~~ completed_by sched j (job_arrival j + R)
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
GT: t1 <= job_arrival j
LT: job_arrival j < t2
ESERV: ideal_progress_proc_model PState -> unit_service_proc_model PState -> definitions.work_conserving arr_seq sched interference interfering_workload -> arrives_in arr_seq j -> job_cost_positive j -> definitions.busy_interval sched interference interfering_workload j t1 t2 -> forall (j0 : JobCost Job) (j1 : JobPreemptable Job), job_rtct j <= job_cost j -> job_rtct j + definitions.cumul_interference interference j t1 (t1 + (A + F - optimism)) <= A + F - optimism -> job_rtct j <= service sched j (t1 + (A + F - optimism))

completed_by sched j (t1 + (A + F - optimism) + job_last)
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
H_j_not_completed: ~~ completed_by sched j (job_arrival j + R)
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
GT: t1 <= job_arrival j
LT: job_arrival j < t2
ESERV: forall (j0 : JobCost Job) (j1 : JobPreemptable Job), job_rtct j <= job_cost j -> job_rtct j + definitions.cumul_interference interference j t1 (t1 + (A + F - optimism)) <= A + F - optimism -> job_rtct j <= service sched j (t1 + (A + F - optimism))

completed_by sched j (t1 + (A + F - optimism) + job_last)
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
H_j_not_completed: ~~ completed_by sched j (job_arrival j + R)
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
GT: t1 <= job_arrival j
LT: job_arrival j < t2
ESERV: job_rtct j <= job_cost j -> job_rtct j + definitions.cumul_interference interference j t1 (t1 + (A + F - optimism)) <= A + F - optimism -> job_rtct j <= service sched j (t1 + (A + F - optimism))

completed_by sched j (t1 + (A + F - optimism) + job_last)
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
H_j_not_completed: ~~ completed_by sched j (job_arrival j + R)
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
GT: t1 <= job_arrival j
LT: job_arrival j < t2
ESERV: job_rtct j <= job_cost j -> job_rtct j + definitions.cumul_interference interference j t1 (t1 + (A + F - optimism)) <= A + F - optimism -> job_rtct j <= service sched j (t1 + (A + F - optimism))

job_rtct j <= job_cost j
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
H_j_not_completed: ~~ completed_by sched j (job_arrival j + R)
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
GT: t1 <= job_arrival j
LT: job_arrival j < t2
ESERV: job_rtct j + definitions.cumul_interference interference j t1 (t1 + (A + F - optimism)) <= A + F - optimism -> job_rtct j <= service sched j (t1 + (A + F - optimism))
job_rtct j + definitions.cumul_interference interference j t1 (t1 + (A + F - optimism)) <= A + F - optimism
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
H_j_not_completed: ~~ completed_by sched j (job_arrival j + R)
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
GT: t1 <= job_arrival j
LT: job_arrival j < t2
ESERV: job_rtct j <= service sched j (t1 + (A + F - optimism))
completed_by sched j (t1 + (A + F - optimism) + job_last)
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
H_j_not_completed: ~~ completed_by sched j (job_arrival j + R)
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
GT: t1 <= job_arrival j
LT: job_arrival j < t2
ESERV: job_rtct j <= job_cost j -> job_rtct j + definitions.cumul_interference interference j t1 (t1 + (A + F - optimism)) <= A + F - optimism -> job_rtct j <= service sched j (t1 + (A + F - optimism))

job_rtct j <= job_cost j
eapply job_run_to_completion_threshold_le_job_cost; eauto.
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
H_j_not_completed: ~~ completed_by sched j (job_arrival j + R)
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
GT: t1 <= job_arrival j
LT: job_arrival j < t2
ESERV: job_rtct j + definitions.cumul_interference interference j t1 (t1 + (A + F - optimism)) <= A + F - optimism -> job_rtct j <= service sched j (t1 + (A + F - optimism))

job_rtct j + definitions.cumul_interference interference j t1 (t1 + (A + F - optimism)) <= A + F - optimism
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
H_j_not_completed: ~~ completed_by sched j (job_arrival j + R)
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
GT: t1 <= job_arrival j
LT: job_arrival j < t2
ESERV: job_rtct j <= service sched j (t1 + (A + F - optimism))
completed_by sched j (t1 + (A + F - optimism) + job_last)
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
H_j_not_completed: ~~ completed_by sched j (job_arrival j + R)
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
GT: t1 <= job_arrival j
LT: job_arrival j < t2
ESERV: job_rtct j + definitions.cumul_interference interference j t1 (t1 + (A + F - optimism)) <= A + F - optimism -> job_rtct j <= service sched j (t1 + (A + F - optimism))

job_rtct j + definitions.cumul_interference interference j t1 (t1 + (A + F - optimism)) <= A + F - optimism
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
H_j_not_completed: ~~ completed_by sched j (job_arrival j + R)
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
GT: t1 <= job_arrival j
LT: job_arrival j < t2
ESERV: job_rtct j + definitions.cumul_interference interference j t1 (t1 + (A + F - optimism)) <= A + F - optimism -> job_rtct j <= service sched j (t1 + (A + F - optimism))

job_rtct j + definitions.cumul_interference interference j t1 (t1 + (A + F - optimism)) <= task_rtct tsk + interference_bound_function tsk A (A + F) - optimism
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
H_j_not_completed: ~~ completed_by sched j (job_arrival j + R)
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
GT: t1 <= job_arrival j
LT: job_arrival j < t2
ESERV: job_rtct j + definitions.cumul_interference interference j t1 (t1 + (A + F - optimism)) <= A + F - optimism -> job_rtct j <= service sched j (t1 + (A + F - optimism))

job_rtct j + \sum_(t1 <= t < t1 + (A + F - optimism)) interference j t <= task_rtct tsk + interference_bound_function tsk A (A + F) - optimism
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
H_j_not_completed: ~~ completed_by sched j (job_arrival j + R)
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
GT: t1 <= job_arrival j
LT: job_arrival j < t2
ESERV: job_rtct j + definitions.cumul_interference interference j t1 (t1 + (A + F - optimism)) <= A + F - optimism -> job_rtct j <= service sched j (t1 + (A + F - optimism))

job_rtct j + \sum_(t1 <= t < t1 + (A + F - optimism)) interference j t <= task_rtct tsk - optimism + interference_bound_function tsk A (A + F)
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
H_j_not_completed: ~~ completed_by sched j (job_arrival j + R)
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
GT: t1 <= job_arrival j
LT: job_arrival j < t2
ESERV: job_rtct j + definitions.cumul_interference interference j t1 (t1 + (A + F - optimism)) <= A + F - optimism -> job_rtct j <= service sched j (t1 + (A + F - optimism))

job_rtct j + \sum_(t1 <= t < t1 + (A + F - optimism)) interference j t <= task_rtct tsk - (task_rtct tsk - job_rtct j) + interference_bound_function tsk A (A + F)
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
H_j_not_completed: ~~ completed_by sched j (job_arrival j + R)
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
GT: t1 <= job_arrival j
LT: job_arrival j < t2
ESERV: job_rtct j + definitions.cumul_interference interference j t1 (t1 + (A + F - optimism)) <= A + F - optimism -> job_rtct j <= service sched j (t1 + (A + F - optimism))

job_rtct j + \sum_(t1 <= t < t1 + (A + F - optimism)) interference j t <= job_rtct j + interference_bound_function tsk A (A + F)
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
H_j_not_completed: ~~ completed_by sched j (job_arrival j + R)
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
GT: t1 <= job_arrival j
LT: job_arrival j < t2
ESERV: job_rtct j + definitions.cumul_interference interference j t1 (t1 + (A + F - optimism)) <= A + F - optimism -> job_rtct j <= service sched j (t1 + (A + F - optimism))

\sum_(t1 <= t < t1 + (A + F - optimism)) interference j t <= interference_bound_function tsk A (A + F)
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
H_j_not_completed: ~~ completed_by sched j (job_arrival j + R)
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
GT: t1 <= job_arrival j
LT: job_arrival j < t2
ESERV: job_rtct j + definitions.cumul_interference interference j t1 (t1 + (A + F - optimism)) <= A + F - optimism -> job_rtct j <= service sched j (t1 + (A + F - optimism))

\sum_(t1 <= t < t1 + (A + F - optimism)) interference j t <= cumul_interference j t1 (t1 + (A + F))
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
H_j_not_completed: ~~ completed_by sched j (job_arrival j + R)
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
GT: t1 <= job_arrival j
LT: job_arrival j < t2
ESERV: job_rtct j + definitions.cumul_interference interference j t1 (t1 + (A + F - optimism)) <= A + F - optimism -> job_rtct j <= service sched j (t1 + (A + F - optimism))
cumul_interference j t1 (t1 + (A + F)) <= interference_bound_function tsk A (A + F)
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
H_j_not_completed: ~~ completed_by sched j (job_arrival j + R)
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
GT: t1 <= job_arrival j
LT: job_arrival j < t2
ESERV: job_rtct j + definitions.cumul_interference interference j t1 (t1 + (A + F - optimism)) <= A + F - optimism -> job_rtct j <= service sched j (t1 + (A + F - optimism))

\sum_(t1 <= t < t1 + (A + F - optimism)) interference j t <= cumul_interference j t1 (t1 + (A + F))
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
H_j_not_completed: ~~ completed_by sched j (job_arrival j + R)
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
GT: t1 <= job_arrival j
LT: job_arrival j < t2
ESERV: job_rtct j + definitions.cumul_interference interference j t1 (t1 + (A + F - optimism)) <= A + F - optimism -> job_rtct j <= service sched j (t1 + (A + F - optimism))

\sum_(t1 <= t < t1 + (A + F - optimism)) interference j t <= \sum_(t1 <= i < t1 + (A + F - optimism)) interference j i + \sum_(t1 + (A + F - optimism) <= i < t1 + (A + F)) interference j i
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
H_j_not_completed: ~~ completed_by sched j (job_arrival j + R)
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
GT: t1 <= job_arrival j
LT: job_arrival j < t2
ESERV: job_rtct j + definitions.cumul_interference interference j t1 (t1 + (A + F - optimism)) <= A + F - optimism -> job_rtct j <= service sched j (t1 + (A + F - optimism))
t1 <= t1 + (A + F - optimism)
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
H_j_not_completed: ~~ completed_by sched j (job_arrival j + R)
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
GT: t1 <= job_arrival j
LT: job_arrival j < t2
ESERV: job_rtct j + definitions.cumul_interference interference j t1 (t1 + (A + F - optimism)) <= A + F - optimism -> job_rtct j <= service sched j (t1 + (A + F - optimism))
t1 + (A + F - optimism) <= t1 + (A + F)
all: by lia.
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
H_j_not_completed: ~~ completed_by sched j (job_arrival j + R)
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
GT: t1 <= job_arrival j
LT: job_arrival j < t2
ESERV: job_rtct j + definitions.cumul_interference interference j t1 (t1 + (A + F - optimism)) <= A + F - optimism -> job_rtct j <= service sched j (t1 + (A + F - optimism))

cumul_interference j t1 (t1 + (A + F)) <= interference_bound_function tsk A (A + F)
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
H_j_not_completed: ~~ completed_by sched j (job_arrival j + R)
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
GT: t1 <= job_arrival j
LT: job_arrival j < t2
ESERV: job_rtct j + definitions.cumul_interference interference j t1 (t1 + (A + F - optimism)) <= A + F - optimism -> job_rtct j <= service sched j (t1 + (A + F - optimism))

cumul_interference j t1 (t1 + (A + F)) <= interference_bound_function tsk A (A + F)
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
H_j_not_completed: ~~ completed_by sched j (job_arrival j + R)
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
GT: t1 <= job_arrival j
LT: job_arrival j < t2
ESERV: job_rtct j + definitions.cumul_interference interference j t1 (t1 + (A + F - optimism)) <= A + F - optimism -> job_rtct j <= service sched j (t1 + (A + F - optimism))

t1 + (A + F) < t2
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
H_j_not_completed: ~~ completed_by sched j (job_arrival j + R)
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
GT: t1 <= job_arrival j
LT: job_arrival j < t2
ESERV: job_rtct j + definitions.cumul_interference interference j t1 (t1 + (A + F - optimism)) <= A + F - optimism -> job_rtct j <= service sched j (t1 + (A + F - optimism))
~~ completed_by sched j (t1 + (A + F))
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
H_j_not_completed: ~~ completed_by sched j (job_arrival j + R)
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
GT: t1 <= job_arrival j
LT: job_arrival j < t2
ESERV: job_rtct j + definitions.cumul_interference interference j t1 (t1 + (A + F - optimism)) <= A + F - optimism -> job_rtct j <= service sched j (t1 + (A + F - optimism))

t1 + (A + F) < t2
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
H_j_not_completed: ~~ completed_by sched j (job_arrival j + R)
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
GT: t1 <= job_arrival j
LT: job_arrival j < t2
ESERV: job_rtct j + definitions.cumul_interference interference j t1 (t1 + (A + F - optimism)) <= A + F - optimism -> job_rtct j <= service sched j (t1 + (A + F - optimism))
~~ completed_by sched j (t1 + (A + F))
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
H_j_not_completed: ~~ completed_by sched j (job_arrival j + R)
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
GT: t1 <= job_arrival j
LT: job_arrival j < t2
ESERV: job_rtct j + definitions.cumul_interference interference j t1 (t1 + (A + F - optimism)) <= A + F - optimism -> job_rtct j <= service sched j (t1 + (A + F - optimism))

~~ completed_by sched j (t1 + (A + F))
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
H_j_not_completed: ~~ completed_by sched j (job_arrival j + R)
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
GT: t1 <= job_arrival j
LT: job_arrival j < t2
ESERV: job_rtct j + definitions.cumul_interference interference j t1 (t1 + (A + F - optimism)) <= A + F - optimism -> job_rtct j <= service sched j (t1 + (A + F - optimism))

~~ completed_by sched j (t1 + (A + F))
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
H_j_not_completed: ~~ completed_by sched j (job_arrival j + R)
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
GT: t1 <= job_arrival j
LT: job_arrival j < t2
ESERV: job_rtct j + definitions.cumul_interference interference j t1 (t1 + (A + F - optimism)) <= A + F - optimism -> job_rtct j <= service sched j (t1 + (A + F - optimism))
CONTR: completed_by sched j (t1 + (A + F))

False
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
H_j_not_completed: ~~ completed_by sched j (job_arrival j + R)
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
GT: t1 <= job_arrival j
LT: job_arrival j < t2
ESERV: job_rtct j + definitions.cumul_interference interference j t1 (t1 + (A + F - optimism)) <= A + F - optimism -> job_rtct j <= service sched j (t1 + (A + F - optimism))
CONTR: completed_by sched j (t1 + (A + F))

completed_by sched j (job_arrival j + R)
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
H_j_not_completed: ~~ completed_by sched j (job_arrival j + R)
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
GT: t1 <= job_arrival j
LT: job_arrival j < t2
ESERV: job_rtct j + definitions.cumul_interference interference j t1 (t1 + (A + F - optimism)) <= A + F - optimism -> job_rtct j <= service sched j (t1 + (A + F - optimism))
CONTR: completed_by sched j (t1 + (A + F))

t1 + (A + F) <= job_arrival j + R
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
H_j_not_completed: ~~ completed_by sched j (job_arrival j + R)
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
GT: t1 <= job_arrival j
LT: job_arrival j < t2
ESERV: job_rtct j + definitions.cumul_interference interference j t1 (t1 + (A + F - optimism)) <= A + F - optimism -> job_rtct j <= service sched j (t1 + (A + F - optimism))
CONTR: completed_by sched j (t1 + (A + F))

F <= R
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
H_j_not_completed: ~~ completed_by sched j (job_arrival j + R)
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
GT: t1 <= job_arrival j
LT: job_arrival j < t2
ESERV: job_rtct j + definitions.cumul_interference interference j t1 (t1 + (A + F - optimism)) <= A + F - optimism -> job_rtct j <= service sched j (t1 + (A + F - optimism))
CONTR: completed_by sched j (t1 + (A + F))

F_sp <= R
by lia. }
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
H_j_not_completed: ~~ completed_by sched j (job_arrival j + R)
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
GT: t1 <= job_arrival j
LT: job_arrival j < t2
ESERV: job_rtct j <= service sched j (t1 + (A + F - optimism))

completed_by sched j (t1 + (A + F - optimism) + job_last)
apply: job_completes_after_reaching_run_to_completion_threshold; eauto 2. Qed. (** However, [t1 + (A + F) - optimism + last ≤ job_arrival j + R]! To prove this fact we need a few auxiliary inequalities that are needed because we use the truncated subtraction in our development. So, for example [a + (b - c) = a + b - c] only if [b ≥ c]. *) Section AuxiliaryInequalities. (** Recall that we consider a busy interval of a job [j], and [j] has arrived [A] time units after the beginning the busy interval. From basic properties of a busy interval it follows that job [j] incurs interference at any time instant t ∈ <<[t1, t1 + A)>>. Therefore [interference_bound_function(tsk, A, A + F)] is at least [A]. *)
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
H_j_not_completed: ~~ completed_by sched j (job_arrival j + R)
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat

A <= interference_bound_function tsk A (A + F)
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
H_j_not_completed: ~~ completed_by sched j (job_arrival j + R)
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat

A <= interference_bound_function tsk A (A + F)
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
CONTRc: ~ completed_by sched j (job_arrival j + R)

A <= interference_bound_function tsk A (A + F)
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
CONTRc: ~ completed_by sched j (job_arrival j + R)
GT: t1 <= job_arrival j
LT: job_arrival j < t2

A <= interference_bound_function tsk A (A + F)
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
CONTRc: ~ completed_by sched j (job_arrival j + R)
GT: t1 <= job_arrival j
LT: job_arrival j < t2

A <= cumul_interference j t1 (t1 + (A + F))
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
CONTRc: ~ completed_by sched j (job_arrival j + R)
GT: t1 <= job_arrival j
LT: job_arrival j < t2
cumul_interference j t1 (t1 + (A + F)) <= interference_bound_function tsk A (A + F)
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
CONTRc: ~ completed_by sched j (job_arrival j + R)
GT: t1 <= job_arrival j
LT: job_arrival j < t2

A <= cumul_interference j t1 (t1 + (A + F))
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
CONTRc: ~ completed_by sched j (job_arrival j + R)
GT: t1 <= job_arrival j
LT: job_arrival j < t2

A <= definitions.cumul_interference interference j t1 (t1 + (A + F))
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
CONTRc: ~ completed_by sched j (job_arrival j + R)
GT: t1 <= job_arrival j
LT: job_arrival j < t2

A <= \sum_(t1 <= t < t1 + A) interference j t
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
CONTRc: ~ completed_by sched j (job_arrival j + R)
GT: t1 <= job_arrival j
LT: job_arrival j < t2

A <= \sum_(t1 <= t < t1 + A) interference j t
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
CONTRc: ~ completed_by sched j (job_arrival j + R)
GT: t1 <= job_arrival j
LT: job_arrival j < t2

\sum_(t1 <= x < t1 + A) 1 <= \sum_(t1 <= t < t1 + A) interference j t
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
CONTRc: ~ completed_by sched j (job_arrival j + R)
GT: t1 <= job_arrival j
LT: job_arrival j < t2

\sum_(t1 <= i < t1 + A | (t1 <= i < t1 + A) && true) 1 <= \sum_(t1 <= i < t1 + A | (t1 <= i < t1 + A) && true) interference j i
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
CONTRc: ~ completed_by sched j (job_arrival j + R)
GT: t1 <= job_arrival j
LT: job_arrival j < t2

forall i : nat, (t1 <= i < t1 + A) && true -> 0 < interference j i
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
CONTRc: ~ completed_by sched j (job_arrival j + R)
GT: t1 <= job_arrival j
LT: job_arrival j < t2
t: nat
NEQ1: t1 <= t
NEQ2: t < t1 + A

0 < interference j t
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
CONTRc: ~ completed_by sched j (job_arrival j + R)
GT: t1 <= job_arrival j
LT: job_arrival j < t2
t: nat
NEQ1: t1 <= t
NEQ2: t < t1 + A

interference j t
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
CONTRc: ~ completed_by sched j (job_arrival j + R)
GT: t1 <= job_arrival j
LT: job_arrival j < t2
t: nat
NEQ1: t1 <= t
NEQ2: t < t1 + A
CONS: arrives_in arr_seq j -> 0 < job_cost j -> definitions.busy_interval sched interference interfering_workload j t1 t2 -> t1 <= t < t2 -> ~ interference j t <-> scheduled_at sched j t

interference j t
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
CONTRc: ~ completed_by sched j (job_arrival j + R)
GT: t1 <= job_arrival j
LT: job_arrival j < t2
t: nat
NEQ1: t1 <= t
NEQ2: t < t1 + A
CONS: t1 <= t < t2 -> ~ interference j t <-> scheduled_at sched j t

t1 <= t < t2
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
CONTRc: ~ completed_by sched j (job_arrival j + R)
GT: t1 <= job_arrival j
LT: job_arrival j < t2
t: nat
NEQ1: t1 <= t
NEQ2: t < t1 + A
CONS: ~ interference j t <-> scheduled_at sched j t
interference j t
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
CONTRc: ~ completed_by sched j (job_arrival j + R)
GT: t1 <= job_arrival j
LT: job_arrival j < t2
t: nat
NEQ1: t1 <= t
NEQ2: t < t1 + A
CONS: t1 <= t < t2 -> ~ interference j t <-> scheduled_at sched j t

t1 <= t < t2
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
CONTRc: ~ completed_by sched j (job_arrival j + R)
GT: t1 <= job_arrival j
LT: job_arrival j < t2
t: nat
NEQ1: t1 <= t
NEQ2: t < t1 + A
CONS: t1 <= t < t2 -> ~ interference j t <-> scheduled_at sched j t

t < t2
by apply leq_trans with (t1 + A); [done | lia].
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
CONTRc: ~ completed_by sched j (job_arrival j + R)
GT: t1 <= job_arrival j
LT: job_arrival j < t2
t: nat
NEQ1: t1 <= t
NEQ2: t < t1 + A
CONS: ~ interference j t <-> scheduled_at sched j t

interference j t
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
CONTRc: ~ completed_by sched j (job_arrival j + R)
GT: t1 <= job_arrival j
LT: job_arrival j < t2
t: nat
NEQ1: t1 <= t
NEQ2: t < t1 + A
CONS1: ~ interference j t -> scheduled_at sched j t

interference j t
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
CONTRc: ~ completed_by sched j (job_arrival j + R)
GT: t1 <= job_arrival j
LT: job_arrival j < t2
t: nat
NEQ1: t1 <= t
NEQ2: t < t1 + A
CONS1: ~ interference j t -> scheduled_at sched j t
CONTR: ~ interference j t

False
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
CONTRc: ~ completed_by sched j (job_arrival j + R)
GT: t1 <= job_arrival j
LT: job_arrival j < t2
t: nat
NEQ1: t1 <= t
NEQ2: t < t1 + A
SCHED: scheduled_at sched j t

False
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
CONTRc: ~ completed_by sched j (job_arrival j + R)
GT: t1 <= job_arrival j
LT: job_arrival j < t2
t: nat
NEQ1: t1 <= t
NEQ2: t < t1 + A
SCHED: has_arrived j t

False
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
CONTRc: ~ completed_by sched j (job_arrival j + R)
GT: t1 <= job_arrival j
LT: job_arrival j < t2
t: nat
NEQ1: t1 <= t
SCHED: has_arrived j t

t1 + A <= t
by rewrite subnKC. }
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
CONTRc: ~ completed_by sched j (job_arrival j + R)
GT: t1 <= job_arrival j
LT: job_arrival j < t2

cumul_interference j t1 (t1 + (A + F)) <= interference_bound_function tsk A (A + F)
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
CONTRc: ~ completed_by sched j (job_arrival j + R)
GT: t1 <= job_arrival j
LT: job_arrival j < t2

cumul_interference j t1 (t1 + (A + F)) <= interference_bound_function tsk A (A + F)
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
CONTRc: ~ completed_by sched j (job_arrival j + R)
GT: t1 <= job_arrival j
LT: job_arrival j < t2

t1 + (A + F) < t2
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
CONTRc: ~ completed_by sched j (job_arrival j + R)
GT: t1 <= job_arrival j
LT: job_arrival j < t2
~~ completed_by sched j (t1 + (A + F))
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
CONTRc: ~ completed_by sched j (job_arrival j + R)
GT: t1 <= job_arrival j
LT: job_arrival j < t2

t1 + (A + F) < t2
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
CONTRc: ~ completed_by sched j (job_arrival j + R)
GT: t1 <= job_arrival j
LT: job_arrival j < t2
~~ completed_by sched j (t1 + (A + F))
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
CONTRc: ~ completed_by sched j (job_arrival j + R)
GT: t1 <= job_arrival j
LT: job_arrival j < t2

~~ completed_by sched j (t1 + (A + F))
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
CONTRc: ~ completed_by sched j (job_arrival j + R)
GT: t1 <= job_arrival j
LT: job_arrival j < t2

~~ completed_by sched j (t1 + (A + F))
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
CONTRc: ~ completed_by sched j (job_arrival j + R)
GT: t1 <= job_arrival j
LT: job_arrival j < t2
CONTR: completed_by sched j (t1 + (A + F))

False
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
GT: t1 <= job_arrival j
LT: job_arrival j < t2
CONTR: completed_by sched j (t1 + (A + F))

completed_by sched j (job_arrival j + R)
by apply completion_monotonic with (t1 + (A + F)); [lia | done]. } Qed. (** As two trivial corollaries, we show that [tsk]'s run-to-completion threshold is at most [F_sp]... *)
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
H_j_not_completed: ~~ completed_by sched j (job_arrival j + R)
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat

task_rtct tsk <= F_sp
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
H_j_not_completed: ~~ completed_by sched j (job_arrival j + R)
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat

task_rtct tsk <= F_sp
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
H_j_not_completed: ~~ completed_by sched j (job_arrival j + R)
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
EQ: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F

task_rtct tsk <= F_sp
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
H_j_not_completed: ~~ completed_by sched j (job_arrival j + R)
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
EQ: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
L1: A <= interference_bound_function tsk A (A + F)

task_rtct tsk <= F_sp
by lia. Qed. (** ... and optimism is at most [F]. *)
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
H_j_not_completed: ~~ completed_by sched j (job_arrival j + R)
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat

optimism <= F
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
H_j_not_completed: ~~ completed_by sched j (job_arrival j + R)
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat

optimism <= F
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
H_j_not_completed: ~~ completed_by sched j (job_arrival j + R)
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
EQ: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F

optimism <= F
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
H_j_not_completed: ~~ completed_by sched j (job_arrival j + R)
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
EQ: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
L1: A <= interference_bound_function tsk A (A + F)

optimism <= F
by lia. Qed. End AuxiliaryInequalities. (** Next we show that [t1 + (A + F) - optimism + last] is at most [job_arrival j + R], which is easy to see from the following sequence of inequalities: [t1 + (A + F) - optimism + last] [≤ job_arrival j + (F - optimism) + job_last] [≤ job_arrival j + (F_sp - optimism) + job_last] [≤ job_arrival j + F_sp + (job_last - optimism)] [≤ job_arrival j + F_sp + job_cost j - task_rtct tsk] [≤ job_arrival j + F_sp + task_cost tsk - task_rtct tsk] [≤ job_arrival j + R]. *)
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
H_j_not_completed: ~~ completed_by sched j (job_arrival j + R)
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat

t1 + (A + F - optimism) + job_last <= job_arrival j + R
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
H_j_not_completed: ~~ completed_by sched j (job_arrival j + R)
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat

t1 + (A + F - optimism) + job_last <= job_arrival j + R
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
H_j_not_completed: ~~ completed_by sched j (job_arrival j + R)
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
GT: t1 <= job_arrival j
LT: job_arrival j < t2

t1 + (A + F - optimism) + job_last <= job_arrival j + R
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
H_j_not_completed: ~~ completed_by sched j (job_arrival j + R)
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
GT: t1 <= job_arrival j
LT: job_arrival j < t2
L1: task_rtct tsk <= F_sp

t1 + (A + F - optimism) + job_last <= job_arrival j + R
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
H_j_not_completed: ~~ completed_by sched j (job_arrival j + R)
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
GT: t1 <= job_arrival j
LT: job_arrival j < t2
L1: task_rtct tsk <= F_sp
L2: optimism <= F

t1 + (A + F - optimism) + job_last <= job_arrival j + R
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
H_j_not_completed: ~~ completed_by sched j (job_arrival j + R)
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
GT: t1 <= job_arrival j
LT: job_arrival j < t2
L1: task_rtct tsk <= F_sp
L2: optimism <= F

t1 + (A + F - optimism) + job_last <= job_arrival j + (F - optimism) + job_last
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
H_j_not_completed: ~~ completed_by sched j (job_arrival j + R)
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
GT: t1 <= job_arrival j
LT: job_arrival j < t2
L1: task_rtct tsk <= F_sp
L2: optimism <= F
job_arrival j + (F - optimism) + job_last <= job_arrival j + R
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
H_j_not_completed: ~~ completed_by sched j (job_arrival j + R)
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
GT: t1 <= job_arrival j
LT: job_arrival j < t2
L1: task_rtct tsk <= F_sp
L2: optimism <= F

t1 + (A + F - optimism) + job_last <= job_arrival j + (F - optimism) + job_last
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
H_j_not_completed: ~~ completed_by sched j (job_arrival j + R)
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
GT: t1 <= job_arrival j
LT: job_arrival j < t2
L1: task_rtct tsk <= F_sp
L2: optimism <= F

t1 + (A + F) - optimism <= job_arrival j + (F - optimism)
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
H_j_not_completed: ~~ completed_by sched j (job_arrival j + R)
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
GT: t1 <= job_arrival j
LT: job_arrival j < t2
L1: task_rtct tsk <= F_sp
L2: optimism <= F
optimism <= A + F
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
H_j_not_completed: ~~ completed_by sched j (job_arrival j + R)
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
GT: t1 <= job_arrival j
LT: job_arrival j < t2
L1: task_rtct tsk <= F_sp
L2: optimism <= F

t1 + (A + F) - optimism <= job_arrival j + (F - optimism)
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
H_j_not_completed: ~~ completed_by sched j (job_arrival j + R)
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
GT: t1 <= job_arrival j
LT: job_arrival j < t2
L1: task_rtct tsk <= F_sp
L2: optimism <= F
optimism <= A + F
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
H_j_not_completed: ~~ completed_by sched j (job_arrival j + R)
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
GT: t1 <= job_arrival j
LT: job_arrival j < t2
L1: task_rtct tsk <= F_sp
L2: optimism <= F

optimism <= A + F
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
H_j_not_completed: ~~ completed_by sched j (job_arrival j + R)
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
GT: t1 <= job_arrival j
LT: job_arrival j < t2
L1: task_rtct tsk <= F_sp
L2: optimism <= F

optimism <= A + F
by apply leq_trans with F; last rewrite leq_addl.
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
H_j_not_completed: ~~ completed_by sched j (job_arrival j + R)
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
GT: t1 <= job_arrival j
LT: job_arrival j < t2
L1: task_rtct tsk <= F_sp
L2: optimism <= F

job_arrival j + (F - optimism) + job_last <= job_arrival j + R
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
H_j_not_completed: ~~ completed_by sched j (job_arrival j + R)
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
GT: t1 <= job_arrival j
LT: job_arrival j < t2
L1: task_rtct tsk <= F_sp
L2: optimism <= F

job_arrival j + (F - optimism) + job_last <= job_arrival j + R
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
H_j_not_completed: ~~ completed_by sched j (job_arrival j + R)
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
GT: t1 <= job_arrival j
LT: job_arrival j < t2
L1: task_rtct tsk <= F_sp
L2: optimism <= F
PRT1: task_rtc_bounded_by_cost tsk
PRT2: job_respects_task_rtc arr_seq tsk

job_arrival j + (F - optimism) + job_last <= job_arrival j + R
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
H_j_not_completed: ~~ completed_by sched j (job_arrival j + R)
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
GT: t1 <= job_arrival j
LT: job_arrival j < t2
L1: task_rtct tsk <= F_sp
L2: optimism <= F
PRT1: task_rtc_bounded_by_cost tsk
PRT2: job_respects_task_rtc arr_seq tsk

F - optimism + job_last <= R
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
H_j_not_completed: ~~ completed_by sched j (job_arrival j + R)
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
GT: t1 <= job_arrival j
LT: job_arrival j < t2
L1: task_rtct tsk <= F_sp
L2: optimism <= F
PRT1: task_rtc_bounded_by_cost tsk
PRT2: job_respects_task_rtc arr_seq tsk

F_sp - optimism + job_last <= R
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
H_j_not_completed: ~~ completed_by sched j (job_arrival j + R)
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
GT: t1 <= job_arrival j
LT: job_arrival j < t2
L1: task_rtct tsk <= F_sp
L2: optimism <= F
PRT1: task_rtc_bounded_by_cost tsk
PRT2: job_respects_task_rtc arr_seq tsk

F_sp - optimism + job_last <= F_sp + (task_cost tsk - task_rtct tsk)
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
H_j_not_completed: ~~ completed_by sched j (job_arrival j + R)
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
GT: t1 <= job_arrival j
LT: job_arrival j < t2
L1: task_rtct tsk <= F_sp
L2: optimism <= F
PRT1: task_rtc_bounded_by_cost tsk
PRT2: job_respects_task_rtc arr_seq tsk

F_sp + job_rtct j - task_rtct tsk + job_last <= F_sp + (task_cost tsk - task_rtct tsk)
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
H_j_not_completed: ~~ completed_by sched j (job_arrival j + R)
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
GT: t1 <= job_arrival j
LT: job_arrival j < t2
L1: task_rtct tsk <= F_sp
L2: optimism <= F
PRT1: task_rtc_bounded_by_cost tsk
PRT2: job_respects_task_rtc arr_seq tsk

F_sp - task_rtct tsk + job_rtct j + (job_cost j - job_rtct j) <= F_sp + (task_cost tsk - task_rtct tsk)
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
H_j_not_completed: ~~ completed_by sched j (job_arrival j + R)
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
GT: t1 <= job_arrival j
LT: job_arrival j < t2
L1: task_rtct tsk <= F_sp
L2: optimism <= F
PRT1: task_rtc_bounded_by_cost tsk
PRT2: job_respects_task_rtc arr_seq tsk

F_sp - task_rtct tsk + job_rtct j + job_cost j - job_rtct j <= F_sp + (task_cost tsk - task_rtct tsk)
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
H_j_not_completed: ~~ completed_by sched j (job_arrival j + R)
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
GT: t1 <= job_arrival j
LT: job_arrival j < t2
L1: task_rtct tsk <= F_sp
L2: optimism <= F
PRT1: task_rtc_bounded_by_cost tsk
PRT2: job_respects_task_rtc arr_seq tsk

F_sp - task_rtct tsk + job_rtct j - job_rtct j + job_cost j <= F_sp + (task_cost tsk - task_rtct tsk)
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
H_j_not_completed: ~~ completed_by sched j (job_arrival j + R)
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
GT: t1 <= job_arrival j
LT: job_arrival j < t2
L1: task_rtct tsk <= F_sp
L2: optimism <= F
PRT1: task_rtc_bounded_by_cost tsk
PRT2: job_respects_task_rtc arr_seq tsk

F_sp - task_rtct tsk + job_cost j <= F_sp + (task_cost tsk - task_rtct tsk)
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
H_j_not_completed: ~~ completed_by sched j (job_arrival j + R)
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
GT: t1 <= job_arrival j
LT: job_arrival j < t2
L1: task_rtct tsk <= F_sp
L2: optimism <= F
PRT1: task_rtc_bounded_by_cost tsk
PRT2: job_respects_task_rtc arr_seq tsk

F_sp - task_rtct tsk + job_cost j <= F_sp + task_cost tsk - task_rtct tsk
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
H_j_not_completed: ~~ completed_by sched j (job_arrival j + R)
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
GT: t1 <= job_arrival j
LT: job_arrival j < t2
L1: task_rtct tsk <= F_sp
L2: optimism <= F
PRT1: task_rtc_bounded_by_cost tsk
PRT2: job_respects_task_rtc arr_seq tsk

F_sp + job_cost j - task_rtct tsk <= F_sp + task_cost tsk - task_rtct tsk
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
H_j_not_completed: ~~ completed_by sched j (job_arrival j + R)
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat
GT: t1 <= job_arrival j
LT: job_arrival j < t2
L1: task_rtct tsk <= F_sp
L2: optimism <= F
PRT1: task_rtc_bounded_by_cost tsk
PRT2: job_respects_task_rtc arr_seq tsk

job_cost j <= task_cost tsk
by move: H_job_of_tsk => /eqP <-; apply H_valid_job_cost. } Qed. (** ... which contradicts the initial assumption about [j] is not completed by time [job_arrival j + R]. *)
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
H_j_not_completed: ~~ completed_by sched j (job_arrival j + R)
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat

False
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
H_j_not_completed: ~~ completed_by sched j (job_arrival j + R)
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat

False
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
F: duration
H_Asp_Fsp_eq_A_F: A_sp + F_sp = A + F
H_F_le_Fsp: F <= F_sp
H_A_F_fixpoint: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
H_j_not_completed: ~~ completed_by sched j (job_arrival j + R)
job_last:= job_cost j - job_rtct j: nat
optimism:= task_rtct tsk - job_rtct j: nat

completed_by sched j (job_arrival j + R)
apply completion_monotonic with (t1 + ((A + F) - optimism) + job_last); auto using j_is_completed_by_t1_A_F_optimist_last, t1_A_F_optimist_last_le_arrival_R. Qed. End ProofByContradiction. (** Putting everything together, we conclude that [j] is completed by [job_arrival j + R]. *)
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp

completed_by sched j (job_arrival j + R)
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp

completed_by sched j (job_arrival j + R)
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
GT: t1 <= job_arrival j
LT: job_arrival j < t2

completed_by sched j (job_arrival j + R)
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
GT: t1 <= job_arrival j
LT: job_arrival j < t2
L1: forall t : TaskRunToCompletionThreshold Task, A_sp + F_sp < L -> task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp -> forall A : duration, A_sp <= A <= A_sp + F_sp -> are_equivalent_at_values_less_than (fun R : duration => task_rtct tsk + interference_bound_function tsk A R) (fun R : duration => task_rtct tsk + interference_bound_function tsk A_sp R) L -> exists F : nat, A_sp + F_sp = A + F /\ F <= F_sp /\ task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F

completed_by sched j (job_arrival j + R)
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
GT: t1 <= job_arrival j
LT: job_arrival j < t2
L1: A_sp + F_sp < L -> task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp -> forall A : duration, A_sp <= A <= A_sp + F_sp -> are_equivalent_at_values_less_than (fun R : duration => task_rtct tsk + interference_bound_function tsk A R) (fun R : duration => task_rtct tsk + interference_bound_function tsk A_sp R) L -> exists F : nat, A_sp + F_sp = A + F /\ F <= F_sp /\ task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F

completed_by sched j (job_arrival j + R)
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
GT: t1 <= job_arrival j
LT: job_arrival j < t2
L1: A_sp + F_sp < L -> task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp -> forall A : duration, A_sp <= A <= A_sp + F_sp -> are_equivalent_at_values_less_than (fun R : duration => task_rtct tsk + interference_bound_function tsk A R) (fun R : duration => task_rtct tsk + interference_bound_function tsk A_sp R) L -> exists F : nat, A_sp + F_sp = A + F /\ F <= F_sp /\ task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F

A_sp + F_sp < L
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
GT: t1 <= job_arrival j
LT: job_arrival j < t2
L1: forall A : duration, A_sp <= A <= A_sp + F_sp -> are_equivalent_at_values_less_than (fun R : duration => task_rtct tsk + interference_bound_function tsk A R) (fun R : duration => task_rtct tsk + interference_bound_function tsk A_sp R) L -> exists F : nat, A_sp + F_sp = A + F /\ F <= F_sp /\ task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
completed_by sched j (job_arrival j + R)
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
GT: t1 <= job_arrival j
LT: job_arrival j < t2
L1: A_sp + F_sp < L -> task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp -> forall A : duration, A_sp <= A <= A_sp + F_sp -> are_equivalent_at_values_less_than (fun R : duration => task_rtct tsk + interference_bound_function tsk A R) (fun R : duration => task_rtct tsk + interference_bound_function tsk A_sp R) L -> exists F : nat, A_sp + F_sp = A + F /\ F <= F_sp /\ task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F

A_sp + F_sp < L
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
GT: t1 <= job_arrival j
LT: job_arrival j < t2
L1: A_sp + F_sp < L -> task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp -> forall A : duration, A_sp <= A <= A_sp + F_sp -> are_equivalent_at_values_less_than (fun R : duration => task_rtct tsk + interference_bound_function tsk A R) (fun R : duration => task_rtct tsk + interference_bound_function tsk A_sp R) L -> exists F : nat, A_sp + F_sp = A + F /\ F <= F_sp /\ task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
t1', t2': nat
BOUND: t2' <= t1' + L
BUSY: definitions.busy_interval sched interference interfering_workload j t1' t2'

A_sp + F_sp < L
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
GT: t1 <= job_arrival j
LT: job_arrival j < t2
L1: A_sp + F_sp < L -> task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp -> forall A : duration, A_sp <= A <= A_sp + F_sp -> are_equivalent_at_values_less_than (fun R : duration => task_rtct tsk + interference_bound_function tsk A R) (fun R : duration => task_rtct tsk + interference_bound_function tsk A_sp R) L -> exists F : nat, A_sp + F_sp = A + F /\ F <= F_sp /\ task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
t1', t2': nat
BOUND: t2' <= t1' + L
BUSY: definitions.busy_interval sched interference interfering_workload j t1' t2'
EQ: t1 = t1' /\ t2 = t2'

A_sp + F_sp < L
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
GT: t1 <= job_arrival j
LT: job_arrival j < t2
L1: A_sp + F_sp < L -> task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp -> forall A : duration, A_sp <= A <= A_sp + F_sp -> are_equivalent_at_values_less_than (fun R : duration => task_rtct tsk + interference_bound_function tsk A R) (fun R : duration => task_rtct tsk + interference_bound_function tsk A_sp R) L -> exists F : nat, A_sp + F_sp = A + F /\ F <= F_sp /\ task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
t1', t2': nat
BOUND: t2' <= t1' + L
BUSY: definitions.busy_interval sched interference interfering_workload j t1' t2'
EQ1: t1 = t1'
EQ2: t2 = t2'

A_sp + F_sp < L
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
GT: t1 <= job_arrival j
LT: job_arrival j < t2
L1: A_sp + F_sp < L -> task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp -> forall A : duration, A_sp <= A <= A_sp + F_sp -> are_equivalent_at_values_less_than (fun R : duration => task_rtct tsk + interference_bound_function tsk A R) (fun R : duration => task_rtct tsk + interference_bound_function tsk A_sp R) L -> exists F : nat, A_sp + F_sp = A + F /\ F <= F_sp /\ task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
BOUND: t2 <= t1 + L

A_sp + F_sp < L
by rewrite -(ltn_add2l t1); apply leq_trans with t2.
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
GT: t1 <= job_arrival j
LT: job_arrival j < t2
L1: forall A : duration, A_sp <= A <= A_sp + F_sp -> are_equivalent_at_values_less_than (fun R : duration => task_rtct tsk + interference_bound_function tsk A R) (fun R : duration => task_rtct tsk + interference_bound_function tsk A_sp R) L -> exists F : nat, A_sp + F_sp = A + F /\ F <= F_sp /\ task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F

completed_by sched j (job_arrival j + R)
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
GT: t1 <= job_arrival j
LT: job_arrival j < t2
L1: are_equivalent_at_values_less_than (fun R : duration => task_rtct tsk + interference_bound_function tsk A R) (fun R : duration => task_rtct tsk + interference_bound_function tsk A_sp R) L -> exists F : nat, A_sp + F_sp = A + F /\ F <= F_sp /\ task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F

are_equivalent_at_values_less_than (fun R : duration => task_rtct tsk + interference_bound_function tsk A R) (fun R : duration => task_rtct tsk + interference_bound_function tsk A_sp R) L
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
GT: t1 <= job_arrival j
LT: job_arrival j < t2
L1: exists F : nat, A_sp + F_sp = A + F /\ F <= F_sp /\ task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
completed_by sched j (job_arrival j + R)
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
GT: t1 <= job_arrival j
LT: job_arrival j < t2
L1: are_equivalent_at_values_less_than (fun R : duration => task_rtct tsk + interference_bound_function tsk A R) (fun R : duration => task_rtct tsk + interference_bound_function tsk A_sp R) L -> exists F : nat, A_sp + F_sp = A + F /\ F <= F_sp /\ task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F

are_equivalent_at_values_less_than (fun R : duration => task_rtct tsk + interference_bound_function tsk A R) (fun R : duration => task_rtct tsk + interference_bound_function tsk A_sp R) L
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
GT: t1 <= job_arrival j
LT: job_arrival j < t2
L1: exists F : nat, A_sp + F_sp = A + F /\ F <= F_sp /\ task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
completed_by sched j (job_arrival j + R)
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
GT: t1 <= job_arrival j
LT: job_arrival j < t2
L1: exists F : nat, A_sp + F_sp = A + F /\ F <= F_sp /\ task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F

completed_by sched j (job_arrival j + R)
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
GT: t1 <= job_arrival j
LT: job_arrival j < t2
F: nat
EQSUM: A_sp + F_sp = A + F
F2LEF1: F <= F_sp
FIX2: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F

completed_by sched j (job_arrival j + R)
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_no_less_than_relative_arrival_of_j: A <= A_sp + F_sp
GT: t1 <= job_arrival j
LT: job_arrival j < t2
F: nat
EQSUM: A_sp + F_sp = A + F
F2LEF1: F <= F_sp
FIX2: task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F
CONTRc: ~~ completed_by sched j (job_arrival j + R)

False
by eapply j_is_completed_earlier_contradiction in CONTRc; eauto 2. Qed. End FixpointIsNoLessThanArrival. (** CASE 2: the value of the fix-point is less than the relative arrival time of job j (which turns out to be impossible, i.e. the solution of the response-time recurrence is always equal to or greater than the relative arrival time). *) Section FixpointCannotBeSmallerThanArrival. (** Assume that [A_sp + F_sp] is less than A. *) Hypothesis H_fixpoint_is_less_that_relative_arrival_of_j: A_sp + F_sp < A. (** Note that the relative arrival time of job j is less than L. *)
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_less_that_relative_arrival_of_j: A_sp + F_sp < A

A < L
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_less_that_relative_arrival_of_j: A_sp + F_sp < A

A < L
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_less_that_relative_arrival_of_j: A_sp + F_sp < A

job_arrival j - t1 < L
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_less_that_relative_arrival_of_j: A_sp + F_sp < A
t1', t2': nat
BOUND: t2' <= t1' + L
BUSY: definitions.busy_interval sched interference interfering_workload j t1' t2'

job_arrival j - t1 < L
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_less_that_relative_arrival_of_j: A_sp + F_sp < A
t1', t2': nat
BOUND: t2' <= t1' + L
BUSY: definitions.busy_interval sched interference interfering_workload j t1' t2'
EQ: t1 = t1' /\ t2 = t2'

job_arrival j - t1 < L
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_less_that_relative_arrival_of_j: A_sp + F_sp < A
t1', t2': nat
BOUND: t2' <= t1' + L
BUSY: definitions.busy_interval sched interference interfering_workload j t1' t2'
EQ1: t1 = t1'
EQ2: t2 = t2'

job_arrival j - t1 < L
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_less_that_relative_arrival_of_j: A_sp + F_sp < A
BOUND: t2 <= t1 + L

job_arrival j - t1 < L
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_less_that_relative_arrival_of_j: A_sp + F_sp < A
BOUND: t2 <= t1 + L

job_arrival j - t1 < t2 - t1
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_less_that_relative_arrival_of_j: A_sp + F_sp < A
BOUND: t2 <= t1 + L
T1: t1 <= job_arrival j
T3: job_arrival j < t2

job_arrival j - t1 < t2 - t1
by apply ltn_sub2r; first apply leq_ltn_trans with (job_arrival j). Qed. (** We can use [j_receives_at_least_run_to_completion_threshold] to prove that the service received by j by time [t1 + (A_sp + F_sp)] is no less than run-to-completion threshold. *)
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_less_that_relative_arrival_of_j: A_sp + F_sp < A

job_rtct j <= service sched j (t1 + (A_sp + F_sp))
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_less_that_relative_arrival_of_j: A_sp + F_sp < A

job_rtct j <= service sched j (t1 + (A_sp + F_sp))
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_less_that_relative_arrival_of_j: A_sp + F_sp < A
NEQ: t1 <= job_arrival j < t2
QT1: quiet_time sched interference interfering_workload j t1
NTQ: forall t : nat, t1 < t < t2 -> ~ quiet_time sched interference interfering_workload j t
QT2: quiet_time sched interference interfering_workload j t2

job_rtct j <= service sched j (t1 + (A_sp + F_sp))
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_less_that_relative_arrival_of_j: A_sp + F_sp < A
NEQ: t1 <= job_arrival j < t2
QT1: quiet_time sched interference interfering_workload j t1
NTQ: forall t : nat, t1 < t < t2 -> ~ quiet_time sched interference interfering_workload j t
QT2: quiet_time sched interference interfering_workload j t2
GT: t1 <= job_arrival j
LT: job_arrival j < t2

job_rtct j <= service sched j (t1 + (A_sp + F_sp))
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_less_that_relative_arrival_of_j: A_sp + F_sp < A
NEQ: t1 <= job_arrival j < t2
QT1: quiet_time sched interference interfering_workload j t1
NTQ: forall t : nat, t1 < t < t2 -> ~ quiet_time sched interference interfering_workload j t
QT2: quiet_time sched interference interfering_workload j t2
GT: t1 <= job_arrival j
LT: job_arrival j < t2
IB: arrives_in arr_seq j -> job_of_task tsk j -> definitions.busy_interval sched interference interfering_workload j t1 t2 -> t1 + (A_sp + F_sp) < t2 -> ~~ completed_by sched j (t1 + (A_sp + F_sp)) -> let offset := job_arrival j - t1 in definitions.cumul_interference interference j t1 (t1 + (A_sp + F_sp)) <= interference_bound_function tsk offset (A_sp + F_sp)

job_rtct j <= service sched j (t1 + (A_sp + F_sp))
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_less_that_relative_arrival_of_j: A_sp + F_sp < A
NEQ: t1 <= job_arrival j < t2
QT1: quiet_time sched interference interfering_workload j t1
NTQ: forall t : nat, t1 < t < t2 -> ~ quiet_time sched interference interfering_workload j t
QT2: quiet_time sched interference interfering_workload j t2
GT: t1 <= job_arrival j
LT: job_arrival j < t2
IB: ~~ completed_by sched j (t1 + (A_sp + F_sp)) -> let offset := job_arrival j - t1 in definitions.cumul_interference interference j t1 (t1 + (A_sp + F_sp)) <= interference_bound_function tsk offset (A_sp + F_sp)

~~ completed_by sched j (t1 + (A_sp + F_sp))
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_less_that_relative_arrival_of_j: A_sp + F_sp < A
NEQ: t1 <= job_arrival j < t2
QT1: quiet_time sched interference interfering_workload j t1
NTQ: forall t : nat, t1 < t < t2 -> ~ quiet_time sched interference interfering_workload j t
QT2: quiet_time sched interference interfering_workload j t2
GT: t1 <= job_arrival j
LT: job_arrival j < t2
IB: let offset := job_arrival j - t1 in definitions.cumul_interference interference j t1 (t1 + (A_sp + F_sp)) <= interference_bound_function tsk offset (A_sp + F_sp)
job_rtct j <= service sched j (t1 + (A_sp + F_sp))
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_less_that_relative_arrival_of_j: A_sp + F_sp < A
NEQ: t1 <= job_arrival j < t2
QT1: quiet_time sched interference interfering_workload j t1
NTQ: forall t : nat, t1 < t < t2 -> ~ quiet_time sched interference interfering_workload j t
QT2: quiet_time sched interference interfering_workload j t2
GT: t1 <= job_arrival j
LT: job_arrival j < t2
IB: ~~ completed_by sched j (t1 + (A_sp + F_sp)) -> let offset := job_arrival j - t1 in definitions.cumul_interference interference j t1 (t1 + (A_sp + F_sp)) <= interference_bound_function tsk offset (A_sp + F_sp)

~~ completed_by sched j (t1 + (A_sp + F_sp))
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_less_that_relative_arrival_of_j: A_sp + F_sp < A
NEQ: t1 <= job_arrival j < t2
QT1: quiet_time sched interference interfering_workload j t1
NTQ: forall t : nat, t1 < t < t2 -> ~ quiet_time sched interference interfering_workload j t
QT2: quiet_time sched interference interfering_workload j t2
GT: t1 <= job_arrival j
LT: job_arrival j < t2
IB: ~~ completed_by sched j (t1 + (A_sp + F_sp)) -> let offset := job_arrival j - t1 in definitions.cumul_interference interference j t1 (t1 + (A_sp + F_sp)) <= interference_bound_function tsk offset (A_sp + F_sp)
COMPL: completed_by sched j (t1 + (A_sp + F_sp))

False
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_less_that_relative_arrival_of_j: A_sp + F_sp < A
NEQ: t1 <= job_arrival j < t2
QT1: quiet_time sched interference interfering_workload j t1
NTQ: forall t : nat, t1 < t < t2 -> ~ quiet_time sched interference interfering_workload j t
QT2: quiet_time sched interference interfering_workload j t2
GT: t1 <= job_arrival j
LT: job_arrival j < t2
IB: ~~ completed_by sched j (t1 + (A_sp + F_sp)) -> let offset := job_arrival j - t1 in definitions.cumul_interference interference j t1 (t1 + (A_sp + F_sp)) <= interference_bound_function tsk offset (A_sp + F_sp)
COMPL: completed_by sched j (t1 + (A_sp + F_sp))

t1 + (A_sp + F_sp) <= t1 + A
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_less_that_relative_arrival_of_j: A_sp + F_sp < A
NEQ: t1 <= job_arrival j < t2
QT1: quiet_time sched interference interfering_workload j t1
NTQ: forall t : nat, t1 < t < t2 -> ~ quiet_time sched interference interfering_workload j t
QT2: quiet_time sched interference interfering_workload j t2
GT: t1 <= job_arrival j
LT: job_arrival j < t2
IB: ~~ completed_by sched j (t1 + (A_sp + F_sp)) -> let offset := job_arrival j - t1 in definitions.cumul_interference interference j t1 (t1 + (A_sp + F_sp)) <= interference_bound_function tsk offset (A_sp + F_sp)
COMPL: completed_by sched j (t1 + A)
False
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_less_that_relative_arrival_of_j: A_sp + F_sp < A
NEQ: t1 <= job_arrival j < t2
QT1: quiet_time sched interference interfering_workload j t1
NTQ: forall t : nat, t1 < t < t2 -> ~ quiet_time sched interference interfering_workload j t
QT2: quiet_time sched interference interfering_workload j t2
GT: t1 <= job_arrival j
LT: job_arrival j < t2
IB: ~~ completed_by sched j (t1 + (A_sp + F_sp)) -> let offset := job_arrival j - t1 in definitions.cumul_interference interference j t1 (t1 + (A_sp + F_sp)) <= interference_bound_function tsk offset (A_sp + F_sp)
COMPL: completed_by sched j (t1 + (A_sp + F_sp))

t1 + (A_sp + F_sp) <= t1 + A
by rewrite leq_add2l; apply ltnW.
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_less_that_relative_arrival_of_j: A_sp + F_sp < A
NEQ: t1 <= job_arrival j < t2
QT1: quiet_time sched interference interfering_workload j t1
NTQ: forall t : nat, t1 < t < t2 -> ~ quiet_time sched interference interfering_workload j t
QT2: quiet_time sched interference interfering_workload j t2
GT: t1 <= job_arrival j
LT: job_arrival j < t2
IB: ~~ completed_by sched j (t1 + (A_sp + F_sp)) -> let offset := job_arrival j - t1 in definitions.cumul_interference interference j t1 (t1 + (A_sp + F_sp)) <= interference_bound_function tsk offset (A_sp + F_sp)
COMPL: completed_by sched j (t1 + A)

False
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_less_that_relative_arrival_of_j: A_sp + F_sp < A
NEQ: t1 <= job_arrival j < t2
QT1: quiet_time sched interference interfering_workload j t1
NTQ: forall t : nat, t1 < t < t2 -> ~ quiet_time sched interference interfering_workload j t
QT2: quiet_time sched interference interfering_workload j t2
GT: t1 <= job_arrival j
LT: job_arrival j < t2
IB: ~~ completed_by sched j (t1 + (A_sp + F_sp)) -> let offset := job_arrival j - t1 in definitions.cumul_interference interference j t1 (t1 + (A_sp + F_sp)) <= interference_bound_function tsk offset (A_sp + F_sp)
COMPL: completed_by sched j (t1 + A)

False
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_less_that_relative_arrival_of_j: A_sp + F_sp < A
NEQ: t1 <= job_arrival j < t2
QT1: quiet_time sched interference interfering_workload j t1
NTQ: forall t : nat, t1 < t < t2 -> ~ quiet_time sched interference interfering_workload j t
QT2: quiet_time sched interference interfering_workload j t2
GT: t1 <= job_arrival j
LT: job_arrival j < t2
IB: ~~ completed_by sched j (t1 + (A_sp + F_sp)) -> let offset := job_arrival j - t1 in definitions.cumul_interference interference j t1 (t1 + (A_sp + F_sp)) <= interference_bound_function tsk offset (A_sp + F_sp)
COMPL: completed_by sched j (job_arrival j)

False
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_less_that_relative_arrival_of_j: A_sp + F_sp < A
NEQ: t1 <= job_arrival j < t2
QT1: quiet_time sched interference interfering_workload j t1
NTQ: forall t : nat, t1 < t < t2 -> ~ quiet_time sched interference interfering_workload j t
QT2: quiet_time sched interference interfering_workload j t2
GT: t1 <= job_arrival j
LT: job_arrival j < t2
IB: ~~ completed_by sched j (t1 + (A_sp + F_sp)) -> let offset := job_arrival j - t1 in definitions.cumul_interference interference j t1 (t1 + (A_sp + F_sp)) <= interference_bound_function tsk offset (A_sp + F_sp)

service sched j (job_arrival j) < job_cost j
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_less_that_relative_arrival_of_j: A_sp + F_sp < A
NEQ: t1 <= job_arrival j < t2
QT1: quiet_time sched interference interfering_workload j t1
NTQ: forall t : nat, t1 < t < t2 -> ~ quiet_time sched interference interfering_workload j t
QT2: quiet_time sched interference interfering_workload j t2
GT: t1 <= job_arrival j
LT: job_arrival j < t2
IB: ~~ completed_by sched j (t1 + (A_sp + F_sp)) -> let offset := job_arrival j - t1 in definitions.cumul_interference interference j t1 (t1 + (A_sp + F_sp)) <= interference_bound_function tsk offset (A_sp + F_sp)

service_during sched j 0 (job_arrival j) + service_during sched j (job_arrival j) (job_arrival j) < job_cost j
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_less_that_relative_arrival_of_j: A_sp + F_sp < A
NEQ: t1 <= job_arrival j < t2
QT1: quiet_time sched interference interfering_workload j t1
NTQ: forall t : nat, t1 < t < t2 -> ~ quiet_time sched interference interfering_workload j t
QT2: quiet_time sched interference interfering_workload j t2
GT: t1 <= job_arrival j
LT: job_arrival j < t2
IB: ~~ completed_by sched j (t1 + (A_sp + F_sp)) -> let offset := job_arrival j - t1 in definitions.cumul_interference interference j t1 (t1 + (A_sp + F_sp)) <= interference_bound_function tsk offset (A_sp + F_sp)

service_during sched j (job_arrival j) (job_arrival j) < job_cost j
by rewrite /service_during big_geq //. }
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_less_that_relative_arrival_of_j: A_sp + F_sp < A
NEQ: t1 <= job_arrival j < t2
QT1: quiet_time sched interference interfering_workload j t1
NTQ: forall t : nat, t1 < t < t2 -> ~ quiet_time sched interference interfering_workload j t
QT2: quiet_time sched interference interfering_workload j t2
GT: t1 <= job_arrival j
LT: job_arrival j < t2
IB: let offset := job_arrival j - t1 in definitions.cumul_interference interference j t1 (t1 + (A_sp + F_sp)) <= interference_bound_function tsk offset (A_sp + F_sp)

job_rtct j <= service sched j (t1 + (A_sp + F_sp))
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_less_that_relative_arrival_of_j: A_sp + F_sp < A
NEQ: t1 <= job_arrival j < t2
QT1: quiet_time sched interference interfering_workload j t1
NTQ: forall t : nat, t1 < t < t2 -> ~ quiet_time sched interference interfering_workload j t
QT2: quiet_time sched interference interfering_workload j t2
GT: t1 <= job_arrival j
LT: job_arrival j < t2
IB: let offset := A in definitions.cumul_interference interference j t1 (t1 + (A_sp + F_sp)) <= interference_bound_function tsk offset (A_sp + F_sp)

job_rtct j <= service sched j (t1 + (A_sp + F_sp))
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_less_that_relative_arrival_of_j: A_sp + F_sp < A
NEQ: t1 <= job_arrival j < t2
QT1: quiet_time sched interference interfering_workload j t1
NTQ: forall t : nat, t1 < t < t2 -> ~ quiet_time sched interference interfering_workload j t
QT2: quiet_time sched interference interfering_workload j t2
GT: t1 <= job_arrival j
LT: job_arrival j < t2
IB: let offset := A in definitions.cumul_interference interference j t1 (t1 + (A_sp + F_sp)) <= interference_bound_function tsk offset (A_sp + F_sp)
ALTT: A < L

job_rtct j <= service sched j (t1 + (A_sp + F_sp))
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_less_that_relative_arrival_of_j: A_sp + F_sp < A
NEQ: t1 <= job_arrival j < t2
QT1: quiet_time sched interference interfering_workload j t1
NTQ: forall t : nat, t1 < t < t2 -> ~ quiet_time sched interference interfering_workload j t
QT2: quiet_time sched interference interfering_workload j t2
GT: t1 <= job_arrival j
LT: job_arrival j < t2
ALTT: A < L
IB: definitions.cumul_interference interference j t1 (t1 + (A_sp + F_sp)) <= interference_bound_function tsk A_sp (A_sp + F_sp)

job_rtct j <= service sched j (t1 + (A_sp + F_sp))
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_less_that_relative_arrival_of_j: A_sp + F_sp < A
NEQ: t1 <= job_arrival j < t2
QT1: quiet_time sched interference interfering_workload j t1
NTQ: forall t : nat, t1 < t < t2 -> ~ quiet_time sched interference interfering_workload j t
QT2: quiet_time sched interference interfering_workload j t2
GT: t1 <= job_arrival j
LT: job_arrival j < t2
ALTT: A < L
IB: definitions.cumul_interference interference j t1 (t1 + (A_sp + F_sp)) <= interference_bound_function tsk A_sp (A_sp + F_sp)
ESERV: forall (j0 : JobArrival Job) (j1 : JobCost Job), ideal_progress_proc_model PState -> unit_service_proc_model PState -> definitions.work_conserving arr_seq sched interference interfering_workload -> arrives_in arr_seq j -> job_cost_positive j -> definitions.busy_interval sched interference interfering_workload j t1 t2 -> forall (j2 : JobCost Job) (j3 : JobPreemptable Job), job_rtct j <= job_cost j -> job_rtct j + definitions.cumul_interference interference j t1 (t1 + (A_sp + F_sp)) <= A_sp + F_sp -> job_rtct j <= service sched j (t1 + (A_sp + F_sp))

job_rtct j <= service sched j (t1 + (A_sp + F_sp))
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_less_that_relative_arrival_of_j: A_sp + F_sp < A
NEQ: t1 <= job_arrival j < t2
QT1: quiet_time sched interference interfering_workload j t1
NTQ: forall t : nat, t1 < t < t2 -> ~ quiet_time sched interference interfering_workload j t
QT2: quiet_time sched interference interfering_workload j t2
GT: t1 <= job_arrival j
LT: job_arrival j < t2
ALTT: A < L
IB: definitions.cumul_interference interference j t1 (t1 + (A_sp + F_sp)) <= interference_bound_function tsk A_sp (A_sp + F_sp)
ESERV: ideal_progress_proc_model PState -> unit_service_proc_model PState -> definitions.work_conserving arr_seq sched interference interfering_workload -> arrives_in arr_seq j -> job_cost_positive j -> definitions.busy_interval sched interference interfering_workload j t1 t2 -> forall (j0 : JobCost Job) (j1 : JobPreemptable Job), job_rtct j <= job_cost j -> job_rtct j + definitions.cumul_interference interference j t1 (t1 + (A_sp + F_sp)) <= A_sp + F_sp -> job_rtct j <= service sched j (t1 + (A_sp + F_sp))

job_rtct j <= service sched j (t1 + (A_sp + F_sp))
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_less_that_relative_arrival_of_j: A_sp + F_sp < A
NEQ: t1 <= job_arrival j < t2
QT1: quiet_time sched interference interfering_workload j t1
NTQ: forall t : nat, t1 < t < t2 -> ~ quiet_time sched interference interfering_workload j t
QT2: quiet_time sched interference interfering_workload j t2
GT: t1 <= job_arrival j
LT: job_arrival j < t2
ALTT: A < L
IB: definitions.cumul_interference interference j t1 (t1 + (A_sp + F_sp)) <= interference_bound_function tsk A_sp (A_sp + F_sp)
ESERV: forall (j0 : JobCost Job) (j1 : JobPreemptable Job), job_rtct j <= job_cost j -> job_rtct j + definitions.cumul_interference interference j t1 (t1 + (A_sp + F_sp)) <= A_sp + F_sp -> job_rtct j <= service sched j (t1 + (A_sp + F_sp))

job_rtct j <= service sched j (t1 + (A_sp + F_sp))
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_less_that_relative_arrival_of_j: A_sp + F_sp < A
NEQ: t1 <= job_arrival j < t2
QT1: quiet_time sched interference interfering_workload j t1
NTQ: forall t : nat, t1 < t < t2 -> ~ quiet_time sched interference interfering_workload j t
QT2: quiet_time sched interference interfering_workload j t2
GT: t1 <= job_arrival j
LT: job_arrival j < t2
ALTT: A < L
IB: definitions.cumul_interference interference j t1 (t1 + (A_sp + F_sp)) <= interference_bound_function tsk A_sp (A_sp + F_sp)
ESERV: job_rtct j <= job_cost j -> job_rtct j + definitions.cumul_interference interference j t1 (t1 + (A_sp + F_sp)) <= A_sp + F_sp -> job_rtct j <= service sched j (t1 + (A_sp + F_sp))

job_rtct j <= service sched j (t1 + (A_sp + F_sp))
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_less_that_relative_arrival_of_j: A_sp + F_sp < A
NEQ: t1 <= job_arrival j < t2
QT1: quiet_time sched interference interfering_workload j t1
NTQ: forall t : nat, t1 < t < t2 -> ~ quiet_time sched interference interfering_workload j t
QT2: quiet_time sched interference interfering_workload j t2
GT: t1 <= job_arrival j
LT: job_arrival j < t2
ALTT: A < L
IB: definitions.cumul_interference interference j t1 (t1 + (A_sp + F_sp)) <= interference_bound_function tsk A_sp (A_sp + F_sp)
ESERV: job_rtct j + definitions.cumul_interference interference j t1 (t1 + (A_sp + F_sp)) <= A_sp + F_sp -> job_rtct j <= service sched j (t1 + (A_sp + F_sp))

job_rtct j + definitions.cumul_interference interference j t1 (t1 + (A_sp + F_sp)) <= A_sp + F_sp
by rewrite -{2}(leqRW H_Asp_Fsp_fixpoint) leq_add //; apply H_valid_run_to_completion_threshold. Qed. (** However, this is a contradiction. Since job [j] has not yet arrived, its service is equal to [0]. However, run-to-completion threshold is always positive. *)
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_less_that_relative_arrival_of_j: A_sp + F_sp < A

False
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_less_that_relative_arrival_of_j: A_sp + F_sp < A

False
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_less_that_relative_arrival_of_j: A_sp + F_sp < A
NEQ: t1 <= job_arrival j < t2
QT1: quiet_time sched interference interfering_workload j t1
NTQ: forall t : nat, t1 < t < t2 -> ~ quiet_time sched interference interfering_workload j t
QT2: quiet_time sched interference interfering_workload j t2

False
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_less_that_relative_arrival_of_j: A_sp + F_sp < A
NEQ: t1 <= job_arrival j < t2
QT1: quiet_time sched interference interfering_workload j t1
NTQ: forall t : nat, t1 < t < t2 -> ~ quiet_time sched interference interfering_workload j t
QT2: quiet_time sched interference interfering_workload j t2
GT: t1 <= job_arrival j
LT: job_arrival j < t2

False
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_less_that_relative_arrival_of_j: A_sp + F_sp < A
NEQ: t1 <= job_arrival j < t2
QT1: quiet_time sched interference interfering_workload j t1
NTQ: forall t : nat, t1 < t < t2 -> ~ quiet_time sched interference interfering_workload j t
QT2: quiet_time sched interference interfering_workload j t2
GT: t1 <= job_arrival j
LT: job_arrival j < t2
ESERV: job_rtct j <= service sched j (t1 + (A_sp + F_sp))

False
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_less_that_relative_arrival_of_j: A_sp + F_sp < A
NEQ: t1 <= job_arrival j < t2
QT1: quiet_time sched interference interfering_workload j t1
NTQ: forall t : nat, t1 < t < t2 -> ~ quiet_time sched interference interfering_workload j t
QT2: quiet_time sched interference interfering_workload j t2
GT: t1 <= job_arrival j
LT: job_arrival j < t2

service sched j (t1 + (A_sp + F_sp)) < job_rtct j
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_less_that_relative_arrival_of_j: A_sp + F_sp < A
NEQ: t1 <= job_arrival j < t2
QT1: quiet_time sched interference interfering_workload j t1
NTQ: forall t : nat, t1 < t < t2 -> ~ quiet_time sched interference interfering_workload j t
QT2: quiet_time sched interference interfering_workload j t2
GT: t1 <= job_arrival j
LT: job_arrival j < t2

t1 + (A_sp + F_sp) <= job_arrival j
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
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 j t1 t2
A:= job_arrival j - t1: nat
A_sp, F_sp: duration
H_A_gt_Asp: A_sp <= A
H_equivalent: are_equivalent_at_values_less_than (interference_bound_function tsk A) (interference_bound_function tsk A_sp) L
H_Asp_is_in_search_space: is_in_search_space A_sp
H_Asp_Fsp_fixpoint: task_rtct tsk + interference_bound_function tsk A_sp (A_sp + F_sp) <= A_sp + F_sp
H_R_gt_Fsp: F_sp + (task_cost tsk - task_rtct tsk) <= R
H_small_fixpoint_solution: t1 + (A_sp + F_sp) < t2
H_fixpoint_is_less_that_relative_arrival_of_j: A_sp + F_sp < A
NEQ: t1 <= job_arrival j < t2
QT1: quiet_time sched interference interfering_workload j t1
NTQ: forall t : nat, t1 < t < t2 -> ~ quiet_time sched interference interfering_workload j t
QT2: quiet_time sched interference interfering_workload j t2
GT: t1 <= job_arrival j
LT: job_arrival j < t2

t1 + (A_sp + F_sp) <= t1 + (job_arrival j - t1)
by rewrite -/A leq_add2l ltnW. Qed. End FixpointCannotBeSmallerThanArrival. End FixpointInsideBusyInterval. End ProofOfTheorem. (** Using the lemmas above, we prove that [R] is a response-time bound. *)
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R

response_time_bounded_by tsk R
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R

response_time_bounded_by tsk R
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
j: Job
ARR: arrives_in arr_seq j
JOBtsk: job_of_task tsk j

job_response_time_bound sched j R
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
j: Job
ARR: arrives_in arr_seq j
JOBtsk: job_of_task tsk j

completed_by sched j (job_arrival j + R)
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
j: Job
ARR: arrives_in arr_seq j
JOBtsk: job_of_task tsk j
ZERO: job_cost j = 0

completed_by sched j (job_arrival j + R)
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
j: Job
ARR: arrives_in arr_seq j
JOBtsk: job_of_task tsk j
POS: 0 < job_cost j
completed_by sched j (job_arrival j + R)
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
j: Job
ARR: arrives_in arr_seq j
JOBtsk: job_of_task tsk j
ZERO: job_cost j = 0

completed_by sched j (job_arrival j + R)
by rewrite /completed_by ZERO.
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
j: Job
ARR: arrives_in arr_seq j
JOBtsk: job_of_task tsk j
POS: 0 < job_cost j

completed_by sched j (job_arrival j + R)
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
j: Job
ARR: arrives_in arr_seq j
JOBtsk: job_of_task tsk j
POS: 0 < job_cost j
t1, t2: nat
T2: t2 <= t1 + L
BUSY: definitions.busy_interval sched interference interfering_workload j t1 t2

completed_by sched j (job_arrival j + R)
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
j: Job
ARR: arrives_in arr_seq j
JOBtsk: job_of_task tsk j
POS: 0 < job_cost j
t1, t2: nat
T2: t2 <= t1 + L
BUSY: definitions.busy_interval sched interference interfering_workload j t1 t2
GE: t1 <= job_arrival j
LT: job_arrival j < t2
QTt2: quiet_time sched interference interfering_workload j t2

completed_by sched j (job_arrival j + R)
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
j: Job
ARR: arrives_in arr_seq j
JOBtsk: job_of_task tsk j
POS: 0 < job_cost j
t1, t2: nat
T2: t2 <= t1 + L
BUSY: definitions.busy_interval sched interference interfering_workload j t1 t2
GE: t1 <= job_arrival j
LT: job_arrival j < t2
QTt2: quiet_time sched interference interfering_workload j t2
A2LTL: job_arrival j - t1 < L

completed_by sched j (job_arrival j + R)
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
j: Job
ARR: arrives_in arr_seq j
JOBtsk: job_of_task tsk j
POS: 0 < job_cost j
t1, t2: nat
T2: t2 <= t1 + L
BUSY: definitions.busy_interval sched interference interfering_workload j t1 t2
GE: t1 <= job_arrival j
LT: job_arrival j < t2
QTt2: quiet_time sched interference interfering_workload j t2
A2:= job_arrival j - t1: nat
A2LTL: A2 < L

completed_by sched j (job_arrival j + R)
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
j: Job
ARR: arrives_in arr_seq j
JOBtsk: job_of_task tsk j
POS: 0 < job_cost j
t1, t2: nat
T2: t2 <= t1 + L
BUSY: definitions.busy_interval sched interference interfering_workload j t1 t2
GE: t1 <= job_arrival j
LT: job_arrival j < t2
QTt2: quiet_time sched interference interfering_workload j t2
A2:= job_arrival j - t1: nat
A2LTL: A2 < L
A1: nat
ALEA2: A1 <= A2
EQΦ: are_equivalent_at_values_less_than (interference_bound_function tsk A2) (interference_bound_function tsk A1) L
INSP: search_space.is_in_search_space tsk L interference_bound_function A1

completed_by sched j (job_arrival j + R)
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
j: Job
ARR: arrives_in arr_seq j
JOBtsk: job_of_task tsk j
POS: 0 < job_cost j
t1, t2: nat
T2: t2 <= t1 + L
BUSY: definitions.busy_interval sched interference interfering_workload j t1 t2
GE: t1 <= job_arrival j
LT: job_arrival j < t2
QTt2: quiet_time sched interference interfering_workload j t2
A2:= job_arrival j - t1: nat
A2LTL: A2 < L
A1: nat
ALEA2: A1 <= A2
EQΦ: are_equivalent_at_values_less_than (interference_bound_function tsk A2) (interference_bound_function tsk A1) L
INSP: search_space.is_in_search_space tsk L interference_bound_function A1
F1: nat
FIX1: task_rtct tsk + interference_bound_function tsk A1 (A1 + F1) <= A1 + F1
LE1: F1 + (task_cost tsk - task_rtct tsk) <= R

completed_by sched j (job_arrival j + R)
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
j: Job
ARR: arrives_in arr_seq j
JOBtsk: job_of_task tsk j
POS: 0 < job_cost j
t1, t2: nat
T2: t2 <= t1 + L
BUSY: definitions.busy_interval sched interference interfering_workload j t1 t2
GE: t1 <= job_arrival j
LT: job_arrival j < t2
QTt2: quiet_time sched interference interfering_workload j t2
A2:= job_arrival j - t1: nat
A2LTL: A2 < L
A1: nat
ALEA2: A1 <= A2
EQΦ: are_equivalent_at_values_less_than (interference_bound_function tsk A2) (interference_bound_function tsk A1) L
INSP: search_space.is_in_search_space tsk L interference_bound_function A1
F1: nat
FIX1: task_rtct tsk + interference_bound_function tsk A1 (A1 + F1) <= A1 + F1
LE1: F1 + (task_cost tsk - task_rtct tsk) <= R
BIG: (t2 <= t1 + (A1 + F1)) = true

completed_by sched j (job_arrival j + R)
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
j: Job
ARR: arrives_in arr_seq j
JOBtsk: job_of_task tsk j
POS: 0 < job_cost j
t1, t2: nat
T2: t2 <= t1 + L
BUSY: definitions.busy_interval sched interference interfering_workload j t1 t2
GE: t1 <= job_arrival j
LT: job_arrival j < t2
QTt2: quiet_time sched interference interfering_workload j t2
A2:= job_arrival j - t1: nat
A2LTL: A2 < L
A1: nat
ALEA2: A1 <= A2
EQΦ: are_equivalent_at_values_less_than (interference_bound_function tsk A2) (interference_bound_function tsk A1) L
INSP: search_space.is_in_search_space tsk L interference_bound_function A1
F1: nat
FIX1: task_rtct tsk + interference_bound_function tsk A1 (A1 + F1) <= A1 + F1
LE1: F1 + (task_cost tsk - task_rtct tsk) <= R
BIG: (t2 <= t1 + (A1 + F1)) = false
completed_by sched j (job_arrival j + R)
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
j: Job
ARR: arrives_in arr_seq j
JOBtsk: job_of_task tsk j
POS: 0 < job_cost j
t1, t2: nat
T2: t2 <= t1 + L
BUSY: definitions.busy_interval sched interference interfering_workload j t1 t2
GE: t1 <= job_arrival j
LT: job_arrival j < t2
QTt2: quiet_time sched interference interfering_workload j t2
A2:= job_arrival j - t1: nat
A2LTL: A2 < L
A1: nat
ALEA2: A1 <= A2
EQΦ: are_equivalent_at_values_less_than (interference_bound_function tsk A2) (interference_bound_function tsk A1) L
INSP: search_space.is_in_search_space tsk L interference_bound_function A1
F1: nat
FIX1: task_rtct tsk + interference_bound_function tsk A1 (A1 + F1) <= A1 + F1
LE1: F1 + (task_cost tsk - task_rtct tsk) <= R
BIG: (t2 <= t1 + (A1 + F1)) = true

completed_by sched j (job_arrival j + R)
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
j: Job
ARR: arrives_in arr_seq j
JOBtsk: job_of_task tsk j
POS: 0 < job_cost j
t1, t2: nat
T2: t2 <= t1 + L
BUSY: definitions.busy_interval sched interference interfering_workload j t1 t2
GE: t1 <= job_arrival j
LT: job_arrival j < t2
QTt2: quiet_time sched interference interfering_workload j t2
A2:= job_arrival j - t1: nat
A2LTL: A2 < L
A1: nat
ALEA2: A1 <= A2
EQΦ: are_equivalent_at_values_less_than (interference_bound_function tsk A2) (interference_bound_function tsk A1) L
INSP: search_space.is_in_search_space tsk L interference_bound_function A1
F1: nat
FIX1: task_rtct tsk + interference_bound_function tsk A1 (A1 + F1) <= A1 + F1
LE1: F1 + (task_cost tsk - task_rtct tsk) <= R
BIG: (t2 <= t1 + (A1 + F1)) = false
completed_by sched j (job_arrival j + R)
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
j: Job
ARR: arrives_in arr_seq j
JOBtsk: job_of_task tsk j
POS: 0 < job_cost j
t1, t2: nat
T2: t2 <= t1 + L
BUSY: definitions.busy_interval sched interference interfering_workload j t1 t2
GE: t1 <= job_arrival j
LT: job_arrival j < t2
QTt2: quiet_time sched interference interfering_workload j t2
A2:= job_arrival j - t1: nat
A2LTL: A2 < L
A1: nat
ALEA2: A1 <= A2
EQΦ: are_equivalent_at_values_less_than (interference_bound_function tsk A2) (interference_bound_function tsk A1) L
INSP: search_space.is_in_search_space tsk L interference_bound_function A1
F1: nat
FIX1: task_rtct tsk + interference_bound_function tsk A1 (A1 + F1) <= A1 + F1
LE1: F1 + (task_cost tsk - task_rtct tsk) <= R
BIG: (t2 <= t1 + (A1 + F1)) = false

completed_by sched j (job_arrival j + R)
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
j: Job
ARR: arrives_in arr_seq j
JOBtsk: job_of_task tsk j
POS: 0 < job_cost j
t1, t2: nat
T2: t2 <= t1 + L
BUSY: definitions.busy_interval sched interference interfering_workload j t1 t2
GE: t1 <= job_arrival j
LT: job_arrival j < t2
QTt2: quiet_time sched interference interfering_workload j t2
A2:= job_arrival j - t1: nat
A2LTL: A2 < L
A1: nat
ALEA2: A1 <= A2
EQΦ: are_equivalent_at_values_less_than (interference_bound_function tsk A2) (interference_bound_function tsk A1) L
INSP: search_space.is_in_search_space tsk L interference_bound_function A1
F1: nat
FIX1: task_rtct tsk + interference_bound_function tsk A1 (A1 + F1) <= A1 + F1
LE1: F1 + (task_cost tsk - task_rtct tsk) <= R
BIG: (t2 <= t1 + (A1 + F1)) = false

completed_by sched j (job_arrival j + R)
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
j: Job
ARR: arrives_in arr_seq j
JOBtsk: job_of_task tsk j
POS: 0 < job_cost j
t1, t2: nat
T2: t2 <= t1 + L
BUSY: definitions.busy_interval sched interference interfering_workload j t1 t2
GE: t1 <= job_arrival j
LT: job_arrival j < t2
QTt2: quiet_time sched interference interfering_workload j t2
A2:= job_arrival j - t1: nat
A2LTL: A2 < L
A1: nat
ALEA2: A1 <= A2
EQΦ: are_equivalent_at_values_less_than (interference_bound_function tsk A2) (interference_bound_function tsk A1) L
INSP: search_space.is_in_search_space tsk L interference_bound_function A1
F1: nat
FIX1: task_rtct tsk + interference_bound_function tsk A1 (A1 + F1) <= A1 + F1
LE1: F1 + (task_cost tsk - task_rtct tsk) <= R
BIG: t1 + (A1 + F1) < t2

completed_by sched j (job_arrival j + R)
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
j: Job
ARR: arrives_in arr_seq j
JOBtsk: job_of_task tsk j
POS: 0 < job_cost j
t1, t2: nat
T2: t2 <= t1 + L
BUSY: definitions.busy_interval sched interference interfering_workload j t1 t2
GE: t1 <= job_arrival j
LT: job_arrival j < t2
QTt2: quiet_time sched interference interfering_workload j t2
A2:= job_arrival j - t1: nat
A2LTL: A2 < L
A1: nat
ALEA2: A1 <= A2
EQΦ: are_equivalent_at_values_less_than (interference_bound_function tsk A2) (interference_bound_function tsk A1) L
INSP: search_space.is_in_search_space tsk L interference_bound_function A1
F1: nat
FIX1: task_rtct tsk + interference_bound_function tsk A1 (A1 + F1) <= A1 + F1
LE1: F1 + (task_cost tsk - task_rtct tsk) <= R
BIG: t1 + (A1 + F1) < t2
BOUND: (A2 <= A1 + F1) = true

completed_by sched j (job_arrival j + R)
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
j: Job
ARR: arrives_in arr_seq j
JOBtsk: job_of_task tsk j
POS: 0 < job_cost j
t1, t2: nat
T2: t2 <= t1 + L
BUSY: definitions.busy_interval sched interference interfering_workload j t1 t2
GE: t1 <= job_arrival j
LT: job_arrival j < t2
QTt2: quiet_time sched interference interfering_workload j t2
A2:= job_arrival j - t1: nat
A2LTL: A2 < L
A1: nat
ALEA2: A1 <= A2
EQΦ: are_equivalent_at_values_less_than (interference_bound_function tsk A2) (interference_bound_function tsk A1) L
INSP: search_space.is_in_search_space tsk L interference_bound_function A1
F1: nat
FIX1: task_rtct tsk + interference_bound_function tsk A1 (A1 + F1) <= A1 + F1
LE1: F1 + (task_cost tsk - task_rtct tsk) <= R
BIG: t1 + (A1 + F1) < t2
BOUND: (A2 <= A1 + F1) = false
completed_by sched j (job_arrival j + R)
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
j: Job
ARR: arrives_in arr_seq j
JOBtsk: job_of_task tsk j
POS: 0 < job_cost j
t1, t2: nat
T2: t2 <= t1 + L
BUSY: definitions.busy_interval sched interference interfering_workload j t1 t2
GE: t1 <= job_arrival j
LT: job_arrival j < t2
QTt2: quiet_time sched interference interfering_workload j t2
A2:= job_arrival j - t1: nat
A2LTL: A2 < L
A1: nat
ALEA2: A1 <= A2
EQΦ: are_equivalent_at_values_less_than (interference_bound_function tsk A2) (interference_bound_function tsk A1) L
INSP: search_space.is_in_search_space tsk L interference_bound_function A1
F1: nat
FIX1: task_rtct tsk + interference_bound_function tsk A1 (A1 + F1) <= A1 + F1
LE1: F1 + (task_cost tsk - task_rtct tsk) <= R
BIG: t1 + (A1 + F1) < t2
BOUND: (A2 <= A1 + F1) = true

completed_by sched j (job_arrival j + R)
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
j: Job
ARR: arrives_in arr_seq j
JOBtsk: job_of_task tsk j
POS: 0 < job_cost j
t1, t2: nat
T2: t2 <= t1 + L
BUSY: definitions.busy_interval sched interference interfering_workload j t1 t2
GE: t1 <= job_arrival j
LT: job_arrival j < t2
QTt2: quiet_time sched interference interfering_workload j t2
A2:= job_arrival j - t1: nat
A2LTL: A2 < L
A1: nat
ALEA2: A1 <= A2
EQΦ: are_equivalent_at_values_less_than (interference_bound_function tsk A2) (interference_bound_function tsk A1) L
INSP: search_space.is_in_search_space tsk L interference_bound_function A1
F1: nat
FIX1: task_rtct tsk + interference_bound_function tsk A1 (A1 + F1) <= A1 + F1
LE1: F1 + (task_cost tsk - task_rtct tsk) <= R
BIG: t1 + (A1 + F1) < t2
BOUND: (A2 <= A1 + F1) = false
completed_by sched j (job_arrival j + R)
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
j: Job
ARR: arrives_in arr_seq j
JOBtsk: job_of_task tsk j
POS: 0 < job_cost j
t1, t2: nat
T2: t2 <= t1 + L
BUSY: definitions.busy_interval sched interference interfering_workload j t1 t2
GE: t1 <= job_arrival j
LT: job_arrival j < t2
QTt2: quiet_time sched interference interfering_workload j t2
A2:= job_arrival j - t1: nat
A2LTL: A2 < L
A1: nat
ALEA2: A1 <= A2
EQΦ: are_equivalent_at_values_less_than (interference_bound_function tsk A2) (interference_bound_function tsk A1) L
INSP: search_space.is_in_search_space tsk L interference_bound_function A1
F1: nat
FIX1: task_rtct tsk + interference_bound_function tsk A1 (A1 + F1) <= A1 + F1
LE1: F1 + (task_cost tsk - task_rtct tsk) <= R
BIG: t1 + (A1 + F1) < t2
BOUND: (A2 <= A1 + F1) = false

completed_by sched j (job_arrival j + R)
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
j: Job
ARR: arrives_in arr_seq j
JOBtsk: job_of_task tsk j
POS: 0 < job_cost j
t1, t2: nat
T2: t2 <= t1 + L
BUSY: definitions.busy_interval sched interference interfering_workload j t1 t2
GE: t1 <= job_arrival j
LT: job_arrival j < t2
QTt2: quiet_time sched interference interfering_workload j t2
A2:= job_arrival j - t1: nat
A2LTL: A2 < L
A1: nat
ALEA2: A1 <= A2
EQΦ: are_equivalent_at_values_less_than (interference_bound_function tsk A2) (interference_bound_function tsk A1) L
INSP: search_space.is_in_search_space tsk L interference_bound_function A1
F1: nat
FIX1: task_rtct tsk + interference_bound_function tsk A1 (A1 + F1) <= A1 + F1
LE1: F1 + (task_cost tsk - task_rtct tsk) <= R
BIG: t1 + (A1 + F1) < t2
BOUND: (A2 <= A1 + F1) = false

completed_by sched j (job_arrival j + R)
Task: TaskType
H: TaskCost Task
H0: TaskRunToCompletionThreshold Task
Job: JobType
H1: JobTask Job Task
JA: JobArrival Job
JC: JobCost Job
H2: JobPreemptable Job
PState: ProcessorState Job
H_ideal_progress_proc_model: ideal_progress_proc_model PState
H_unit_service_proc_model: unit_service_proc_model PState
arr_seq: arrival_sequence Job
H_arrival_times_are_consistent: consistent_arrival_times arr_seq
H_arr_seq_is_a_set: arrival_sequence_uniq 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
H_valid_preemption_model: valid_preemption_model arr_seq sched
H_valid_run_to_completion_threshold: valid_task_run_to_completion_threshold arr_seq tsk
work_conserving:= definitions.work_conserving arr_seq sched: (Job -> instant -> bool) -> (Job -> instant -> duration) -> Prop
busy_intervals_are_bounded_by:= definitions.busy_intervals_are_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> nat -> Prop
job_interference_is_bounded_by:= definitions.job_interference_is_bounded_by arr_seq sched tsk: (Job -> instant -> bool) -> (Job -> instant -> duration) -> (Task -> duration -> duration -> duration) -> Prop
interference: Job -> instant -> bool
interfering_workload: Job -> instant -> duration
H_work_conserving: work_conserving interference interfering_workload
cumul_interference:= definitions.cumul_interference interference: Job -> nat -> nat -> nat
cumul_interfering_workload:= definitions.cumul_interfering_workload interfering_workload: Job -> nat -> nat -> nat
busy_interval:= definitions.busy_interval sched interference interfering_workload: Job -> instant -> instant -> Prop
response_time_bounded_by:= task_response_time_bound arr_seq sched: Task -> duration -> Prop
L: duration
H_busy_interval_exists: busy_intervals_are_bounded_by interference interfering_workload L
interference_bound_function: Task -> duration -> duration -> duration
H_job_interference_is_bounded: job_interference_is_bounded_by interference interfering_workload interference_bound_function
is_in_search_space:= [eta search_space.is_in_search_space tsk L interference_bound_function]: nat -> Prop
R: nat
H_R_is_maximum: forall A : nat, is_in_search_space A -> exists F : nat, task_rtct tsk + interference_bound_function tsk A (A + F) <= A + F /\ F + (task_cost tsk - task_rtct tsk) <= R
j: Job
ARR: arrives_in arr_seq j
JOBtsk: job_of_task tsk j
POS: 0 < job_cost j
t1, t2: nat
T2: t2 <= t1 + L
BUSY: definitions.busy_interval sched interference interfering_workload j t1 t2
GE: t1 <= job_arrival j
LT: job_arrival j < t2
QTt2: quiet_time sched interference interfering_workload j t2
A2:= job_arrival j - t1: nat
A2LTL: A2 < L
A1: nat
ALEA2: A1 <= A2
EQΦ: are_equivalent_at_values_less_than (interference_bound_function tsk A2) (interference_bound_function tsk A1) L
INSP: search_space.is_in_search_space tsk L interference_bound_function A1
F1: nat
FIX1: task_rtct tsk + interference_bound_function tsk A1 (A1 + F1) <= A1 + F1
LE1: F1 + (task_cost tsk - task_rtct tsk) <= R
BIG: t1 + (A1 + F1) < t2
BOUND: A1 + F1 < A2

completed_by sched j (job_arrival j + R)
exfalso; apply relative_arrival_time_is_no_less_than_fixpoint with (j := j) (t1 := t1) (t2 := t2) (A_sp := A1) (F_sp := F1); auto. Qed. End Abstract_RTA.