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
e3757dbb
Commit
e3757dbb
authored
3 years ago
by
Sergey Bozhko
Committed by
Björn Brandenburg
2 years ago
Browse files
Options
Downloads
Patches
Plain Diff
introduce the notion of "total service of jobs"
parent
b5e717e6
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
model/aggregate/service_of_jobs.v
+18
-1
18 additions, 1 deletion
model/aggregate/service_of_jobs.v
with
18 additions
and
1 deletion
model/aggregate/service_of_jobs.v
+
18
−
1
View file @
e3757dbb
...
@@ -66,7 +66,7 @@ Section ServiceOfJobs.
...
@@ -66,7 +66,7 @@ Section ServiceOfJobs.
End
PerJobPriority
.
End
PerJobPriority
.
(**
Finally, w
e define the notion of cumulative service received by
(**
W
e define the notion of cumulative service received by
the jobs of a given task. *)
the jobs of a given task. *)
Section
ServiceOfTask
.
Section
ServiceOfTask
.
...
@@ -83,4 +83,21 @@ Section ServiceOfJobs.
...
@@ -83,4 +83,21 @@ Section ServiceOfJobs.
End
ServiceOfTask
.
End
ServiceOfTask
.
(** Finally, we define the notion of total service received by a set of jobs. *)
Section
TotalService
.
(** Let [jobs] denote any (finite) set of jobs. *)
Variable
jobs
:
seq
Job
.
(** We define the total service of [jobs] in an interval <<[t1,t2)>> simply
as a sum of the service of individual jobs in interval <<[t1,t2)>>.
(The predicate [predT] is the trivial predicate that always evaluates to
[true], meaning that no jobs are filtered, and hence all jobs are
accounted for.) *)
Definition
total_service_of_jobs_in
(
t1
t2
:
instant
)
:=
service_of_jobs
predT
jobs
t1
t2
.
End
TotalService
.
End
ServiceOfJobs
.
End
ServiceOfJobs
.
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