author | Christian Urban <urbanc@in.tum.de> |
Fri, 31 Dec 2010 15:37:04 +0000 | |
changeset 2634 | 3ce1089cdbf3 |
parent 2630 | 8268b277d240 |
child 2676 | 028d5511c15f |
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 |
|
2486
b4ea19604b0b
cleaned up two examples
Christian Urban <urbanc@in.tum.de>
parents:
2480
diff
changeset
|
9 |
(* defined as a single nominal datatype *) |
1795 | 10 |
|
11 |
nominal_datatype ty = |
|
12 |
Var "name" |
|
13 |
| Fun "ty" "ty" |
|
14 |
and tys = |
|
2634
3ce1089cdbf3
changed res keyword to set+ for restrictions; comment by a referee
Christian Urban <urbanc@in.tum.de>
parents:
2630
diff
changeset
|
15 |
All xs::"name fset" ty::"ty" bind (set+) xs in ty |
2434 | 16 |
|
2468 | 17 |
thm ty_tys.distinct |
18 |
thm ty_tys.induct |
|
2617
e44551d067e6
properly exported strong exhaust theorem; cleaned up some examples
Christian Urban <urbanc@in.tum.de>
parents:
2611
diff
changeset
|
19 |
thm ty_tys.inducts |
e44551d067e6
properly exported strong exhaust theorem; cleaned up some examples
Christian Urban <urbanc@in.tum.de>
parents:
2611
diff
changeset
|
20 |
thm ty_tys.exhaust ty_tys.strong_exhaust |
2468 | 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 = |
2634
3ce1089cdbf3
changed res keyword to set+ for restrictions; comment by a referee
Christian Urban <urbanc@in.tum.de>
parents:
2630
diff
changeset
|
38 |
All2 xs::"name fset" ty::"ty2" bind (set+) 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 |
2630
8268b277d240
automated all strong induction lemmas
Christian Urban <urbanc@in.tum.de>
parents:
2622
diff
changeset
|
41 |
thm tys2.induct tys2.strong_induct |
2617
e44551d067e6
properly exported strong exhaust theorem; cleaned up some examples
Christian Urban <urbanc@in.tum.de>
parents:
2611
diff
changeset
|
42 |
thm tys2.exhaust tys2.strong_exhaust |
2468 | 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 |
|
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
|
53 |
|
2566
a59d8e1e3a17
moved rest of the lemmas from Nominal2_FSet to the TypeScheme example
Christian Urban <urbanc@in.tum.de>
parents:
2556
diff
changeset
|
54 |
text {* Some Tests *} |
1795 | 55 |
|
56 |
lemma |
|
57 |
shows "All {|a, b|} (Fun (Var a) (Var b)) = All {|b, a|} (Fun (Var a) (Var b))" |
|
58 |
apply(simp add: ty_tys.eq_iff) |
|
2566
a59d8e1e3a17
moved rest of the lemmas from Nominal2_FSet to the TypeScheme example
Christian Urban <urbanc@in.tum.de>
parents:
2556
diff
changeset
|
59 |
apply(simp add: Abs_eq_iff) |
1795 | 60 |
apply(rule_tac x="0::perm" in exI) |
61 |
apply(simp add: alphas) |
|
2040
94e24da9ae75
Move TypeSchemes to NewParser
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
1933
diff
changeset
|
62 |
apply(simp add: fresh_star_def fresh_zero_perm supp_at_base) |
2566
a59d8e1e3a17
moved rest of the lemmas from Nominal2_FSet to the TypeScheme example
Christian Urban <urbanc@in.tum.de>
parents:
2556
diff
changeset
|
63 |
apply(simp add: ty_tys.supp supp_at_base) |
1795 | 64 |
done |
65 |
||
66 |
lemma |
|
67 |
shows "All {|a, b|} (Fun (Var a) (Var b)) = All {|a, b|} (Fun (Var b) (Var a))" |
|
2566
a59d8e1e3a17
moved rest of the lemmas from Nominal2_FSet to the TypeScheme example
Christian Urban <urbanc@in.tum.de>
parents:
2556
diff
changeset
|
68 |
apply(simp add: ty_tys.eq_iff Abs_eq_iff) |
1795 | 69 |
apply(rule_tac x="(atom a \<rightleftharpoons> atom b)" in exI) |
2566
a59d8e1e3a17
moved rest of the lemmas from Nominal2_FSet to the TypeScheme example
Christian Urban <urbanc@in.tum.de>
parents:
2556
diff
changeset
|
70 |
apply(simp add: alphas fresh_star_def supp_at_base ty_tys.supp) |
1795 | 71 |
done |
72 |
||
73 |
lemma |
|
74 |
shows "All {|a, b, c|} (Fun (Var a) (Var b)) = All {|a, b|} (Fun (Var a) (Var b))" |
|
2566
a59d8e1e3a17
moved rest of the lemmas from Nominal2_FSet to the TypeScheme example
Christian Urban <urbanc@in.tum.de>
parents:
2556
diff
changeset
|
75 |
apply(simp add: ty_tys.eq_iff Abs_eq_iff) |
1795 | 76 |
apply(rule_tac x="0::perm" in exI) |
2566
a59d8e1e3a17
moved rest of the lemmas from Nominal2_FSet to the TypeScheme example
Christian Urban <urbanc@in.tum.de>
parents:
2556
diff
changeset
|
77 |
apply(simp add: alphas fresh_star_def ty_tys.supp supp_at_base) |
1795 | 78 |
done |
79 |
||
80 |
lemma |
|
81 |
assumes a: "a \<noteq> b" |
|
82 |
shows "\<not>(All {|a, b|} (Fun (Var a) (Var b)) = All {|c|} (Fun (Var c) (Var c)))" |
|
83 |
using a |
|
2566
a59d8e1e3a17
moved rest of the lemmas from Nominal2_FSet to the TypeScheme example
Christian Urban <urbanc@in.tum.de>
parents:
2556
diff
changeset
|
84 |
apply(simp add: ty_tys.eq_iff Abs_eq_iff) |
1795 | 85 |
apply(clarify) |
2566
a59d8e1e3a17
moved rest of the lemmas from Nominal2_FSet to the TypeScheme example
Christian Urban <urbanc@in.tum.de>
parents:
2556
diff
changeset
|
86 |
apply(simp add: alphas fresh_star_def ty_tys.eq_iff ty_tys.supp supp_at_base) |
1795 | 87 |
apply auto |
88 |
done |
|
89 |
||
2566
a59d8e1e3a17
moved rest of the lemmas from Nominal2_FSet to the TypeScheme example
Christian Urban <urbanc@in.tum.de>
parents:
2556
diff
changeset
|
90 |
|
a59d8e1e3a17
moved rest of the lemmas from Nominal2_FSet to the TypeScheme example
Christian Urban <urbanc@in.tum.de>
parents:
2556
diff
changeset
|
91 |
text {* Some lemmas about fsets *} |
a59d8e1e3a17
moved rest of the lemmas from Nominal2_FSet to the TypeScheme example
Christian Urban <urbanc@in.tum.de>
parents:
2556
diff
changeset
|
92 |
|
a59d8e1e3a17
moved rest of the lemmas from Nominal2_FSet to the TypeScheme example
Christian Urban <urbanc@in.tum.de>
parents:
2556
diff
changeset
|
93 |
lemma atom_map_fset_cong: |
a59d8e1e3a17
moved rest of the lemmas from Nominal2_FSet to the TypeScheme example
Christian Urban <urbanc@in.tum.de>
parents:
2556
diff
changeset
|
94 |
shows "map_fset atom x = map_fset atom y \<longleftrightarrow> x = y" |
a59d8e1e3a17
moved rest of the lemmas from Nominal2_FSet to the TypeScheme example
Christian Urban <urbanc@in.tum.de>
parents:
2556
diff
changeset
|
95 |
apply(rule inj_map_fset_cong) |
a59d8e1e3a17
moved rest of the lemmas from Nominal2_FSet to the TypeScheme example
Christian Urban <urbanc@in.tum.de>
parents:
2556
diff
changeset
|
96 |
apply(simp add: inj_on_def) |
a59d8e1e3a17
moved rest of the lemmas from Nominal2_FSet to the TypeScheme example
Christian Urban <urbanc@in.tum.de>
parents:
2556
diff
changeset
|
97 |
done |
a59d8e1e3a17
moved rest of the lemmas from Nominal2_FSet to the TypeScheme example
Christian Urban <urbanc@in.tum.de>
parents:
2556
diff
changeset
|
98 |
|
a59d8e1e3a17
moved rest of the lemmas from Nominal2_FSet to the TypeScheme example
Christian Urban <urbanc@in.tum.de>
parents:
2556
diff
changeset
|
99 |
lemma supp_map_fset_atom: |
a59d8e1e3a17
moved rest of the lemmas from Nominal2_FSet to the TypeScheme example
Christian Urban <urbanc@in.tum.de>
parents:
2556
diff
changeset
|
100 |
shows "supp (map_fset atom S) = supp S" |
a59d8e1e3a17
moved rest of the lemmas from Nominal2_FSet to the TypeScheme example
Christian Urban <urbanc@in.tum.de>
parents:
2556
diff
changeset
|
101 |
unfolding supp_def |
a59d8e1e3a17
moved rest of the lemmas from Nominal2_FSet to the TypeScheme example
Christian Urban <urbanc@in.tum.de>
parents:
2556
diff
changeset
|
102 |
apply(perm_simp) |
a59d8e1e3a17
moved rest of the lemmas from Nominal2_FSet to the TypeScheme example
Christian Urban <urbanc@in.tum.de>
parents:
2556
diff
changeset
|
103 |
apply(simp add: atom_map_fset_cong) |
a59d8e1e3a17
moved rest of the lemmas from Nominal2_FSet to the TypeScheme example
Christian Urban <urbanc@in.tum.de>
parents:
2556
diff
changeset
|
104 |
done |
a59d8e1e3a17
moved rest of the lemmas from Nominal2_FSet to the TypeScheme example
Christian Urban <urbanc@in.tum.de>
parents:
2556
diff
changeset
|
105 |
|
a59d8e1e3a17
moved rest of the lemmas from Nominal2_FSet to the TypeScheme example
Christian Urban <urbanc@in.tum.de>
parents:
2556
diff
changeset
|
106 |
lemma supp_at_fset: |
a59d8e1e3a17
moved rest of the lemmas from Nominal2_FSet to the TypeScheme example
Christian Urban <urbanc@in.tum.de>
parents:
2556
diff
changeset
|
107 |
fixes S::"('a::at_base) fset" |
a59d8e1e3a17
moved rest of the lemmas from Nominal2_FSet to the TypeScheme example
Christian Urban <urbanc@in.tum.de>
parents:
2556
diff
changeset
|
108 |
shows "supp S = fset (map_fset atom S)" |
a59d8e1e3a17
moved rest of the lemmas from Nominal2_FSet to the TypeScheme example
Christian Urban <urbanc@in.tum.de>
parents:
2556
diff
changeset
|
109 |
apply (induct S) |
a59d8e1e3a17
moved rest of the lemmas from Nominal2_FSet to the TypeScheme example
Christian Urban <urbanc@in.tum.de>
parents:
2556
diff
changeset
|
110 |
apply (simp add: supp_empty_fset) |
a59d8e1e3a17
moved rest of the lemmas from Nominal2_FSet to the TypeScheme example
Christian Urban <urbanc@in.tum.de>
parents:
2556
diff
changeset
|
111 |
apply (simp add: supp_insert_fset) |
a59d8e1e3a17
moved rest of the lemmas from Nominal2_FSet to the TypeScheme example
Christian Urban <urbanc@in.tum.de>
parents:
2556
diff
changeset
|
112 |
apply (simp add: supp_at_base) |
a59d8e1e3a17
moved rest of the lemmas from Nominal2_FSet to the TypeScheme example
Christian Urban <urbanc@in.tum.de>
parents:
2556
diff
changeset
|
113 |
done |
a59d8e1e3a17
moved rest of the lemmas from Nominal2_FSet to the TypeScheme example
Christian Urban <urbanc@in.tum.de>
parents:
2556
diff
changeset
|
114 |
|
a59d8e1e3a17
moved rest of the lemmas from Nominal2_FSet to the TypeScheme example
Christian Urban <urbanc@in.tum.de>
parents:
2556
diff
changeset
|
115 |
lemma fresh_star_atom: |
a59d8e1e3a17
moved rest of the lemmas from Nominal2_FSet to the TypeScheme example
Christian Urban <urbanc@in.tum.de>
parents:
2556
diff
changeset
|
116 |
fixes a::"'a::at_base" |
a59d8e1e3a17
moved rest of the lemmas from Nominal2_FSet to the TypeScheme example
Christian Urban <urbanc@in.tum.de>
parents:
2556
diff
changeset
|
117 |
shows "fset S \<sharp>* a \<Longrightarrow> atom a \<sharp> fset S" |
a59d8e1e3a17
moved rest of the lemmas from Nominal2_FSet to the TypeScheme example
Christian Urban <urbanc@in.tum.de>
parents:
2556
diff
changeset
|
118 |
apply (induct S) |
a59d8e1e3a17
moved rest of the lemmas from Nominal2_FSet to the TypeScheme example
Christian Urban <urbanc@in.tum.de>
parents:
2556
diff
changeset
|
119 |
apply (simp add: fresh_set_empty) |
a59d8e1e3a17
moved rest of the lemmas from Nominal2_FSet to the TypeScheme example
Christian Urban <urbanc@in.tum.de>
parents:
2556
diff
changeset
|
120 |
apply simp |
a59d8e1e3a17
moved rest of the lemmas from Nominal2_FSet to the TypeScheme example
Christian Urban <urbanc@in.tum.de>
parents:
2556
diff
changeset
|
121 |
apply (unfold fresh_def) |
a59d8e1e3a17
moved rest of the lemmas from Nominal2_FSet to the TypeScheme example
Christian Urban <urbanc@in.tum.de>
parents:
2556
diff
changeset
|
122 |
apply (simp add: supp_of_finite_insert) |
a59d8e1e3a17
moved rest of the lemmas from Nominal2_FSet to the TypeScheme example
Christian Urban <urbanc@in.tum.de>
parents:
2556
diff
changeset
|
123 |
apply (rule conjI) |
a59d8e1e3a17
moved rest of the lemmas from Nominal2_FSet to the TypeScheme example
Christian Urban <urbanc@in.tum.de>
parents:
2556
diff
changeset
|
124 |
apply (unfold fresh_star_def) |
a59d8e1e3a17
moved rest of the lemmas from Nominal2_FSet to the TypeScheme example
Christian Urban <urbanc@in.tum.de>
parents:
2556
diff
changeset
|
125 |
apply simp |
a59d8e1e3a17
moved rest of the lemmas from Nominal2_FSet to the TypeScheme example
Christian Urban <urbanc@in.tum.de>
parents:
2556
diff
changeset
|
126 |
apply (unfold fresh_def) |
a59d8e1e3a17
moved rest of the lemmas from Nominal2_FSet to the TypeScheme example
Christian Urban <urbanc@in.tum.de>
parents:
2556
diff
changeset
|
127 |
apply (simp add: supp_at_base supp_atom) |
a59d8e1e3a17
moved rest of the lemmas from Nominal2_FSet to the TypeScheme example
Christian Urban <urbanc@in.tum.de>
parents:
2556
diff
changeset
|
128 |
apply clarify |
a59d8e1e3a17
moved rest of the lemmas from Nominal2_FSet to the TypeScheme example
Christian Urban <urbanc@in.tum.de>
parents:
2556
diff
changeset
|
129 |
apply auto |
a59d8e1e3a17
moved rest of the lemmas from Nominal2_FSet to the TypeScheme example
Christian Urban <urbanc@in.tum.de>
parents:
2556
diff
changeset
|
130 |
done |
a59d8e1e3a17
moved rest of the lemmas from Nominal2_FSet to the TypeScheme example
Christian Urban <urbanc@in.tum.de>
parents:
2556
diff
changeset
|
131 |
|
a59d8e1e3a17
moved rest of the lemmas from Nominal2_FSet to the TypeScheme example
Christian Urban <urbanc@in.tum.de>
parents:
2556
diff
changeset
|
132 |
|
a59d8e1e3a17
moved rest of the lemmas from Nominal2_FSet to the TypeScheme example
Christian Urban <urbanc@in.tum.de>
parents:
2556
diff
changeset
|
133 |
|
a59d8e1e3a17
moved rest of the lemmas from Nominal2_FSet to the TypeScheme example
Christian Urban <urbanc@in.tum.de>
parents:
2556
diff
changeset
|
134 |
(* |
2179
7687f97eca53
A lemma about substitution in TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2120
diff
changeset
|
135 |
fun |
7687f97eca53
A lemma about substitution in TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2120
diff
changeset
|
136 |
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
|
137 |
where |
7687f97eca53
A lemma about substitution in TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2120
diff
changeset
|
138 |
"lookup [] n = Var n" |
7687f97eca53
A lemma about substitution in TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2120
diff
changeset
|
139 |
| "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
|
140 |
|
7687f97eca53
A lemma about substitution in TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2120
diff
changeset
|
141 |
locale subst_loc = |
7687f97eca53
A lemma about substitution in TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2120
diff
changeset
|
142 |
fixes |
7687f97eca53
A lemma about substitution in TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2120
diff
changeset
|
143 |
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
|
144 |
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
|
145 |
assumes |
7687f97eca53
A lemma about substitution in TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2120
diff
changeset
|
146 |
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
|
147 |
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
|
148 |
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
|
149 |
begin |
7687f97eca53
A lemma about substitution in TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2120
diff
changeset
|
150 |
|
7687f97eca53
A lemma about substitution in TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2120
diff
changeset
|
151 |
lemma subst_ty: |
7687f97eca53
A lemma about substitution in TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2120
diff
changeset
|
152 |
assumes x: "atom x \<sharp> t" |
7687f97eca53
A lemma about substitution in TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2120
diff
changeset
|
153 |
shows "subst [(x, S)] t = t" |
7687f97eca53
A lemma about substitution in TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2120
diff
changeset
|
154 |
using x |
7687f97eca53
A lemma about substitution in TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2120
diff
changeset
|
155 |
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
|
156 |
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
|
157 |
|
7687f97eca53
A lemma about substitution in TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2120
diff
changeset
|
158 |
lemma subst_tyS: |
7687f97eca53
A lemma about substitution in TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2120
diff
changeset
|
159 |
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
|
160 |
apply (rule strong_induct[of |
2180 | 161 |
"\<lambda>a t. True" "\<lambda>(x, S) T. (atom x \<sharp> T \<longrightarrow> substs [(x, S)] T = T)" _ "t" "(x, S)", simplified]) |
162 |
apply clarify |
|
2179
7687f97eca53
A lemma about substitution in TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2120
diff
changeset
|
163 |
apply (subst s3) |
7687f97eca53
A lemma about substitution in TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2120
diff
changeset
|
164 |
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
|
165 |
apply (subst subst_ty) |
2180 | 166 |
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
|
167 |
apply (drule fresh_star_atom) |
2180 | 168 |
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
|
169 |
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
|
170 |
apply blast |
7687f97eca53
A lemma about substitution in TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2120
diff
changeset
|
171 |
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
|
172 |
done |
7687f97eca53
A lemma about substitution in TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2120
diff
changeset
|
173 |
|
2181
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
174 |
lemma subst_lemma_pre: |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
175 |
"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
|
176 |
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
|
177 |
apply (simp add: s1) |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
178 |
apply (auto simp add: fresh_Pair) |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
179 |
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
|
180 |
apply (simp add: s2) |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
181 |
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
|
182 |
done |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
183 |
|
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
184 |
lemma substs_lemma_pre: |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
185 |
"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
|
186 |
apply (rule strong_induct[of |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
187 |
"\<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
|
188 |
apply clarify |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
189 |
apply (subst s3) |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
190 |
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
|
191 |
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
|
192 |
apply clarify |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
193 |
apply (drule fresh_star_atom) |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
194 |
apply (drule fresh_star_atom) |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
195 |
apply (simp add: fresh_def) |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
196 |
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
|
197 |
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
|
198 |
apply blast |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
199 |
apply (subgoal_tac "atom a \<notin> supp t") |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
200 |
apply (fold fresh_def)[1] |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
201 |
apply (rule mp[OF subst_lemma_pre]) |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
202 |
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
|
203 |
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
|
204 |
apply blast |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
205 |
apply (metis supp_finite_atom_set finite_fset) |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
206 |
done |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
207 |
|
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
208 |
lemma subst_lemma: |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
209 |
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
|
210 |
subst [(y, L)] (subst [(x, N)] M) = |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
211 |
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
|
212 |
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
|
213 |
apply (simp_all add: s1 s2) |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
214 |
apply clarify |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
215 |
apply (subst (2) subst_ty) |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
216 |
apply simp_all |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
217 |
done |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
218 |
|
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
219 |
lemma substs_lemma: |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
220 |
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
|
221 |
substs [(y, L)] (substs [(x, N)] M) = |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
222 |
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
|
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>(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
|
225 |
substs [(y, L)] (substs [(x, N)] M) = |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
226 |
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
|
227 |
apply clarify |
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 (subst s3) |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
230 |
apply (unfold fresh_star_def)[1] |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
231 |
apply (simp add: fresh_Cons fresh_Nil fresh_Pair) |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
232 |
apply (subst s3) |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
233 |
apply (unfold fresh_star_def)[1] |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
234 |
apply (simp add: fresh_Cons fresh_Nil fresh_Pair) |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
235 |
apply (subst s3) |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
236 |
apply (unfold fresh_star_def)[1] |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
237 |
apply (simp add: fresh_Cons fresh_Nil fresh_Pair) |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
238 |
apply (subst s3) |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
239 |
apply (unfold fresh_star_def)[1] |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
240 |
apply (simp add: fresh_Cons fresh_Nil fresh_Pair) |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
241 |
apply (rule ballI) |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
242 |
apply (rule mp[OF subst_lemma_pre]) |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
243 |
apply (simp add: fresh_Pair) |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
244 |
apply (subst subst_lemma) |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
245 |
apply simp_all |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
246 |
done |
b997c22805ae
Substitution Lemma for TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2180
diff
changeset
|
247 |
|
2179
7687f97eca53
A lemma about substitution in TypeSchemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2120
diff
changeset
|
248 |
end |
1795 | 249 |
*) |
250 |
||
251 |
||
252 |
end |