]> matita.cs.unibo.it Git - helm.git/blobdiff - matita/matita/contribs/lambdadelta/ground_2/lib/list2.ma
update in ground_2 and models
[helm.git] / matita / matita / contribs / lambdadelta / ground_2 / lib / list2.ma
index f730994456a9aa47a4552787b5f68e280e688a38..f9d93b74e92a8aea80964134d15e8b72079c454c 100644 (file)
@@ -13,8 +13,7 @@
 (**************************************************************************)
 
 include "ground_2/notation/constructors/nil_0.ma".
-include "ground_2/notation/constructors/cons_3.ma".
-include "ground_2/notation/functions/append_2.ma".
+include "ground_2/notation/constructors/oplusright_5.ma".
 include "ground_2/lib/arith.ma".
 
 (* LISTS OF PAIRS ***********************************************************)
@@ -25,19 +24,12 @@ inductive list2 (A1,A2:Type[0]) : Type[0] :=
 
 interpretation "nil (list of pairs)" 'Nil = (nil2 ? ?).
 
-interpretation "cons (list of pairs)" 'Cons hd1 hd2 tl = (cons2 ? ? hd1 hd2 tl).
+interpretation "cons (list of pairs)"
+  'OPlusRight A1 A2 hd1 hd2 tl = (cons2 A1 A2 hd1 hd2 tl).
 
-let rec append2 (A1,A2:Type[0]) (l1,l2:list2 A1 A2) on l1 ≝ match l1 with
-[ nil2           ⇒ l2
-| cons2 a1 a2 tl ⇒ {a1, a2} @ append2 A1 A2 tl l2
-].
-
-interpretation "append (list of pairs)"
-   'Append l1 l2 = (append2 ? ? l1 l2).
-
-let rec length2 (A1,A2:Type[0]) (l:list2 A1 A2) on l ≝ match l with
+rec definition length2 A1 A2 (l:list2 A1 A2) on l ≝ match l with
 [ nil2        ⇒ 0
-| cons2 _ _ l â\87\92 â«¯(length2 A1 A2 l)
+| cons2 _ _ l â\87\92 â\86\91(length2 A1 A2 l)
 ].
 
 interpretation "length (list of pairs)"