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