X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=matita%2Fmatita%2Fcontribs%2Flambdadelta%2Fground_2%2Flib%2Fstreams.ma;fp=matita%2Fmatita%2Fcontribs%2Flambdadelta%2Fground_2%2Flib%2Fstreams.ma;h=0000000000000000000000000000000000000000;hb=e8fb201bad04ec30867659c2d42ef45a4b6c3393;hp=e1b3a68124c4ae14047c5ef8f75d17bf7257e3ae;hpb=bf816f05ddbe0ded4948dd33490619724dc4f7cf;p=helm.git diff --git a/matita/matita/contribs/lambdadelta/ground_2/lib/streams.ma b/matita/matita/contribs/lambdadelta/ground_2/lib/streams.ma deleted file mode 100644 index e1b3a6812..000000000 --- a/matita/matita/contribs/lambdadelta/ground_2/lib/streams.ma +++ /dev/null @@ -1,30 +0,0 @@ -(**************************************************************************) -(* ___ *) -(* ||M|| *) -(* ||A|| A project by Andrea Asperti *) -(* ||T|| *) -(* ||I|| Developers: *) -(* ||T|| The HELM team. *) -(* ||A|| http://helm.cs.unibo.it *) -(* \ / *) -(* \ / This file is distributed under the terms of the *) -(* v GNU General Public License Version 2 *) -(* *) -(**************************************************************************) - -include "ground_2/notation/functions/oplusright_3.ma". -include "ground_2/lib/relations.ma". - -(* STREAMS ******************************************************************) - -coinductive stream (A:Type[0]): Type[0] ≝ -| seq: A → stream A → stream A -. - -interpretation "cons (nstream)" 'OPlusRight A a u = (seq A a u). - -(* Basic properties *********************************************************) - -lemma stream_rew (A) (t:stream A): match t with [ seq a u ⇒ a ⨮ u ] = t. -#A * // -qed.