]> matita.cs.unibo.it Git - helm.git/commitdiff
...
authorClaudio Sacerdoti Coen <claudio.sacerdoticoen@unibo.it>
Thu, 2 Aug 2012 20:03:52 +0000 (20:03 +0000)
committerClaudio Sacerdoti Coen <claudio.sacerdoticoen@unibo.it>
Thu, 2 Aug 2012 20:03:52 +0000 (20:03 +0000)
matita/matita/lib/extraction.ma

index bb6af07e00ea222697d6ccebc8069d00df791b80..a1c49f8f0c2f35b04370f11d8cd4a2b1cd060dfe 100644 (file)
@@ -155,6 +155,9 @@ coinductive stream: Type[0] ≝ scons : nat → stream → stream.
 
 let corec div (n:nat) : stream ≝ scons n (div (S n)).
 
+definition rtest2 : nat → stream → nat ≝
+ λm,s. match s with [ scons n l ⇒ m + n ].
+
 (*
 let rec mkterm (n:nat) : nat ≝
  match n with