]> matita.cs.unibo.it Git - helm.git/blobdiff - matita/matita/contribs/lambdadelta/basic_1/sn3/defs.ma
exportation of lambdadelta 1 with flavoured let recs
[helm.git] / matita / matita / contribs / lambdadelta / basic_1 / sn3 / defs.ma
index 90149df3299fce44df34521efdb18f791f55f34c..d9ba6092c50f190f1cd9b62c3155426b74541ed4 100644 (file)
@@ -20,7 +20,6 @@ inductive sn3 (c: C): T \to Prop \def
 | sn3_sing: \forall (t1: T).(((\forall (t2: T).((((eq T t1 t2) \to (\forall 
 (P: Prop).P))) \to ((pr3 c t1 t2) \to (sn3 c t2))))) \to (sn3 c t1)).
 
-let rec sns3 (c: C) (ts: TList) on ts: Prop \def match ts with [TNil 
-\Rightarrow True | (TCons t ts0) \Rightarrow (let TMP_1 \def (sn3 c t) in 
-(let TMP_2 \def (sns3 c ts0) in (land TMP_1 TMP_2)))].
+rec definition sns3 (c: C) (ts: TList) on ts: Prop \def match ts with [TNil 
+\Rightarrow True | (TCons t ts0) \Rightarrow (land (sn3 c t) (sns3 c ts0))].