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
47eb79c0
Commit
47eb79c0
authored
8 years ago
by
Björn Brandenburg
Browse files
Options
Downloads
Patches
Plain Diff
Trivial fix: use proper processor type in cpu_idle def
parent
7f462118
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
model/basic/schedule.v
+1
-1
1 addition, 1 deletion
model/basic/schedule.v
with
1 addition
and
1 deletion
model/basic/schedule.v
+
1
−
1
View file @
47eb79c0
...
...
@@ -51,7 +51,7 @@ Module Schedule.
[
exists
cpu
,
scheduled_on
cpu
t
]
.
(* A processor cpu is idle at time t if it doesn't contain any jobs. *)
Definition
is_idle
(
cpu
:
'
I_
(
num_cpus
)
)
(
t
:
time
)
:=
Definition
is_idle
(
cpu
:
processor
num_cpus
)
(
t
:
time
)
:=
sched
cpu
t
=
None
.
(* The instantaneous service of job j at time t is the number of cpus
...
...
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