Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
R
rt-proofs
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Sophie Quinton
rt-proofs
Commits
d0f04417
Commit
d0f04417
authored
Nov 04, 2016
by
Felipe Cerqueira
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add lemma about jitter-aware schedules
parent
0ed31f27
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
1 deletion
+10
-1
model/schedule/uni/jitter/schedule.v
model/schedule/uni/jitter/schedule.v
+10
-1
No files found.
model/schedule/uni/jitter/schedule.v
View file @
d0f04417
...
...
@@ -71,7 +71,16 @@ Module UniprocessorScheduleWithJitter.
(* Now, let j be any job in the arrival sequence. *)
Variable
j
:
JobIn
arr_seq
.
(* We prove that job j does not receive service at any time t before its actual arrival time. *)
(* Next, we show that if the jitter has passed, then the job must have arrived. *)
Lemma
jitter_has_passed_implies_arrived
:
forall
t
,
jitter_has_passed
job_jitter
j
t
->
has_arrived
j
t
.
Proof
.
by
intros
t
PASS
;
apply
:
leq_trans
PASS
;
apply
leq_addr
.
Qed
.
(* Now we prove that job j does not receive service at any time t before
its actual arrival time. *)
Lemma
service_before_jitter_is_zero
:
forall
t
,
t
<
actual_arrival
job_jitter
j
->
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment