]> matita.cs.unibo.it Git - helm.git/blob - matita/matita/contribs/lambdadelta/basic_2/computation/lpxs_alt.ma
e93c88d5c5880b1f6889977975971579dcc71572
[helm.git] / matita / matita / contribs / lambdadelta / basic_2 / computation / lpxs_alt.ma
1 (**************************************************************************)
2 (*       ___                                                              *)
3 (*      ||M||                                                             *)
4 (*      ||A||       A project by Andrea Asperti                           *)
5 (*      ||T||                                                             *)
6 (*      ||I||       Developers:                                           *)
7 (*      ||T||         The HELM team.                                      *)
8 (*      ||A||         http://helm.cs.unibo.it                             *)
9 (*      \   /                                                             *)
10 (*       \ /        This file is distributed under the terms of the       *)
11 (*        v         GNU General Public License Version 2                  *)
12 (*                                                                        *)
13 (**************************************************************************)
14
15 include "basic_2/computation/cpxs_cpxs.ma".
16 include "basic_2/computation/lpxs.ma".
17
18 (* SN EXTENDED PARALLEL COMPUTATION ON LOCAL ENVIRONMENTS *******************)
19
20 (* alternative definition *)
21 definition lpxsa: ∀h. sd h → relation lenv ≝ λh,g. lpx_sn … (cpxs h g).
22
23 interpretation "extended parallel computation (local environment, sn variant) alternative"
24    'PRedSnStarAlt h g L1 L2 = (lpxsa h g L1 L2).
25
26 (* Main properties on the alternative definition ****************************)
27
28 theorem lpxsa_lpxs: ∀h,g,L1,L2. ⦃h, L1⦄ ⊢ ➡➡*[g] L2 → ⦃h, L1⦄ ⊢ ➡*[g] L2.
29 /2 width=1 by lpx_sn_LTC_TC_lpx_sn/ qed-.
30
31 (* Main inversion lemmas on the alternative definition **********************)
32
33 theorem lpxs_inv_lpxsa: ∀h,g,L1,L2. ⦃h, L1⦄ ⊢ ➡*[g] L2 → ⦃h, L1⦄ ⊢ ➡➡*[g] L2.
34 /3 width=3 by TC_lpx_sn_inv_lpx_sn_LTC, lpx_cpxs_trans/ qed-.
35
36 (* Alternative eliminators **************************************************)
37
38 lemma lpxs_ind_alt: ∀h,g. ∀R:relation lenv.
39                     R (⋆) (⋆) → (
40                        ∀I,K1,K2,V1,V2.
41                        ⦃h, K1⦄ ⊢ ➡*[g] K2 → ⦃h, K1⦄ ⊢ V1 ➡*[g] V2 →
42                        R K1 K2 → R (K1.ⓑ{I}V1) (K2.ⓑ{I}V2)
43                     ) →
44                     ∀L1,L2. ⦃h, L1⦄ ⊢ ➡*[g] L2 → R L1 L2.
45 /3 width=4 by TC_lpx_sn_ind, lpx_cpxs_trans/ qed-.