]> matita.cs.unibo.it Git - helm.git/blob - matita/matita/contribs/lambdadelta/basic_2/rt_computation/cpms_lpr.ma
update in basic_2
[helm.git] / matita / matita / contribs / lambdadelta / basic_2 / rt_computation / cpms_lpr.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 "ground_2/lib/star.ma".
16 include "basic_2/rt_transition/lpr.ma".
17 include "basic_2/rt_computation/cpms.ma".
18
19 (* T-BOUND CONTEXT-SENSITIVE PARALLEL RT-COMPUTATION FOR TERMS **************)
20
21 (* Properties concerning sn parallel reduction on local environments ********)
22
23 (* Basic_1: uses: pr3_pr2_pr2_t *)
24 (* Basic_1: includes: pr3_pr0_pr2_t *)
25 (* Basic_2A1: uses: lpr_cpr_trans *) 
26 lemma lpr_cpm_trans (n) (h) (G): s_r_transitive … (λL. cpm h G L n) (λ_. lpr h G).
27 #n #h #G #L2 #T1 #T2 #H @(cpm_ind … H) -G -L2 -T1 -T2
28 [ /2 width=3 by/
29 | /3 width=2 by cpx_cpxs, cpx_ess/
30 | #I #G #K2 #V2 #V4 #W4 #_ #IH #HVW4 #L1 #H
31   elim (lpx_inv_pair_dx … H) -H #K1 #V1 #HK12 #HV12 #H destruct
32   /4 width=3 by cpxs_delta, cpxs_strap2/
33 | #I2 #G #K2 #T #U #i #_ #IH #HTU #L1 #H
34   elim (lpx_inv_bind_dx … H) -H #I1 #K1 #HK12 #HI12 #H destruct
35   /4 width=3 by cpxs_lref, cpxs_strap2/
36 |5,10: /4 width=1 by cpxs_beta, cpxs_bind, lpx_bind_refl_dx/
37 |6,8,9: /3 width=1 by cpxs_flat, cpxs_ee, cpxs_eps/
38 | /4 width=3 by cpxs_zeta, lpx_bind_refl_dx/
39 | /4 width=3 by cpxs_theta, cpxs_strap1, lpx_bind_refl_dx/
40 ]
41 qed-.
42
43
44
45
46
47
48
49 #G #L2 #T1 #T2 #HT12 elim HT12 -G -L2 -T1 -T2
50 [ /2 width=3 by/
51 | #G #L2 #K2 #V0 #V2 #W2 #i #HLK2 #_ #HVW2 #IHV02 #L1 #HL12
52   elim (lpr_drop_trans_O1 … HL12 … HLK2) -L2 #X #HLK1 #H
53   elim (lpr_inv_pair2 … H) -H #K1 #V1 #HK12 #HV10 #H destruct
54   /4 width=6 by cprs_strap2, cprs_delta/
55 |3,7: /4 width=1 by lpr_pair, cprs_bind, cprs_beta/
56 |4,6: /3 width=1 by cprs_flat, cprs_eps/
57 |5,8: /4 width=3 by lpr_pair, cprs_zeta, cprs_theta, cprs_strap1/
58 ]
59 qed-.
60
61 lemma cpr_bind2: ∀G,L,V1,V2. ⦃G, L⦄ ⊢ V1 ➡ V2 → ∀I,T1,T2. ⦃G, L.ⓑ{I}V2⦄ ⊢ T1 ➡ T2 →
62                  ∀a. ⦃G, L⦄ ⊢ ⓑ{a,I}V1.T1 ➡* ⓑ{a,I}V2.T2.
63 /4 width=5 by lpr_cpr_trans, cprs_bind_dx, lpr_pair/ qed.
64
65 (* Advanced properties ******************************************************)
66
67 (* Basic_1: was only: pr3_pr2_pr3_t pr3_wcpr0_t *)
68 lemma lpr_cprs_trans: ∀G. b_rs_transitive … (cpr G) (λ_. lpr G).
69 #G @b_c_trans_CTC1 /2 width=3 by lpr_cpr_trans/ (**) (* full auto fails *)
70 qed-.
71
72 lemma cprs_bind2_dx: ∀G,L,V1,V2. ⦃G, L⦄ ⊢ V1 ➡ V2 →
73                      ∀I,T1,T2. ⦃G, L.ⓑ{I}V2⦄ ⊢ T1 ➡* T2 →
74                      ∀a. ⦃G, L⦄ ⊢ ⓑ{a,I}V1.T1 ➡* ⓑ{a,I}V2.T2.
75 /4 width=5 by lpr_cprs_trans, cprs_bind_dx, lpr_pair/ qed.