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
4aa95f10
Commit
4aa95f10
authored
9 years ago
by
Felipe Cerqueira
Browse files
Options
Downloads
Patches
Plain Diff
Initial definitions for jitter
parent
ef762c20
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
WorkloadDefsJitter.v
+601
-0
601 additions, 0 deletions
WorkloadDefsJitter.v
eqtaskjitter_dec.v
+21
-0
21 additions, 0 deletions
eqtaskjitter_dec.v
with
622 additions
and
0 deletions
WorkloadDefsJitter.v
0 → 100644
+
601
−
0
View file @
4aa95f10
This diff is collapsed.
Click to expand it.
eqtaskjitter_dec.v
0 → 100644
+
21
−
0
View file @
4aa95f10
(* Assume decidable equality for tasks, so that it can be
used in computations. *)
Require
Import
eqtype
.
Parameter
task_eq_dec
:
sporadic_task_with_jitter
->
sporadic_task_with_jitter
->
bool
.
Axiom
eqn_task
:
Equality
.
axiom
task_eq_dec
.
Canonical
task_eqMixin
:=
EqMixin
eqn_task
.
Canonical
task_eqType
:=
Eval
hnf
in
EqType
sporadic_task_with_jitter
task_eqMixin
.
(*Definition task_eq_dec (x y: sporadic_task) : {x = y} + {x <> y}.
destruct x, y.
destruct (eq_op task_id0 task_id1) eqn:Eid;
destruct (eq_op task_cost0 task_cost1) eqn:Ecost;
destruct (eq_op task_period0 task_period1) eqn:Eperiod;
destruct (eq_op task_deadline0 task_deadline1) eqn:Edl;
move: Eid Ecost Eperiod Edl => /eqP Eid /eqP Ecost /eqP Eperiod /eqP Edl; subst;
try (by left; ins);
try (by right; unfold not; intro EQ; inversion EQ; intuition).
Qed.*)
\ 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