]> matita.cs.unibo.it Git - helm.git/blobdiff - matita/matita/contribs/lambdadelta/static_2/syntax/term_vector.ma
partial update in static_2
[helm.git] / matita / matita / contribs / lambdadelta / static_2 / syntax / term_vector.ma
index 25327ed32cab08c0431c30ddfd3e7ec72a5dc95a..82581af61bc71ed7e62272a456625c4dd9f39196 100644 (file)
@@ -19,10 +19,10 @@ include "static_2/syntax/term_simple.ma".
 (* TERMS ********************************************************************)
 
 rec definition applv Vs T on Vs ≝
-  match Vs with
-  [ nil        ⇒ T
-  | cons hd pr_tl ⇒ ⓐhd. (applv pr_tl T)
-  ].
+match Vs with
+[ list_nil        ⇒ T
+| list_cons hd tl ⇒ ⓐhd. (applv tl T)
+].
 
 interpretation "application to vector (term)"
    'SnApplVector Vs T = (applv Vs T).