Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Sergey Bozhko
rt-proofs
Commits
a03c73df
Commit
a03c73df
authored
May 24, 2019
by
Maxime Lesourd
Committed by
Björn Brandenburg
Jun 05, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Renaming in arrival_sequence.v
parent
82454601
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
5 deletions
+10
-5
behavior/arrival/arrival_sequence.v
behavior/arrival/arrival_sequence.v
+10
-5
No files found.
behavior/arrival/arrival_sequence.v
View file @
a03c73df
...
...
@@ -39,8 +39,8 @@ End JobProperties.
Class
JobArrival
(
J
:
JobType
)
:
=
job_arrival
:
J
->
instant
.
(* Next, we define
properties of a
valid arrival sequence. *)
Section
ArrivalSequence
Properties
.
(* Next, we define valid arrival sequence
s
. *)
Section
Valid
ArrivalSequence
.
(* Assume that job arrival times are known. *)
Context
{
Job
:
JobType
}.
...
...
@@ -59,10 +59,15 @@ Section ArrivalSequenceProperties.
jobs at any given time. *)
Definition
arrival_sequence_is_a_set
:
=
forall
t
,
uniq
(
jobs_arriving_at
arr_seq
t
).
End
ArrivalSequenceProperties
.
(* We say that the arrival sequence is valid iff it is a set and arrival times
are consistent *)
Definition
arrival_sequence_is_valid
:
=
arrival_times_are_consistent
/\
arrival_sequence_is_a_set
.
End
ValidArrivalSequence
.
(* Next, we define properties of job arrival times. *)
Section
PropertiesOf
ArrivalTime
.
Section
ArrivalTime
Properties
.
(* Assume that job arrival times are known. *)
Context
{
Job
:
JobType
}.
...
...
@@ -83,7 +88,7 @@ Section PropertiesOfArrivalTime.
some time t with t1 <= t < t2. *)
Definition
arrived_between
(
t1
t2
:
instant
)
:
=
t1
<=
job_arrival
j
<
t2
.
End
PropertiesOf
ArrivalTime
.
End
ArrivalTime
Properties
.
(* In this section, we define arrival sequence prefixes, which are useful to
define (computable) properties over sets of jobs in the schedule. *)
...
...
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