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
3680cb8d
Commit
3680cb8d
authored
2 years ago
by
Pierre Roux
Committed by
Björn Brandenburg
2 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Remove suspension readiness Global Instance
parent
8f68244f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!205
Make instances of most type classes local
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
model/readiness/suspension.v
+5
-4
5 additions, 4 deletions
model/readiness/suspension.v
with
5 additions
and
4 deletions
model/readiness/suspension.v
+
5
−
4
View file @
3680cb8d
...
...
@@ -43,10 +43,11 @@ Section ReadinessOfSelfSuspendingJobs.
(** Based on [suspension_has_passed], we state the notion of readiness for
self-suspending jobs: a job [t] is ready at time [t] in a schedule
[sched] only if it is not self-suspended or complete at time [t]. *)
Global
Program
Instance
suspension_ready_instance
:
JobReady
Job
PState
:=
{
job_ready
sched
j
t
:=
suspension_has_passed
sched
j
t
&&
~~
completed_by
sched
j
t
}
.
#[
local
,
program
]
Instance
suspension_ready_instance
:
JobReady
Job
PState
:=
{
job_ready
sched
j
t
:=
suspension_has_passed
sched
j
t
&&
~~
completed_by
sched
j
t
}
.
Next
Obligation
.
move
:
H2
=>
/
andP
[
PASSED
UNFINISHED
]
.
rewrite
/
pending
.
apply
/
andP
.
split
=>
//.
...
...
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