1 (**************************************************************************)
4 (* ||A|| A project by Andrea Asperti *)
6 (* ||I|| Developers: *)
7 (* ||T|| The HELM team. *)
8 (* ||A|| http://helm.cs.unibo.it *)
10 (* \ / This file is distributed under the terms of the *)
11 (* v GNU General Public License Version 2 *)
13 (**************************************************************************)
15 include "basic_2/notation/relations/statictype_5.ma".
16 include "basic_2/grammar/genv.ma".
17 include "basic_2/relocation/ldrop.ma".
18 include "basic_2/static/sh.ma".
20 (* STATIC TYPE ASSIGNMENT ON TERMS ******************************************)
23 inductive sta (h:sh): relation4 genv lenv term term ≝
24 | sta_sort: ∀G,L,k. sta h G L (⋆k) (⋆(next h k))
25 | sta_ldef: ∀G,L,K,V,W,U,i. ⇩[0, i] L ≡ K.ⓓV → sta h G K V W →
26 ⇧[0, i + 1] W ≡ U → sta h G L (#i) U
27 | sta_ldec: ∀G,L,K,W,V,U,i. ⇩[0, i] L ≡ K.ⓛW → sta h G K W V →
28 ⇧[0, i + 1] W ≡ U → sta h G L (#i) U
29 | sta_bind: ∀a,I,G,L,V,T,U. sta h G (L.ⓑ{I}V) T U →
30 sta h G L (ⓑ{a,I}V.T) (ⓑ{a,I}V.U)
31 | sta_appl: ∀G,L,V,T,U. sta h G L T U → sta h G L (ⓐV.T) (ⓐV.U)
32 | sta_cast: ∀G,L,W,T,U. sta h G L T U → sta h G L (ⓝW.T) U
35 interpretation "static type assignment (term)"
36 'StaticType h G L T U = (sta h G L T U).
38 (* Basic inversion lemmas ************************************************)
40 fact sta_inv_sort1_aux: ∀h,G,L,T,U. ⦃G, L⦄ ⊢ T •[h] U → ∀k0. T = ⋆k0 →
42 #h #G #L #T #U * -G -L -T -U
43 [ #G #L #k #k0 #H destruct //
44 | #G #L #K #V #W #U #i #_ #_ #_ #k0 #H destruct
45 | #G #L #K #W #V #U #i #_ #_ #_ #k0 #H destruct
46 | #a #I #G #L #V #T #U #_ #k0 #H destruct
47 | #G #L #V #T #U #_ #k0 #H destruct
48 | #G #L #W #T #U #_ #k0 #H destruct
51 (* Basic_1: was: sty0_gen_sort *)
52 lemma sta_inv_sort1: ∀h,G,L,U,k. ⦃G, L⦄ ⊢ ⋆k •[h] U → U = ⋆(next h k).
53 /2 width=5 by sta_inv_sort1_aux/ qed-.
55 fact sta_inv_lref1_aux: ∀h,G,L,T,U. ⦃G, L⦄ ⊢ T •[h] U → ∀j. T = #j →
56 (∃∃K,V,W. ⇩[0, j] L ≡ K.ⓓV & ⦃G, K⦄ ⊢ V •[h] W &
59 (∃∃K,W,V. ⇩[0, j] L ≡ K.ⓛW & ⦃G, K⦄ ⊢ W •[h] V &
62 #h #G #L #T #U * -G -L -T -U
63 [ #G #L #k #j #H destruct
64 | #G #L #K #V #W #U #i #HLK #HVW #HWU #j #H destruct /3 width=6/
65 | #G #L #K #W #V #U #i #HLK #HWV #HWU #j #H destruct /3 width=6/
66 | #a #I #G #L #V #T #U #_ #j #H destruct
67 | #G #L #V #T #U #_ #j #H destruct
68 | #G #L #W #T #U #_ #j #H destruct
72 (* Basic_1: was sty0_gen_lref *)
73 lemma sta_inv_lref1: ∀h,G,L,U,i. ⦃G, L⦄ ⊢ #i •[h] U →
74 (∃∃K,V,W. ⇩[0, i] L ≡ K.ⓓV & ⦃G, K⦄ ⊢ V •[h] W &
77 (∃∃K,W,V. ⇩[0, i] L ≡ K.ⓛW & ⦃G, K⦄ ⊢ W •[h] V &
80 /2 width=3 by sta_inv_lref1_aux/ qed-.
82 fact sta_inv_gref1_aux: ∀h,G,L,T,U. ⦃G, L⦄ ⊢ T •[h] U → ∀p0. T = §p0 → ⊥.
83 #h #G #L #T #U * -G -L -T -U
84 [ #G #L #k #p0 #H destruct
85 | #G #L #K #V #W #U #i #_ #_ #_ #p0 #H destruct
86 | #G #L #K #W #V #U #i #_ #_ #_ #p0 #H destruct
87 | #a #I #G #L #V #T #U #_ #p0 #H destruct
88 | #G #L #V #T #U #_ #p0 #H destruct
89 | #G #L #W #T #U #_ #p0 #H destruct
92 lemma sta_inv_gref1: ∀h,G,L,U,p. ⦃G, L⦄ ⊢ §p •[h] U → ⊥.
93 /2 width=8 by sta_inv_gref1_aux/ qed-.
95 fact sta_inv_bind1_aux: ∀h,G,L,T,U. ⦃G, L⦄ ⊢ T •[h] U → ∀b,J,X,Y. T = ⓑ{b,J}Y.X →
96 ∃∃Z. ⦃G, L.ⓑ{J}Y⦄ ⊢ X •[h] Z & U = ⓑ{b,J}Y.Z.
97 #h #G #L #T #U * -G -L -T -U
98 [ #G #L #k #b #J #X #Y #H destruct
99 | #G #L #K #V #W #U #i #_ #_ #_ #b #J #X #Y #H destruct
100 | #G #L #K #W #V #U #i #_ #_ #_ #b #J #X #Y #H destruct
101 | #a #I #G #L #V #T #U #HTU #b #J #X #Y #H destruct /2 width=3/
102 | #G #L #V #T #U #_ #b #J #X #Y #H destruct
103 | #G #L #W #T #U #_ #b #J #X #Y #H destruct
107 (* Basic_1: was: sty0_gen_bind *)
108 lemma sta_inv_bind1: ∀h,b,J,G,L,Y,X,U. ⦃G, L⦄ ⊢ ⓑ{b,J}Y.X •[h] U →
109 ∃∃Z. ⦃G, L.ⓑ{J}Y⦄ ⊢ X •[h] Z & U = ⓑ{b,J}Y.Z.
110 /2 width=3 by sta_inv_bind1_aux/ qed-.
112 fact sta_inv_appl1_aux: ∀h,G,L,T,U. ⦃G, L⦄ ⊢ T •[h] U → ∀X,Y. T = ⓐY.X →
113 ∃∃Z. ⦃G, L⦄ ⊢ X •[h] Z & U = ⓐY.Z.
114 #h #G #L #T #U * -G -L -T -U
115 [ #G #L #k #X #Y #H destruct
116 | #G #L #K #V #W #U #i #_ #_ #_ #X #Y #H destruct
117 | #G #L #K #W #V #U #i #_ #_ #_ #X #Y #H destruct
118 | #a #I #G #L #V #T #U #_ #X #Y #H destruct
119 | #G #L #V #T #U #HTU #X #Y #H destruct /2 width=3/
120 | #G #L #W #T #U #_ #X #Y #H destruct
124 (* Basic_1: was: sty0_gen_appl *)
125 lemma sta_inv_appl1: ∀h,G,L,Y,X,U. ⦃G, L⦄ ⊢ ⓐY.X •[h] U →
126 ∃∃Z. ⦃G, L⦄ ⊢ X •[h] Z & U = ⓐY.Z.
127 /2 width=3 by sta_inv_appl1_aux/ qed-.
129 fact sta_inv_cast1_aux: ∀h,G,L,T,U. ⦃G, L⦄ ⊢ T •[h] U → ∀X,Y. T = ⓝY.X →
131 #h #G #L #T #U * -G -L -T -U
132 [ #G #L #k #X #Y #H destruct
133 | #G #L #K #V #W #U #i #_ #_ #_ #X #Y #H destruct
134 | #G #L #K #W #V #U #i #_ #_ #_ #X #Y #H destruct
135 | #a #I #G #L #V #T #U #_ #X #Y #H destruct
136 | #G #L #V #T #U #_ #X #Y #H destruct
137 | #G #L #W #T #U #HTU #X #Y #H destruct //
141 (* Basic_1: was: sty0_gen_cast *)
142 lemma sta_inv_cast1: ∀h,G,L,X,Y,U. ⦃G, L⦄ ⊢ ⓝY.X •[h] U → ⦃G, L⦄ ⊢ X •[h] U.
143 /2 width=4 by sta_inv_cast1_aux/ qed-.
145 (* Inversion lrmmas on static type assignment for terms *********************)
147 lemma da_inv_sta: ∀h,g,G,L,T,l. ⦃G, L⦄ ⊢ T ▪[h, g] l →
148 ∃U. ⦃G, L⦄ ⊢ T •[h] U.
149 #h #g #G #L #T #l #H elim H -G -L -T -l
151 | #G #L #K #V #i #l #HLK #_ * #W #HVW
152 elim (lift_total W 0 (i+1)) /3 width=7/
153 | #G #L #K #W #i #l #HLK #_ * #V #HWV
154 elim (lift_total W 0 (i+1)) /3 width=7/
155 | #a #I #G #L #V #T #l #_ * /3 width=2/
156 | * #G #L #V #T #l #_ * /3 width=2/
160 (* Properties on static type assignment for terms ***************************)
162 lemma sta_da: ∀h,g,G,L,T,U. ⦃G, L⦄ ⊢ T •[h] U →
163 ∃l. ⦃G, L⦄ ⊢ T ▪[h, g] l.
164 #h #g #G #L #T #U #H elim H -G -L -T -U
165 [ #G #L #k elim (deg_total h g k) /3 width=2/
166 | #G #L #K #V #W #W0 #i #HLK #_ #_ * /3 width=5/
167 | #G #L #K #W #V #W0 #i #HLK #_ #_ * /3 width=5/
168 | #a #I #G #L #V #T #U #_ * /3 width=2/
169 | #G #L #V #T #U #_ * /3 width=2/
170 | #G #L #W #T #U #_ * /3 width=2/