X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;ds=inline;f=matita%2Fmatita%2Fcontribs%2Flambdadelta%2Fbasic_2%2Fcomputation%2Ffsb.ma;h=64090eec97d6003aa5b9807f9164c43413019dfb;hb=bd264ed7070e6fbb8d77fc85994e0ceb684fca7c;hp=6c24fe86b35e664af61b63b74c9a62e717979d4a;hpb=2ce98dc56948742e1d27ca4a8b96a3501962d968;p=helm.git diff --git a/matita/matita/contribs/lambdadelta/basic_2/computation/fsb.ma b/matita/matita/contribs/lambdadelta/basic_2/computation/fsb.ma index 6c24fe86b..64090eec9 100644 --- a/matita/matita/contribs/lambdadelta/basic_2/computation/fsb.ma +++ b/matita/matita/contribs/lambdadelta/basic_2/computation/fsb.ma @@ -13,8 +13,8 @@ (**************************************************************************) include "basic_2/notation/relations/btsn_5.ma". -include "basic_2/reduction/fpbc.ma". -include "basic_2/computation/csx.ma". +include "basic_2/computation/fpbc.ma". +include "basic_2/computation/csx_alt.ma". (* "BIG TREE" STRONGLY NORMALIZING TERMS ************************************) @@ -30,19 +30,18 @@ interpretation (* Basic eliminators ********************************************************) -theorem fsb_ind_alt: ∀h,g. ∀R: relation3 …. ( - ∀G1,L1,T1. ⦃G1, L1⦄ ⊢ ⦥[h,g] T1 → ( - ∀G2,L2,T2. ⦃G1, L1, T1⦄ ≽[h, g] ⦃G2, L2, T2⦄ → - (⦃G1, L1, T1⦄ ⋕ ⦃G2, L2, T2⦄ → ⊥) → R G2 L2 T2 - ) → R G1 L1 T1 - ) → - ∀G,L,T. ⦃G, L⦄ ⊢ ⦥[h, g] T → R G L T. +lemma fsb_ind_alt: ∀h,g. ∀R: relation3 …. ( + ∀G1,L1,T1. ⦃G1, L1⦄ ⊢ ⦥[h,g] T1 → ( + ∀G2,L2,T2. ⦃G1, L1, T1⦄ ≻[h, g] ⦃G2, L2, T2⦄ → R G2 L2 T2 + ) → R G1 L1 T1 + ) → + ∀G,L,T. ⦃G, L⦄ ⊢ ⦥[h, g] T → R G L T. #h #g #R #IH #G #L #T #H elim H -G -L -T -/5 width=1 by fpb_fpbc, fsb_intro/ +/4 width=1 by fsb_intro/ qed-. (* Basic inversion lemmas ***************************************************) lemma fsb_inv_csx: ∀h,g,G,L,T. ⦃G, L⦄ ⊢ ⦥[h, g] T → ⦃G, L⦄ ⊢ ⬊*[h, g] T. -#h #g #G #L #T #H elim H -G -L -T /5 width=1 by csx_intro, fpbc_cpx/ +#h #g #G #L #T #H elim H -G -L -T /5 width=1 by csx_intro_cprs, fpbc_cpxs/ qed-.