Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
PROSA - Formally Proven Schedulability Analysis
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
RT-PROOFS
PROSA - Formally Proven Schedulability Analysis
Commits
3743b14e
Commit
3743b14e
authored
3 years ago
by
Kimaya Bedarkar
Committed by
Björn Brandenburg
3 years ago
Browse files
Options
Downloads
Patches
Plain Diff
add rewriting lemma on the workload of "all other jobs"
parent
9227bdb4
No related branches found
No related tags found
1 merge request
!175
Workload minus job cost
Pipeline
#57745
passed with warnings
3 years ago
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
analysis/facts/model/workload.v
+30
-1
30 additions, 1 deletion
analysis/facts/model/workload.v
with
30 additions
and
1 deletion
analysis/facts/model/workload.v
+
30
−
1
View file @
3743b14e
...
@@ -34,4 +34,33 @@ Section WorkloadFacts.
...
@@ -34,4 +34,33 @@ Section WorkloadFacts.
by
rewrite
(
arrivals_between_cat
_
_
t
)
//
big_cat
.
by
rewrite
(
arrivals_between_cat
_
_
t
)
//
big_cat
.
Qed
.
Qed
.
End
WorkloadFacts
.
(** Consider a job [j] ... *)
\ No newline at end of file
Variable
j
:
Job
.
(** ... and a duplicate-free sequence of jobs [jobs]. *)
Variable
jobs
:
seq
Job
.
Hypothesis
H_jobs_uniq
:
uniq
jobs
.
(** Further, assume that [j] is contained in [jobs]. *)
Hypothesis
H_j_in_jobs
:
j
\
in
jobs
.
(** To help with rewriting, we prove that the workload of [jobs]
minus the job cost of [j] is equal to the workload of all jobs
except [j]. To define the workload of all jobs, since
[workload_of_jobs] expects a predicate, we use [predT], which
is the always-true predicate. *)
Lemma
workload_minus_job_cost
:
workload_of_jobs
(
fun
jhp
:
Job
=>
jhp
!=
j
)
jobs
=
workload_of_jobs
predT
jobs
-
job_cost
j
.
Proof
.
rewrite
/
workload_of_jobs
(
big_rem
j
)
//=
eq_refl
//=
add0n
.
rewrite
[
in
RHS
](
big_rem
j
)
//=
addnC
-
subnBA
//=
subnn
subn0
.
rewrite
[
in
LHS
]
big_seq_cond
[
in
RHS
]
big_seq_cond
.
apply
eq_bigl
=>
j'
.
rewrite
Bool
.
andb_true_r
.
destruct
(
j'
\
in
rem
(
T
:=
Job
)
j
jobs
)
eqn
:
INjobs
;
last
by
done
.
apply
/
negP
=>
/
eqP
EQUAL
.
by
rewrite
EQUAL
mem_rem_uniqF
in
INjobs
.
Qed
.
End
WorkloadFacts
.
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment