]> matita.cs.unibo.it Git - helm.git/blob - matita/matita/contribs/lambda_delta/basic_2/grammar/lenv.ma
9988b3d4cc80275fa5f7211ca21b88a0bef6798c
[helm.git] / matita / matita / contribs / lambda_delta / basic_2 / grammar / lenv.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/grammar/term.ma".
16
17 (* LOCAL ENVIRONMENTS *******************************************************)
18
19 (* local environments *)
20 inductive lenv: Type[0] ≝
21 | LAtom: lenv                       (* empty *)
22 | LPair: lenv → bind2 → term → lenv (* binary binding construction *)
23 .
24
25 interpretation "sort (local environment)"
26    'Star = LAtom.
27
28 interpretation "environment construction (binary)"
29    'DxItem2 L I T = (LPair L I T).
30
31 interpretation "environment binding construction (binary)"
32    'DxBind2 L I T = (LPair L I T).
33
34 interpretation "abbreviation (local environment)"
35    'DxAbbr L T = (LPair L Abbr T).
36
37 interpretation "abstraction (local environment)"
38    'DxAbst L T = (LPair L Abst T).
39
40 (* Basic inversion lemmas ***************************************************)
41
42 lemma destruct_lpair_lpair: ∀I1,I2,L1,L2,V1,V2. L1.ⓑ{I1}V1 = L2.ⓑ{I2}V2 →
43                             ∧∧L1 = L2 & I1 = I2 & V1 = V2.
44 #I1 #I2 #L1 #L2 #V1 #V2 #H destruct /2 width=1/
45 qed-.
46
47 lemma discr_lpair_x_xy: ∀I,V,L. L = L.ⓑ{I}V → ⊥.
48 #I #V #L elim L -L
49 [ #H destruct
50 | #L #J #W #IHL #H
51   elim (destruct_lpair_lpair … H) -H #H1 #H2 #H3 destruct /2 width=1/ (**) (* destruct lemma needed *)
52 ]
53 qed-.
54
55 (* Basic_1: removed theorems 2: chead_ctail c_tail_ind *)