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
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
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
Lasse Blaauwbroek
PROSA - Formally Proven Schedulability Analysis
Commits
0ceae791
Commit
0ceae791
authored
5 years ago
by
Björn Brandenburg
Browse files
Options
Downloads
Patches
Plain Diff
note equivalence of assumptions in case of basic readiness
parent
b59b3d3a
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
restructuring/model/readiness/basic.v
+21
-0
21 additions, 0 deletions
restructuring/model/readiness/basic.v
with
21 additions
and
0 deletions
restructuring/model/readiness/basic.v
+
21
−
0
View file @
0ceae791
From
rt
.
restructuring
.
behavior
Require
Export
schedule
.
From
rt
.
restructuring
.
behavior
Require
Export
schedule
.
From
rt
.
restructuring
.
behavior
.
facts
Require
Import
completion
.
(* We define the readiness indicator function for the classic Liu & Layland
(* We define the readiness indicator function for the classic Liu & Layland
model without jitter and no self-suspensions, where jobs are always
model without jitter and no self-suspensions, where jobs are always
...
@@ -22,4 +23,24 @@ Section LiuAndLaylandReadiness.
...
@@ -22,4 +23,24 @@ Section LiuAndLaylandReadiness.
}
.
}
.
Proof
.
trivial
.
Defined
.
Proof
.
trivial
.
Defined
.
(* Under this definition, a schedule satisfies that only ready jobs execute
as long as jobs must arrive to execute and completed jobs don't execute,
which we note with the following theorem. *)
Theorem
basic_readiness_compliance
:
forall
sched
,
jobs_must_arrive_to_execute
sched
->
completed_jobs_dont_execute
sched
->
jobs_must_be_ready_to_execute
sched
.
Proof
.
move
=>
sched
ARR
COMP
.
rewrite
/
jobs_must_be_ready_to_execute
=>
j
t
SCHED
.
rewrite
/
job_ready
/
basic_ready_instance
/
pending
.
apply
/
andP
;
split
.
-
by
apply
ARR
.
-
rewrite
-
less_service_than_cost_is_incomplete
.
by
apply
COMP
.
Qed
.
End
LiuAndLaylandReadiness
.
End
LiuAndLaylandReadiness
.
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