From 49898a533578846598c7d8a62e8de2f1fcca84c0 Mon Sep 17 00:00:00 2001 From: herbelin Date: Fri, 10 Oct 2003 19:19:05 +0000 Subject: MAJ commentaires git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@4583 85f007b7-540e-0410-9357-904b9bb8a0f7 --- theories/Lists/Streams.v | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/theories/Lists/Streams.v b/theories/Lists/Streams.v index 35d67e5681..9bbbe0e46c 100755 --- a/theories/Lists/Streams.v +++ b/theories/Lists/Streams.v @@ -10,7 +10,9 @@ Set Implicit Arguments. -Section Streams. (* The set of streams : definition *) +(** Streams *) + +Section Streams. Variable A : Set. @@ -125,9 +127,9 @@ Section Stream_Properties. Variable P : Stream->Prop. (*i -Inductive Exists : Stream -> Prop := - Here : (x:Stream)(P x) ->(Exists x) | - Further : (x:Stream)~(P x)->(Exists (tl x))->(Exists x). +Inductive Exists : Stream -> Prop := + | Here : forall x:Stream, P x -> Exists x + | Further : forall x:Stream, ~ P x -> Exists (tl x) -> Exists x. i*) Inductive Exists : Stream -> Prop := -- cgit v1.2.3