]> matita.cs.unibo.it Git - helm.git/blobdiff - matita/matita/contribs/lambda/st_computation.ma
- new pointes can point to any subterm
[helm.git] / matita / matita / contribs / lambda / st_computation.ma
index fc7667a40640c66faca4572a1bbb4068db84143b..c9f9aa9477f6dc1be2369b003948b2fe9aaf6704 100644 (file)
@@ -21,7 +21,7 @@ include "labelled_hap_computation.ma".
 *)
 inductive st: relation term ≝
 | st_vref: ∀s,M,i. lhap s M (#i) → st M (#i)
-| st_abst: ∀s,M,A,C. lhap s M (𝛌.A) → st A C → st M (𝛌.C)
-| st_appl: ∀s,M,B,D,A,C. lhap s M (@B.A) → st B D → st A C → st M (@D.C) 
+| st_abst: ∀s,M,A1,A2. lhap s M (𝛌.A1) → st A1 A2 → st M (𝛌.A2)
+| st_appl: ∀s,M,B1,B2,A1,A2. lhap s M (@B1.A1) → st B1 B2 → st A1 A2 → st M (@B2.A2)
 .