]> matita.cs.unibo.it Git - helm.git/blob - matita/matita/contribs/lambdadelta/delayed_updating/syntax/prototerm_constructors.ma
update in delayed_updating
[helm.git] / matita / matita / contribs / lambdadelta / delayed_updating / syntax / prototerm_constructors.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 "delayed_updating/syntax/prototerm.ma".
16 include "delayed_updating/notation/functions/m_hook_1.ma".
17 include "delayed_updating/notation/functions/hash_1.ma".
18 include "delayed_updating/notation/functions/phi_2.ma".
19 include "delayed_updating/notation/functions/lamda_1.ma".
20 include "delayed_updating/notation/functions/at_2.ma".
21
22 (* CONSTRUCTORS FOR PROTOTERM ***********************************************)
23
24 definition prototerm_node_0 (l): prototerm ≝
25            λp. l◗𝐞 = p.
26
27 definition prototerm_node_1 (l): prototerm → prototerm ≝
28            λt,p. ∃∃q. q ϵ t & l◗q = p.
29
30 definition prototerm_node_1_2 (l1) (l2): prototerm → prototerm ≝
31            λt,p. ∃∃q. q ϵ t & l1◗l2◗q = p.
32
33 definition prototerm_node_2 (l1) (l2): prototerm → prototerm → prototerm ≝
34            λt1,t2,p.
35            ∨∨ ∃∃q. q ϵ t1 & l1◗q = p
36             | ∃∃q. q ϵ t2 & l2◗q = p.
37
38 interpretation
39   "mark (prototerm)"
40   'MHook t = (prototerm_node_1 label_m t).
41
42 interpretation
43   "outer variable reference by depth (prototerm)"
44   'Hash n = (prototerm_node_0 (label_d n)).
45
46 interpretation
47   "inner variable reference by depth (prototerm)"
48   'Phi n t = (prototerm_node_1_2 (label_d n) label_m t).
49
50 interpretation
51   "name-free functional abstraction (prototerm)"
52   'Lamda t = (prototerm_node_1 label_L t).
53
54 interpretation
55   "application (prototerm)"
56   'At u t = (prototerm_node_2 label_S label_A u t).
57
58 (* Basic constructions *******************************************************)
59
60 lemma in_comp_iref (t) (q) (n):
61       q ϵ t → 𝗱n◗𝗺◗q ϵ 𝛗n.t.
62 /2 width=3 by ex2_intro/ qed.
63
64 (* Basic inversions *********************************************************)
65
66 lemma in_comp_inv_iref (t) (p) (n):
67       p ϵ 𝛗n.t →
68       ∃∃q. 𝗱n◗𝗺◗q = p & q ϵ t.
69 #t #p #n * #q #Hq #Hp
70 /2 width=3 by ex2_intro/
71 qed-.
72 (* COMMENT
73 lemma prototerm_in_root_inv_lcons_oref:
74       ∀p,l,n. l◗p ϵ ▵#n →
75       ∧∧ 𝗱n = l & 𝐞 = p.
76 #p #l #n * #q
77 <list_append_lcons_sn #H0 destruct -H0
78 elim (eq_inv_list_empty_append … e0) -e0 #H0 #_
79 /2 width=1 by conj/
80 qed-.
81
82 lemma prototerm_in_root_inv_lcons_iref:
83       ∀t,p,l,n. l◗p ϵ ▵𝛗n.t →
84       ∧∧ 𝗱n = l & p ϵ ▵ɱ.t.
85 #t #p #l #n * #q * #r #Hr
86 <list_append_lcons_sn #H0 destruct -H0
87 /4 width=4 by ex2_intro, ex_intro, conj/
88 qed-.
89
90 lemma prototerm_in_root_inv_lcons_mark:
91       ∀t,p,l. l◗p ϵ ▵ɱ.t →
92       ∧∧ 𝗺 = l & p ϵ ▵t.
93 #t #p #l * #q * #r #Hr
94 <list_append_lcons_sn #H0 destruct
95 /3 width=2 by ex_intro, conj/
96 qed-.
97
98 lemma prototerm_in_root_inv_lcons_abst:
99       ∀t,p,l. l◗p ϵ ▵𝛌.t →
100       ∧∧ 𝗟 = l & p ϵ ▵t.
101 #t #p #l * #q * #r #Hr
102 <list_append_lcons_sn #H0 destruct
103 /3 width=2 by ex_intro, conj/
104 qed-.
105
106 lemma prototerm_in_root_inv_lcons_appl:
107       ∀u,t,p,l. l◗p ϵ ▵@u.t →
108       ∨∨ ∧∧ 𝗦 = l & p ϵ ▵u
109        | ∧∧ 𝗔 = l & p ϵ ▵t.
110 #u #t #p #l * #q * * #r #Hr
111 <list_append_lcons_sn #H0 destruct
112 /4 width=2 by ex_intro, or_introl, or_intror, conj/
113 qed-.
114 *)