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
e27bc9ac
Commit
e27bc9ac
authored
5 years ago
by
Sergey Bozhko
Browse files
Options
Downloads
Patches
Plain Diff
Delete name of parameter
parent
85c8f5e1
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!79
Analysis Cleanup
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
analysis/facts/behavior/arrivals.v
+4
-5
4 additions, 5 deletions
analysis/facts/behavior/arrivals.v
with
4 additions
and
5 deletions
analysis/facts/behavior/arrivals.v
+
4
−
5
View file @
e27bc9ac
...
...
@@ -3,6 +3,7 @@ Require Export prosa.util.all.
(** In this section, we relate job readiness to [has_arrived]. *)
Section
Arrived
.
(** Consider any kinds of jobs and any kind of processor state. *)
Context
{
Job
:
JobType
}
{
PState
:
Type
}
.
Context
`{
ProcessorState
Job
PState
}
.
...
...
@@ -14,9 +15,7 @@ Section Arrived.
readiness. *)
Context
`{
JobCost
Job
}
.
Context
`{
JobArrival
Job
}
.
(* We give the readiness typeclass instance a name here because we rely on it
explicitly in proofs. *)
Context
{
ReadyParam
:
JobReady
Job
PState
}
.
Context
`{
JobReady
Job
PState
}
.
(** First, we note that readiness models are by definition consistent
w.r.t. [pending]. *)
...
...
@@ -24,7 +23,7 @@ Section Arrived.
forall
j
t
,
job_ready
sched
j
t
->
pending
sched
j
t
.
Proof
.
move
:
ReadyParam
=>
[
is_ready
CONSISTENT
]
.
move
:
H5
=>
[
is_ready
CONSISTENT
]
.
move
=>
j
t
READY
.
apply
CONSISTENT
.
by
exact
READY
.
...
...
@@ -202,4 +201,4 @@ Section ArrivalSequencePrefix.
End
Lemmas
.
End
ArrivalSequencePrefix
.
End
ArrivalSequencePrefix
.
\ No newline at end of file
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