author | Christian Urban <urbanc@in.tum.de> |
Sun, 14 Nov 2010 10:02:30 +0000 | |
changeset 2564 | 5be8e34c2c0e |
parent 2556 | 8ed62410236e |
child 2566 | a59d8e1e3a17 |
permissions | -rw-r--r-- |
1795 | 1 |
theory TypeSchemes |
2454
9ffee4eb1ae1
renamed NewParser to Nominal2
Christian Urban <urbanc@in.tum.de>
parents:
2451
diff
changeset
|
2 |
imports "../Nominal2" |
1795 | 3 |
begin |
4 |
||
5 |
section {*** Type Schemes ***} |
|
6 |
||
2556
8ed62410236e
added a test about subtyping; disabled two tests, because of problem with function package
Christian Urban <urbanc@in.tum.de>
parents:
2524
diff
changeset
|
7 |
atom_decl name |
8ed62410236e
added a test about subtyping; disabled two tests, because of problem with function package
Christian Urban <urbanc@in.tum.de>
parents:
2524
diff
changeset
|
8 |
|
2337
b151399bd2c3
fixed according to changes in quotient
Christian Urban <urbanc@in.tum.de>
parents:
2308
diff
changeset
|
9 |
|
2486
b4ea19604b0b
cleaned up two examples
Christian Urban <urbanc@in.tum.de>
parents:
2480
diff
changeset
|
10 |
(* defined as a single nominal datatype *) |
1795 | 11 |
|
12 |
nominal_datatype ty = |
|
13 |
Var "name" |
|
14 |
| Fun "ty" "ty" |
|
15 |
and tys = |
|
2434 | 16 |
All xs::"name fset" ty::"ty" bind (res) xs in ty |
17 |
||
2468 | 18 |
thm ty_tys.distinct |
19 |
thm ty_tys.induct |
|
20 |
thm ty_tys.exhaust |
|
21 |
thm ty_tys.fv_defs |
|
22 |
thm ty_tys.bn_defs |
|
23 |
thm ty_tys.perm_simps |
|
24 |
thm ty_tys.eq_iff |
|
25 |
thm ty_tys.fv_bn_eqvt |
|
26 |
thm ty_tys.size_eqvt |
|
27 |
thm ty_tys.supports |
|
2493
2e174807c891
added postprocessed fresh-lemmas for constructors
Christian Urban <urbanc@in.tum.de>
parents:
2486
diff
changeset
|
28 |
thm ty_tys.supp |
2494
11133eb76f61
added Foo1 to explore a contrived example
Christian Urban <urbanc@in.tum.de>
parents:
2493
diff
changeset
|
29 |
thm ty_tys.fresh |
1795 | 30 |
|
2486
b4ea19604b0b
cleaned up two examples
Christian Urban <urbanc@in.tum.de>
parents:
2480
diff
changeset
|
31 |
(* defined as two separate nominal datatypes *) |
b4ea19604b0b
cleaned up two examples
Christian Urban <urbanc@in.tum.de>
parents:
2480
diff
changeset
|
32 |
|
2308
387fcbd33820
fixed problem with bn_info
Christian Urban <urbanc@in.tum.de>
parents:
2181
diff
changeset
|
33 |
nominal_datatype ty2 = |
387fcbd33820
fixed problem with bn_info
Christian Urban <urbanc@in.tum.de>
parents:
2181
diff
changeset
|
34 |
Var2 "name" |
387fcbd33820
fixed problem with bn_info
Christian Urban <urbanc@in.tum.de>
parents:
2181
diff
changeset
|
35 |
| Fun2 "ty2" "ty2" |
387fcbd33820
fixed problem with bn_info
Christian Urban <urbanc@in.tum.de>
parents:
2181
diff
changeset
|
36 |
|
387fcbd33820
fixed problem with bn_info
Christian Urban <urbanc@in.tum.de>
parents:
2181
diff
changeset
|
37 |
nominal_datatype tys2 = |
2434 | 38 |
All2 xs::"name fset" ty::"ty2" bind (res) xs in ty |
2337
b151399bd2c3
fixed according to changes in quotient
Christian Urban <urbanc@in.tum.de>
parents:
2308
diff
changeset
|
39 |
|
2468 | 40 |
thm tys2.distinct |
41 |
thm tys2.induct |
|
42 |
thm tys2.exhaust |
|
43 |
thm tys2.fv_defs |
|
44 |
thm tys2.bn_defs |
|
45 |
thm tys2.perm_simps |
|
46 |
thm tys2.eq_iff |
|
47 |
thm tys2.fv_bn_eqvt |
|
48 |
thm tys2.size_eqvt |
|
49 |
thm tys2.supports |
|
2493
2e174807c891
added postprocessed fresh-lemmas for constructors
Christian Urban <urbanc@in.tum.de>
parents:
2486
diff
changeset
|
50 |
thm tys2.supp |
2494
11133eb76f61
added Foo1 to explore a contrived example
Christian Urban <urbanc@in.tum.de>
parents:
2493
diff
changeset
|
51 |
thm tys2.fresh |
2468 | 52 |
|
2480
ac7dff1194e8
introduced a general procedure for structural inductions; simplified reflexivity proof
Christian Urban <urbanc@in.tum.de>
parents:
2468
diff
changeset
|
53 |
|
2556
8ed62410236e
added a test about subtyping; disabled two tests, because of problem with function package
Christian Urban <urbanc@in.tum.de>
parents:
2524
diff
changeset
|
54 |
lemma strong_exhaust: |
8ed62410236e
added a test about subtyping; disabled two tests, because of problem with function package
Christian Urban <urbanc@in.tum.de>
parents:
2524
diff
changeset
|
55 |
fixes c::"'a::fs" |
8ed62410236e
added a test about subtyping; disabled two tests, because of problem with function package
Christian Urban <urbanc@in.tum.de>
parents:
2524
diff
changeset
|
56 |
assumes "\<And>names ty. \<lbrakk>fset (map_fset atom names) \<sharp>* c; y = All2 names ty\<rbrakk> \<Longrightarrow> P" |
8ed62410236e
added a test about subtyping; disabled two tests, because of problem with function package
Christian Urban <urbanc@in.tum.de>
parents:
2524
diff
changeset
|
57 |
shows "P" |
8ed62410236e
added a test about subtyping; disabled two tests, because of problem with function package
Christian Urban <urbanc@in.tum.de>
parents:
2524
diff
changeset
|
58 |
apply(rule_tac y="y" in tys2.exhaust) |
8ed62410236e
added a test about subtyping; disabled two tests, because of problem with function package
Christian Urban <urbanc@in.tum.de>
parents:
2524
diff
changeset
|
59 |
apply(rename_tac names ty2) |
8ed62410236e
added a test about subtyping; disabled two tests, because of problem with function package
Christian Urban <urbanc@in.tum.de>
parents:
2524
diff
changeset
|
60 |
apply(subgoal_tac "\<exists>q. (q \<bullet> (fset (map_fset atom names))) \<sharp>* c \<and> supp (All2 names ty2) \<sharp>* q") |
8ed62410236e
added a test about subtyping; disabled two tests, because of problem with function package
Christian Urban <urbanc@in.tum.de>
parents:
2524
diff
changeset
|
61 |
apply(erule exE) |
8ed62410236e
added a test about subtyping; disabled two tests, because of problem with function package
Christian Urban <urbanc@in.tum.de>
parents:
2524
diff
changeset
|
62 |
apply(perm_simp) |
8ed62410236e
added a test about subtyping; disabled two tests, because of problem with function package
Christian Urban <urbanc@in.tum.de>
parents:
2524
diff
changeset
|
63 |
apply(erule conjE) |
8ed62410236e
added a test about subtyping; disabled two tests, because of problem with function package
Christian Urban <urbanc@in.tum.de>
parents:
2524
diff
changeset
|
64 |
apply(rule assms(1)) |
8ed62410236e
added a test about subtyping; disabled two tests, because of problem with function package
Christian Urban <urbanc@in.tum.de>
parents:
2524
diff
changeset
|
65 |
apply(assumption) |
8ed62410236e
added a test about subtyping; disabled two tests, because of problem with function package
Christian Urban <urbanc@in.tum.de>
parents:
2524
diff
changeset
|
66 |
apply(clarify) |
8ed62410236e
added a test about subtyping; disabled two tests, because of problem with function package
Christian Urban <urbanc@in.tum.de>
parents:
2524
diff
changeset
|
67 |
apply(drule supp_perm_eq[symmetric]) |
8ed62410236e
added a test about subtyping; disabled two tests, because of problem with function package
Christian Urban <urbanc@in.tum.de>
parents:
2524
diff
changeset
|
68 |
apply(simp) |
8ed62410236e
added a test about subtyping; disabled two tests, because of problem with function package
Christian Urban <urbanc@in.tum.de>
parents:
2524
diff
changeset
|
69 |
thm at_set_avoiding |
8ed62410236e
added a test about subtyping; disabled two tests, because of problem with function package
Christian Urban <urbanc@in.tum.de>
parents:
2524
diff
changeset
|
70 |
apply(rule at_set_avoiding2) |
8ed62410236e
added a test about subtyping; disabled two tests, because of problem with function package
Christian Urban <urbanc@in.tum.de>
parents:
2524
diff
changeset
|
71 |
apply(simp add: finite_supp) |
8ed62410236e
added a test about subtyping; disabled two tests, because of problem with function package
Christian Urban <urbanc@in.tum.de>
parents:
2524
diff
changeset
|
72 |
apply(simp add: finite_supp) |
8ed62410236e
added a test about subtyping; disabled two tests, because of problem with function package
Christian Urban <urbanc@in.tum.de>
parents:
2524
diff
changeset
|
73 |
apply(simp add: finite_supp) |
8ed62410236e
added a test about subtyping; disabled two tests, because of problem with function package
Christian Urban <urbanc@in.tum.de>
parents:
2524
diff
changeset
|
74 |
apply(simp) |
8ed62410236e
added a test about subtyping; disabled two tests, because of problem with function package
Christian Urban <urbanc@in.tum.de>
parents:
2524
diff
changeset
|
75 |
apply(simp add: fresh_star_def) |
8ed62410236e
added a test about subtyping; disabled two tests, because of problem with function package
Christian Urban <urbanc@in.tum.de>
parents:
2524
diff
changeset
|
76 |
apply(simp add: tys2.fresh) |
8ed62410236e
added a test about subtyping; disabled two tests, because of problem with function package
Christian Urban <urbanc@in.tum.de>
parents:
2524
diff
changeset
|
77 |
done |
8ed62410236e
added a test about subtyping; disabled two tests, because of problem with function package
Christian Urban <urbanc@in.tum.de>
parents:
2524
diff
changeset
|
78 |
|
8ed62410236e
added a test about subtyping; disabled two tests, because of problem with function package
Christian Urban <urbanc@in.tum.de>
parents:
2524
diff
changeset
|
79 |
|
8ed62410236e
added a test about subtyping; disabled two tests, because of problem with function package
Christian Urban <urbanc@in.tum.de>
parents:
2524
diff
changeset
|
80 |
lemma strong_induct: |
8ed62410236e
added a test about subtyping; disabled two tests, because of problem with function package
Christian Urban <urbanc@in.tum.de>
parents:
2524
diff
changeset
|
81 |
fixes c::"'a::fs" |
8ed62410236e
added a test about subtyping; disabled two tests, because of problem with function package
Christian Urban <urbanc@in.tum.de>
parents:
2524
diff
changeset
|
82 |
assumes "\<And>names ty2 c. fset (map_fset atom names) \<sharp>* c \<Longrightarrow> P c (All2 names ty2)" |
8ed62410236e
added a test about subtyping; disabled two tests, because of problem with function package
Christian Urban <urbanc@in.tum.de>
parents:
2524
diff
changeset
|
83 |
shows "P c tys" |
8ed62410236e
added a test about subtyping; disabled two tests, because of problem with function package
Christian Urban <urbanc@in.tum.de>
parents:
2524
diff
changeset
|
84 |
using assms |
8ed62410236e
added a test about subtyping; disabled two tests, because of problem with function package
Christian Urban <urbanc@in.tum.de>
parents:
2524
diff
changeset
|
85 |
apply(induction_schema) |
8ed62410236e
added a test about subtyping; disabled two tests, because of problem with function package
Christian Urban <urbanc@in.tum.de>
parents:
2524
diff
changeset
|
86 |
apply(rule_tac y="tys" in strong_exhaust) |
8ed62410236e
added a test about subtyping; disabled two tests, because of problem with function package
Christian Urban <urbanc@in.tum.de>
parents:
2524
diff
changeset
|
87 |
apply(blast) |
8ed62410236e
added a test about subtyping; disabled two tests, because of problem with function package
Christian Urban <urbanc@in.tum.de>
parents:
2524
diff
changeset
|
88 |
apply(relation "measure (\<lambda>(x,y). size y)") |
8ed62410236e
added a test about subtyping; disabled two tests, because of problem with function package
Christian Urban <urbanc@in.tum.de>
parents:
2524
diff
changeset
|
89 |
apply(simp_all add: tys2.size) |
8ed62410236e
added a test about subtyping; disabled two tests, because of problem with function package
Christian Urban <urbanc@in.tum.de>
parents:
2524
diff
changeset
|
90 |
done |
8ed62410236e
added a test about subtyping; disabled two tests, because of problem with function package
Christian Urban <urbanc@in.tum.de>
parents:
2524
diff
changeset
|
91 |
|
8ed62410236e
added a test about subtyping; disabled two tests, because of problem with function package
Christian Urban <urbanc@in.tum.de>
parents:
2524
diff
changeset
|
92 |
|
2468 | 93 |
text {* *} |
2308
387fcbd33820
fixed problem with bn_info
Christian Urban <urbanc@in.tum.de>
parents:
2181
diff
changeset
|
94 |
|
2436
3885dc2669f9
cleaned up (almost completely) the examples
Christian Urban <urbanc@in.tum.de>
parents:
2434
diff
changeset
|
95 |
(* |
1795 | 96 |
lemma strong_induct: |
97 |
assumes a1: "\<And>name b. P b (Var name)" |
|
98 |
and a2: "\<And>t1 t2 b. \<lbrakk>\<And>c. P c t1; \<And>c. P c t2\<rbrakk> \<Longrightarrow> P b (Fun t1 t2)" |
|
2524
693562f03eee
major reorganisation of fset (renamed fset_to_set to fset, changed the definition of list_eq and fcard_raw)
Christian Urban <urbanc@in.tum.de>
parents:
2494
diff
changeset
|
99 |
and a3: "\<And>fset t b. \<lbrakk>\<And>c. P c t; fset (fmap atom fset) \<sharp>* b\<rbrakk> \<Longrightarrow> P' b (All fset t)" |
1795 | 100 |
shows "P (a :: 'a :: pt) t \<and> P' (d :: 'b :: {fs}) ts " |
101 |
proof - |
|
102 |
have " (\<forall>p a. P a (p \<bullet> t)) \<and> (\<forall>p d. P' d (p \<bullet> ts))" |
|
103 |
apply (rule ty_tys.induct) |
|
104 |
apply (simp add: a1) |
|
105 |
apply (simp) |
|
106 |
apply (rule allI)+ |
|
107 |
apply (rule a2) |
|
108 |
apply simp |
|
109 |
apply simp |
|
110 |
apply (rule allI) |
|
111 |
apply (rule allI) |
|
2524
693562f03eee
major reorganisation of fset (renamed fset_to_set to fset, changed the definition of list_eq and fcard_raw)
Christian Urban <urbanc@in.tum.de>
parents:
2494
diff
changeset
|
112 |
apply(subgoal_tac "\<exists>pa. ((pa \<bullet> (fset (fmap atom (p \<bullet> fset)))) \<sharp>* d \<and> supp (p \<bullet> All fset ty) \<sharp>* pa)") |
1795 | 113 |
apply clarify |
114 |
apply(rule_tac t="p \<bullet> All fset ty" and |
|
115 |
s="pa \<bullet> (p \<bullet> All fset ty)" in subst) |
|
116 |
apply (rule supp_perm_eq) |
|
117 |
apply assumption |
|
2486
b4ea19604b0b
cleaned up two examples
Christian Urban <urbanc@in.tum.de>
parents:
2480
diff
changeset
|
118 |
apply (simp only: ty_tys.perm_simps) |
1795 | 119 |
apply (rule a3) |
120 |
apply(erule_tac x="(pa + p)" in allE) |
|
121 |
apply simp |
|
122 |
apply (simp add: eqvts eqvts_raw) |
|
123 |
apply (rule at_set_avoiding2) |
|
2524
693562f03eee
major reorganisation of fset (renamed fset_to_set to fset, changed the definition of list_eq and fcard_raw)
Christian Urban <urbanc@in.tum.de>
parents:
2494
diff
changeset
|
124 |
apply (simp add: fin_fset) |
1795 | 125 |
apply (simp add: finite_supp) |
126 |
apply (simp add: eqvts finite_supp) |
|
1933
9eab1dfc14d2
moved lemmas from FSet.thy to do with atom to Nominal2_Base, and to do with 'a::at set to Nominal2_Atoms; moved Nominal2_Eqvt.thy one up to be loaded before Nominal2_Atoms
Christian Urban <urbanc@in.tum.de>
parents:
1795
diff
changeset
|
127 |
apply (rule_tac p=" -p" in permute_boolE) |
9eab1dfc14d2
moved lemmas from FSet.thy to do with atom to Nominal2_Base, and to do with 'a::at set to Nominal2_Atoms; moved Nominal2_Eqvt.thy one up to be loaded before Nominal2_Atoms
Christian Urban <urbanc@in.tum.de>
parents:
1795
diff
changeset
|
128 |
apply(simp add: eqvts) |
9eab1dfc14d2
moved lemmas from FSet.thy to do with atom to Nominal2_Base, and to do with 'a::at set to Nominal2_Atoms; moved Nominal2_Eqvt.thy one up to be loaded before Nominal2_Atoms
Christian Urban <urbanc@in.tum.de>
parents:
1795
diff
changeset
|
129 |
apply(simp add: permute_fun_def atom_eqvt) |
1795 | 130 |
apply (simp add: fresh_star_def) |
131 |
apply clarify |
|
132 |
apply (simp add: fresh_def) |
|
2486
b4ea19604b0b
cleaned up two examples
Christian Urban <urbanc@in.tum.de>
parents:
2480
diff
changeset
|
133 |
apply(auto) |
b4ea19604b0b
cleaned up two examples
Christian Urban <urbanc@in.tum.de>
parents:
2480
diff
changeset
|
134 |
apply (simp add: ty_tys.supp) |
1795 | 135 |
done |
136 |
then have "P a (0 \<bullet> t) \<and> P' d (0 \<bullet> ts)" by blast |
|
137 |
then show ?thesis by simp |
|
138 |
qed |
|
139 |
||
140 |
lemma |
|
141 |
shows "All {|a, b|} (Fun (Var a) (Var b)) = All {|b, a|} (Fun (Var a) (Var b))" |
|
142 |
apply(simp add: ty_tys.eq_iff) |
|
143 |
apply(rule_tac x="0::perm" in exI) |
|
144 |
apply(simp add: alphas) |
|
2040
94e24da9ae75
Move TypeSchemes to NewParser
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
1933
diff
changeset
|
145 |
apply(simp add: fresh_star_def fresh_zero_perm supp_at_base) |
1795 | 146 |
done |
147 |
||
148 |
lemma |
|
149 |
shows "All {|a, b|} (Fun (Var a) (Var b)) = All {|a, b|} (Fun (Var b) (Var a))" |
|
150 |
apply(simp add: ty_tys.eq_iff) |
|
151 |
apply(rule_tac x="(atom a \<rightleftharpoons> atom b)" in exI) |
|
2040
94e24da9ae75
Move TypeSchemes to NewParser
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
1933
diff
changeset
|
152 |
apply(simp add: alphas fresh_star_def eqvts supp_at_base) |
1795 | 153 |
done |
154 |
||
155 |
lemma |
|
156 |
shows "All {|a, b, c|} (Fun (Var a) (Var b)) = All {|a, b|} (Fun (Var a) (Var b))" |
|
157 |
apply(simp add: ty_tys.eq_iff) |
|
158 |
apply(rule_tac x="0::perm" in exI) |
|
2040
94e24da9ae75
Move TypeSchemes to NewParser
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
1933
diff
changeset
|
159 |
apply(simp add: alphas fresh_star_def eqvts ty_tys.eq_iff supp_at_base) |
1795 | 160 |
done |
161 |
||
162 |
lemma |
|
163 |
assumes a: "a \<noteq> b" |
|
164 |
shows "\<not>(All {|a, b|} (Fun (Var a) (Var b)) = All {|c|} (Fun (Var c) (Var c)))" |
|
165 |
using a |
|
166 |
apply(simp add: ty_tys.eq_iff) |
|
167 |
apply(clarify) |
|
2040
94e24da9ae75
Move TypeSchemes to NewParser
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
1933
diff
changeset
|
168 |
apply(simp add: alphas fresh_star_def eqvts ty_tys.eq_iff supp_at_base) |
1795 | 169 |
apply auto |
170 |
done |
|
171 |
||
2179
7687f97eca53
A lemma about substitution in TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2120
diff
changeset
|
172 |
fun |
7687f97eca53
A lemma about substitution in TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2120
diff
changeset
|
173 |
lookup :: "(name \<times> ty) list \<Rightarrow> name \<Rightarrow> ty" |
7687f97eca53
A lemma about substitution in TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2120
diff
changeset
|
174 |
where |
7687f97eca53
A lemma about substitution in TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2120
diff
changeset
|
175 |
"lookup [] n = Var n" |
7687f97eca53
A lemma about substitution in TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2120
diff
changeset
|
176 |
| "lookup ((p, s) # t) n = (if p = n then s else lookup t n)" |
7687f97eca53
A lemma about substitution in TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2120
diff
changeset
|
177 |
|
7687f97eca53
A lemma about substitution in TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2120
diff
changeset
|
178 |
locale subst_loc = |
7687f97eca53
A lemma about substitution in TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2120
diff
changeset
|
179 |
fixes |
7687f97eca53
A lemma about substitution in TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2120
diff
changeset
|
180 |
subst :: "(name \<times> ty) list \<Rightarrow> ty \<Rightarrow> ty" |
7687f97eca53
A lemma about substitution in TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2120
diff
changeset
|
181 |
and substs :: "(name \<times> ty) list \<Rightarrow> tys \<Rightarrow> tys" |
7687f97eca53
A lemma about substitution in TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2120
diff
changeset
|
182 |
assumes |
7687f97eca53
A lemma about substitution in TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2120
diff
changeset
|
183 |
s1: "subst \<theta> (Var n) = lookup \<theta> n" |
7687f97eca53
A lemma about substitution in TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2120
diff
changeset
|
184 |
and s2: "subst \<theta> (Fun l r) = Fun (subst \<theta> l) (subst \<theta> r)" |
2524
693562f03eee
major reorganisation of fset (renamed fset_to_set to fset, changed the definition of list_eq and fcard_raw)
Christian Urban <urbanc@in.tum.de>
parents:
2494
diff
changeset
|
185 |
and s3: "fset (fmap atom xs) \<sharp>* \<theta> \<Longrightarrow> substs \<theta> (All xs t) = All xs (subst \<theta> t)" |
2179
7687f97eca53
A lemma about substitution in TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2120
diff
changeset
|
186 |
begin |
7687f97eca53
A lemma about substitution in TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2120
diff
changeset
|
187 |
|
7687f97eca53
A lemma about substitution in TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2120
diff
changeset
|
188 |
lemma subst_ty: |
7687f97eca53
A lemma about substitution in TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2120
diff
changeset
|
189 |
assumes x: "atom x \<sharp> t" |
7687f97eca53
A lemma about substitution in TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2120
diff
changeset
|
190 |
shows "subst [(x, S)] t = t" |
7687f97eca53
A lemma about substitution in TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2120
diff
changeset
|
191 |
using x |
7687f97eca53
A lemma about substitution in TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2120
diff
changeset
|
192 |
apply (induct t rule: ty_tys.induct[of _ "\<lambda>t. True" _ , simplified]) |
7687f97eca53
A lemma about substitution in TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2120
diff
changeset
|
193 |
by (simp_all add: s1 s2 fresh_def ty_tys.fv[simplified ty_tys.supp] supp_at_base) |
7687f97eca53
A lemma about substitution in TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2120
diff
changeset
|
194 |
|
7687f97eca53
A lemma about substitution in TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2120
diff
changeset
|
195 |
lemma subst_tyS: |
7687f97eca53
A lemma about substitution in TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2120
diff
changeset
|
196 |
shows "atom x \<sharp> T \<longrightarrow> substs [(x, S)] T = T" |
7687f97eca53
A lemma about substitution in TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2120
diff
changeset
|
197 |
apply (rule strong_induct[of |
2180 | 198 |
"\<lambda>a t. True" "\<lambda>(x, S) T. (atom x \<sharp> T \<longrightarrow> substs [(x, S)] T = T)" _ "t" "(x, S)", simplified]) |
199 |
apply clarify |
|
2179
7687f97eca53
A lemma about substitution in TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2120
diff
changeset
|
200 |
apply (subst s3) |
7687f97eca53
A lemma about substitution in TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2120
diff
changeset
|
201 |
apply (simp add: fresh_star_def fresh_Cons fresh_Nil) |
7687f97eca53
A lemma about substitution in TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2120
diff
changeset
|
202 |
apply (subst subst_ty) |
2180 | 203 |
apply (simp_all add: fresh_star_prod_elim) |
2179
7687f97eca53
A lemma about substitution in TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2120
diff
changeset
|
204 |
apply (drule fresh_star_atom) |
2180 | 205 |
apply (simp add: fresh_def ty_tys.fv[simplified ty_tys.supp]) |
2524
693562f03eee
major reorganisation of fset (renamed fset_to_set to fset, changed the definition of list_eq and fcard_raw)
Christian Urban <urbanc@in.tum.de>
parents:
2494
diff
changeset
|
206 |
apply (subgoal_tac "atom a \<notin> fset (fmap atom fset)") |
2179
7687f97eca53
A lemma about substitution in TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2120
diff
changeset
|
207 |
apply blast |
7687f97eca53
A lemma about substitution in TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2120
diff
changeset
|
208 |
apply (metis supp_finite_atom_set finite_fset) |
7687f97eca53
A lemma about substitution in TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2120
diff
changeset
|
209 |
done |
7687f97eca53
A lemma about substitution in TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2120
diff
changeset
|
210 |
|
2181
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
211 |
lemma subst_lemma_pre: |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
212 |
"z \<sharp> (N,L) \<longrightarrow> z \<sharp> (subst [(y, L)] N)" |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
213 |
apply (induct N rule: ty_tys.induct[of _ "\<lambda>t. True" _ , simplified]) |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
214 |
apply (simp add: s1) |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
215 |
apply (auto simp add: fresh_Pair) |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
216 |
apply (auto simp add: fresh_def ty_tys.fv[simplified ty_tys.supp])[3] |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
217 |
apply (simp add: s2) |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
218 |
apply (auto simp add: fresh_def ty_tys.fv[simplified ty_tys.supp]) |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
219 |
done |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
220 |
|
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
221 |
lemma substs_lemma_pre: |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
222 |
"atom z \<sharp> (N,L) \<longrightarrow> atom z \<sharp> (substs [(y, L)] N)" |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
223 |
apply (rule strong_induct[of |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
224 |
"\<lambda>a t. True" "\<lambda>(z, y, L) N. (atom z \<sharp> (N, L) \<longrightarrow> atom z \<sharp> (substs [(y, L)] N))" _ _ "(z, y, L)", simplified]) |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
225 |
apply clarify |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
226 |
apply (subst s3) |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
227 |
apply (simp add: fresh_star_def fresh_Cons fresh_Nil fresh_Pair) |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
228 |
apply (simp_all add: fresh_star_prod_elim fresh_Pair) |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
229 |
apply clarify |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
230 |
apply (drule fresh_star_atom) |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
231 |
apply (drule fresh_star_atom) |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
232 |
apply (simp add: fresh_def) |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
233 |
apply (simp only: ty_tys.fv[simplified ty_tys.supp]) |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
234 |
apply (subgoal_tac "atom a \<notin> supp (subst [(aa, b)] t)") |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
235 |
apply blast |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
236 |
apply (subgoal_tac "atom a \<notin> supp t") |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
237 |
apply (fold fresh_def)[1] |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
238 |
apply (rule mp[OF subst_lemma_pre]) |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
239 |
apply (simp add: fresh_Pair) |
2524
693562f03eee
major reorganisation of fset (renamed fset_to_set to fset, changed the definition of list_eq and fcard_raw)
Christian Urban <urbanc@in.tum.de>
parents:
2494
diff
changeset
|
240 |
apply (subgoal_tac "atom a \<notin> (fset (fmap atom fset))") |
2181
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
241 |
apply blast |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
242 |
apply (metis supp_finite_atom_set finite_fset) |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
243 |
done |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
244 |
|
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
245 |
lemma subst_lemma: |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
246 |
shows "x \<noteq> y \<and> atom x \<sharp> L \<longrightarrow> |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
247 |
subst [(y, L)] (subst [(x, N)] M) = |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
248 |
subst [(x, (subst [(y, L)] N))] (subst [(y, L)] M)" |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
249 |
apply (induct M rule: ty_tys.induct[of _ "\<lambda>t. True" _ , simplified]) |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
250 |
apply (simp_all add: s1 s2) |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
251 |
apply clarify |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
252 |
apply (subst (2) subst_ty) |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
253 |
apply simp_all |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
254 |
done |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
255 |
|
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
256 |
lemma substs_lemma: |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
257 |
shows "x \<noteq> y \<and> atom x \<sharp> L \<longrightarrow> |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
258 |
substs [(y, L)] (substs [(x, N)] M) = |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
259 |
substs [(x, (subst [(y, L)] N))] (substs [(y, L)] M)" |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
260 |
apply (rule strong_induct[of |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
261 |
"\<lambda>a t. True" "\<lambda>(x, y, N, L) M. x \<noteq> y \<and> atom x \<sharp> L \<longrightarrow> |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
262 |
substs [(y, L)] (substs [(x, N)] M) = |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
263 |
substs [(x, (subst [(y, L)] N))] (substs [(y, L)] M)" _ _ "(x, y, N, L)", simplified]) |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
264 |
apply clarify |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
265 |
apply (simp_all add: fresh_star_prod_elim fresh_Pair) |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
266 |
apply (subst s3) |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
267 |
apply (unfold fresh_star_def)[1] |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
268 |
apply (simp add: fresh_Cons fresh_Nil fresh_Pair) |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
269 |
apply (subst s3) |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
270 |
apply (unfold fresh_star_def)[1] |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
271 |
apply (simp add: fresh_Cons fresh_Nil fresh_Pair) |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
272 |
apply (subst s3) |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
273 |
apply (unfold fresh_star_def)[1] |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
274 |
apply (simp add: fresh_Cons fresh_Nil fresh_Pair) |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
275 |
apply (subst s3) |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
276 |
apply (unfold fresh_star_def)[1] |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
277 |
apply (simp add: fresh_Cons fresh_Nil fresh_Pair) |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
278 |
apply (rule ballI) |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
279 |
apply (rule mp[OF subst_lemma_pre]) |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
280 |
apply (simp add: fresh_Pair) |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
281 |
apply (subst subst_lemma) |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
282 |
apply simp_all |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
283 |
done |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
284 |
|
2179
7687f97eca53
A lemma about substitution in TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2120
diff
changeset
|
285 |
end |
1795 | 286 |
*) |
287 |
||
288 |
||
289 |
end |