]> matita.cs.unibo.it Git - helm.git/blob - matita/matita/contribs/lambdadelta/apps_2/functional/dsubst.ma
20e372bb652c963e714429752bdedea5816a2c37
[helm.git] / matita / matita / contribs / lambdadelta / apps_2 / functional / dsubst.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/unfold/delift_lift.ma".
16 include "apps_2/functional/lift.ma".
17
18 (* FUNCTIONAL DELIFTING SUBSTITUTION ****************************************)
19
20 let rec fdsubst W d U on U ≝ match U with
21 [ TAtom I     ⇒ match I with
22   [ Sort _ ⇒ U
23   | LRef i ⇒ tri … i d (#i) (↑[0, i] W) (#(i-1))
24   | GRef _ ⇒ U
25   ]
26 | TPair I V T ⇒ match I with
27   [ Bind2 a I ⇒ ⓑ{a,I} (fdsubst W d V). (fdsubst W (d+1) T)
28   | Flat2 I   ⇒ ⓕ{I} (fdsubst W d V). (fdsubst W d T)
29   ]
30 ].
31
32 interpretation
33    "functional delifting substitution"
34    'DSubst V d T = (fdsubst V d T).
35
36 (* Main properties **********************************************************)
37
38 theorem fdsubst_delift: ∀K,V,T,L,d.
39                         ⇩[0, d] L ≡ K. ⓓV → L ⊢ ▼*[d, 1] T ≡ [d ⬐ V] T.
40 #K #V #T elim T -T
41 [ * #i #L #d #HLK normalize in ⊢ (? ? ? ? ? %); /2 width=3/
42   elim (lt_or_eq_or_gt i d) #Hid
43   [ -HLK >(tri_lt ?????? Hid) /3 width=3/
44   | destruct >tri_eq /4 width=4 by tpss_strap2, tps_subst, le_n, ex2_intro/ (**) (* too slow without trace *)   
45   | -HLK >(tri_gt ?????? Hid) /3 width=3/
46   ]
47 | * /3 width=1/ /4 width=1/
48 ]
49 qed.
50
51 (* Main inversion properties ************************************************)
52
53 theorem fdsubst_inv_delift: ∀K,V,T1,L,T2,d. ⇩[0, d] L ≡ K. ⓓV →
54                             L ⊢ ▼*[d, 1] T1 ≡ T2 → [d ⬐ V] T1 = T2.
55 #K #V #T1 elim T1 -T1
56 [ * #i #L #T2 #d #HLK #H
57   [ -HLK >(delift_inv_sort1 … H) -H //
58   | elim (lt_or_eq_or_gt i d) #Hid normalize
59     [ -HLK >(delift_inv_lref1_lt … H) -H // /2 width=1/
60     | destruct
61       elim (delift_inv_lref1_be … H ? ?) -H // #K0 #V0 #V2 #HLK0
62       lapply (ldrop_mono … HLK0 … HLK) -HLK0 -HLK #H >minus_plus <minus_n_n #HV2 #HVT2 destruct
63       >(delift_inv_refl_O2 … HV2) -V >(flift_inv_lift … HVT2) -V2 //
64     | -HLK >(delift_inv_lref1_ge … H) -H // /2 width=1/
65     ]
66   | -HLK >(delift_inv_gref1 … H) -H //
67   ]
68 | * [ #a ] #I #V1 #T1 #IHV1 #IHT1 #L #X #d #HLK #H
69   [ elim (delift_inv_bind1 … H) -H #V2 #T2 #HV12 #HT12 #H destruct
70     <(IHV1 … HV12) -IHV1 -HV12 // <(IHT1 … HT12) -IHT1 -HT12 // /2 width=1/
71   | elim (delift_inv_flat1 … H) -H #V2 #T2 #HV12 #HT12 #H destruct
72     <(IHV1 … HV12) -IHV1 -HV12 // <(IHT1 … HT12) -IHT1 -HT12 //
73   ]
74 ]
75 qed-.