Skip to content

Commit ec1de6b

Browse files
committed
cosmetic fix
1 parent 82c011e commit ec1de6b

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

infseq.v

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ Definition hd (s:infseq) : T := match s with Cons x _ => x end.
2222
Definition tl (s:infseq) : infseq := match s with Cons _ s => s end.
2323

2424
Lemma recons : forall s, Cons (hd s) (tl s) = s.
25+
Proof.
2526
intros s.
2627
(* Trick : simpl doesn't progress, you have to eat s first *)
2728
case s. simpl. reflexivity.
@@ -227,6 +228,7 @@ Qed.
227228
Lemma eventually_until_cumul :
228229
forall (s: infseq T) P J,
229230
eventually P s -> until J P s -> eventually (P /\_ until J P) s.
231+
Proof.
230232
intros s P J ev. induction ev as [s Ps | x s evPs induc_hyp].
231233
intro un. constructor 1. split; assumption.
232234
intro unxs. case (until_Cons _ _ _ _ unxs).

0 commit comments

Comments
 (0)