Skip to content
Snippets Groups Projects
Commit 07c10f01 authored by Sergey Bozhko's avatar Sergey Bozhko :eyes:
Browse files

Add lemma about arrivals in empty interval

parent bbab834c
No related branches found
No related tags found
No related merge requests found
...@@ -189,6 +189,15 @@ Section ArrivalSequencePrefix. ...@@ -189,6 +189,15 @@ Section ArrivalSequencePrefix.
by apply CONS in IN1; apply CONS in IN2; subst. by apply CONS in IN1; apply CONS in IN2; subst.
Qed. Qed.
(** Also note there can't by any arrivals in an empty time interval. *)
Lemma arrivals_between_geq:
forall t1 t2,
t1 >= t2 ->
arrivals_between arr_seq t1 t2 = [::].
Proof.
by intros ? ? GE; rewrite /arrivals_between big_geq.
Qed.
End ArrivalTimes. End ArrivalTimes.
End Lemmas. End Lemmas.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment