author | Cezary Kaliszyk <kaliszyk@in.tum.de> |
Fri, 04 Dec 2009 09:33:32 +0100 | |
changeset 515 | b00a9b58264d |
parent 514 | 6b3be083229c |
child 516 | bed81795848c |
permissions | -rw-r--r-- |
0 | 1 |
theory QuotMain |
6 | 2 |
imports QuotScript QuotList Prove |
264
d0581fbc096c
split quotient.ML into two files
Christian Urban <urbanc@in.tum.de>
parents:
263
diff
changeset
|
3 |
uses ("quotient_info.ML") |
d0581fbc096c
split quotient.ML into two files
Christian Urban <urbanc@in.tum.de>
parents:
263
diff
changeset
|
4 |
("quotient.ML") |
277
37636f2b1c19
separated the quotient_def into a separate file
Christian Urban <urbanc@in.tum.de>
parents:
275
diff
changeset
|
5 |
("quotient_def.ML") |
0 | 6 |
begin |
7 |
||
8 |
locale QUOT_TYPE = |
|
9 |
fixes R :: "'a \<Rightarrow> 'a \<Rightarrow> bool" |
|
10 |
and Abs :: "('a \<Rightarrow> bool) \<Rightarrow> 'b" |
|
11 |
and Rep :: "'b \<Rightarrow> ('a \<Rightarrow> bool)" |
|
12 |
assumes equiv: "EQUIV R" |
|
13 |
and rep_prop: "\<And>y. \<exists>x. Rep y = R x" |
|
14 |
and rep_inverse: "\<And>x. Abs (Rep x) = x" |
|
15 |
and abs_inverse: "\<And>x. (Rep (Abs (R x))) = (R x)" |
|
16 |
and rep_inject: "\<And>x y. (Rep x = Rep y) = (x = y)" |
|
15 | 17 |
begin |
0 | 18 |
|
19 |
definition |
|
200
d6a24dad5882
made quotients compatiple with Nominal; updated keyword file
Christian Urban <urbanc@in.tum.de>
parents:
198
diff
changeset
|
20 |
ABS::"'a \<Rightarrow> 'b" |
d6a24dad5882
made quotients compatiple with Nominal; updated keyword file
Christian Urban <urbanc@in.tum.de>
parents:
198
diff
changeset
|
21 |
where |
0 | 22 |
"ABS x \<equiv> Abs (R x)" |
23 |
||
24 |
definition |
|
200
d6a24dad5882
made quotients compatiple with Nominal; updated keyword file
Christian Urban <urbanc@in.tum.de>
parents:
198
diff
changeset
|
25 |
REP::"'b \<Rightarrow> 'a" |
d6a24dad5882
made quotients compatiple with Nominal; updated keyword file
Christian Urban <urbanc@in.tum.de>
parents:
198
diff
changeset
|
26 |
where |
0 | 27 |
"REP a = Eps (Rep a)" |
28 |
||
15 | 29 |
lemma lem9: |
0 | 30 |
shows "R (Eps (R x)) = R x" |
31 |
proof - |
|
32 |
have a: "R x x" using equiv by (simp add: EQUIV_REFL_SYM_TRANS REFL_def) |
|
33 |
then have "R x (Eps (R x))" by (rule someI) |
|
15 | 34 |
then show "R (Eps (R x)) = R x" |
0 | 35 |
using equiv unfolding EQUIV_def by simp |
36 |
qed |
|
37 |
||
38 |
theorem thm10: |
|
24
6885fa184e89
Merged with my changes from the morning:
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
23
diff
changeset
|
39 |
shows "ABS (REP a) \<equiv> a" |
6885fa184e89
Merged with my changes from the morning:
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
23
diff
changeset
|
40 |
apply (rule eq_reflection) |
6885fa184e89
Merged with my changes from the morning:
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
23
diff
changeset
|
41 |
unfolding ABS_def REP_def |
0 | 42 |
proof - |
15 | 43 |
from rep_prop |
0 | 44 |
obtain x where eq: "Rep a = R x" by auto |
45 |
have "Abs (R (Eps (Rep a))) = Abs (R (Eps (R x)))" using eq by simp |
|
46 |
also have "\<dots> = Abs (R x)" using lem9 by simp |
|
47 |
also have "\<dots> = Abs (Rep a)" using eq by simp |
|
48 |
also have "\<dots> = a" using rep_inverse by simp |
|
49 |
finally |
|
50 |
show "Abs (R (Eps (Rep a))) = a" by simp |
|
51 |
qed |
|
52 |
||
15 | 53 |
lemma REP_refl: |
0 | 54 |
shows "R (REP a) (REP a)" |
55 |
unfolding REP_def |
|
56 |
by (simp add: equiv[simplified EQUIV_def]) |
|
57 |
||
58 |
lemma lem7: |
|
22 | 59 |
shows "(R x = R y) = (Abs (R x) = Abs (R y))" |
0 | 60 |
apply(rule iffI) |
61 |
apply(simp) |
|
62 |
apply(drule rep_inject[THEN iffD2]) |
|
63 |
apply(simp add: abs_inverse) |
|
64 |
done |
|
15 | 65 |
|
0 | 66 |
theorem thm11: |
67 |
shows "R r r' = (ABS r = ABS r')" |
|
68 |
unfolding ABS_def |
|
69 |
by (simp only: equiv[simplified EQUIV_def] lem7) |
|
70 |
||
4 | 71 |
|
2 | 72 |
lemma REP_ABS_rsp: |
4 | 73 |
shows "R f (REP (ABS g)) = R f g" |
74 |
and "R (REP (ABS g)) f = R g f" |
|
23 | 75 |
by (simp_all add: thm10 thm11) |
4 | 76 |
|
0 | 77 |
lemma QUOTIENT: |
78 |
"QUOTIENT R ABS REP" |
|
79 |
apply(unfold QUOTIENT_def) |
|
80 |
apply(simp add: thm10) |
|
81 |
apply(simp add: REP_refl) |
|
82 |
apply(subst thm11[symmetric]) |
|
83 |
apply(simp add: equiv[simplified EQUIV_def]) |
|
84 |
done |
|
85 |
||
21
d15121412caa
Added more useful quotient facts.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
20
diff
changeset
|
86 |
lemma R_trans: |
49 | 87 |
assumes ab: "R a b" |
88 |
and bc: "R b c" |
|
22 | 89 |
shows "R a c" |
21
d15121412caa
Added more useful quotient facts.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
20
diff
changeset
|
90 |
proof - |
d15121412caa
Added more useful quotient facts.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
20
diff
changeset
|
91 |
have tr: "TRANS R" using equiv EQUIV_REFL_SYM_TRANS[of R] by simp |
d15121412caa
Added more useful quotient facts.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
20
diff
changeset
|
92 |
moreover have ab: "R a b" by fact |
d15121412caa
Added more useful quotient facts.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
20
diff
changeset
|
93 |
moreover have bc: "R b c" by fact |
22 | 94 |
ultimately show "R a c" unfolding TRANS_def by blast |
21
d15121412caa
Added more useful quotient facts.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
20
diff
changeset
|
95 |
qed |
d15121412caa
Added more useful quotient facts.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
20
diff
changeset
|
96 |
|
d15121412caa
Added more useful quotient facts.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
20
diff
changeset
|
97 |
lemma R_sym: |
49 | 98 |
assumes ab: "R a b" |
22 | 99 |
shows "R b a" |
21
d15121412caa
Added more useful quotient facts.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
20
diff
changeset
|
100 |
proof - |
d15121412caa
Added more useful quotient facts.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
20
diff
changeset
|
101 |
have re: "SYM R" using equiv EQUIV_REFL_SYM_TRANS[of R] by simp |
22 | 102 |
then show "R b a" using ab unfolding SYM_def by blast |
21
d15121412caa
Added more useful quotient facts.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
20
diff
changeset
|
103 |
qed |
d15121412caa
Added more useful quotient facts.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
20
diff
changeset
|
104 |
|
49 | 105 |
lemma R_trans2: |
106 |
assumes ac: "R a c" |
|
22 | 107 |
and bd: "R b d" |
21
d15121412caa
Added more useful quotient facts.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
20
diff
changeset
|
108 |
shows "R a b = R c d" |
200
d6a24dad5882
made quotients compatiple with Nominal; updated keyword file
Christian Urban <urbanc@in.tum.de>
parents:
198
diff
changeset
|
109 |
using ac bd |
d6a24dad5882
made quotients compatiple with Nominal; updated keyword file
Christian Urban <urbanc@in.tum.de>
parents:
198
diff
changeset
|
110 |
by (blast intro: R_trans R_sym) |
21
d15121412caa
Added more useful quotient facts.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
20
diff
changeset
|
111 |
|
d15121412caa
Added more useful quotient facts.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
20
diff
changeset
|
112 |
lemma REPS_same: |
25
9020ee23a020
The tactic with REPEAT, CHANGED and a proper simpset.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
24
diff
changeset
|
113 |
shows "R (REP a) (REP b) \<equiv> (a = b)" |
38 | 114 |
proof - |
115 |
have "R (REP a) (REP b) = (a = b)" |
|
116 |
proof |
|
117 |
assume as: "R (REP a) (REP b)" |
|
118 |
from rep_prop |
|
119 |
obtain x y |
|
120 |
where eqs: "Rep a = R x" "Rep b = R y" by blast |
|
121 |
from eqs have "R (Eps (R x)) (Eps (R y))" using as unfolding REP_def by simp |
|
122 |
then have "R x (Eps (R y))" using lem9 by simp |
|
123 |
then have "R (Eps (R y)) x" using R_sym by blast |
|
124 |
then have "R y x" using lem9 by simp |
|
125 |
then have "R x y" using R_sym by blast |
|
126 |
then have "ABS x = ABS y" using thm11 by simp |
|
127 |
then have "Abs (Rep a) = Abs (Rep b)" using eqs unfolding ABS_def by simp |
|
128 |
then show "a = b" using rep_inverse by simp |
|
129 |
next |
|
130 |
assume ab: "a = b" |
|
131 |
have "REFL R" using equiv EQUIV_REFL_SYM_TRANS[of R] by simp |
|
132 |
then show "R (REP a) (REP b)" unfolding REFL_def using ab by auto |
|
133 |
qed |
|
134 |
then show "R (REP a) (REP b) \<equiv> (a = b)" by simp |
|
21
d15121412caa
Added more useful quotient facts.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
20
diff
changeset
|
135 |
qed |
d15121412caa
Added more useful quotient facts.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
20
diff
changeset
|
136 |
|
0 | 137 |
end |
138 |
||
458 | 139 |
(* EQUALS_RSP is stronger *) |
419
b1cd040ff5f7
Simplifying arguments; got rid of trans2_thm.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
416
diff
changeset
|
140 |
lemma equiv_trans2: |
b1cd040ff5f7
Simplifying arguments; got rid of trans2_thm.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
416
diff
changeset
|
141 |
assumes e: "EQUIV R" |
b1cd040ff5f7
Simplifying arguments; got rid of trans2_thm.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
416
diff
changeset
|
142 |
and ac: "R a c" |
b1cd040ff5f7
Simplifying arguments; got rid of trans2_thm.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
416
diff
changeset
|
143 |
and bd: "R b d" |
b1cd040ff5f7
Simplifying arguments; got rid of trans2_thm.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
416
diff
changeset
|
144 |
shows "R a b = R c d" |
b1cd040ff5f7
Simplifying arguments; got rid of trans2_thm.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
416
diff
changeset
|
145 |
using ac bd e |
b1cd040ff5f7
Simplifying arguments; got rid of trans2_thm.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
416
diff
changeset
|
146 |
unfolding EQUIV_REFL_SYM_TRANS TRANS_def SYM_def |
b1cd040ff5f7
Simplifying arguments; got rid of trans2_thm.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
416
diff
changeset
|
147 |
by (blast) |
b1cd040ff5f7
Simplifying arguments; got rid of trans2_thm.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
416
diff
changeset
|
148 |
|
0 | 149 |
section {* type definition for the quotient type *} |
150 |
||
268
4d58c02289ca
simplified the quotient_def code; type of the defined constant must now be given; for-part eliminated
Christian Urban <urbanc@in.tum.de>
parents:
267
diff
changeset
|
151 |
(* the auxiliary data for the quotient types *) |
264
d0581fbc096c
split quotient.ML into two files
Christian Urban <urbanc@in.tum.de>
parents:
263
diff
changeset
|
152 |
use "quotient_info.ML" |
268
4d58c02289ca
simplified the quotient_def code; type of the defined constant must now be given; for-part eliminated
Christian Urban <urbanc@in.tum.de>
parents:
267
diff
changeset
|
153 |
|
185
929bc55efff7
added code for declaring map-functions
Christian Urban <urbanc@in.tum.de>
parents:
182
diff
changeset
|
154 |
declare [[map list = (map, LIST_REL)]] |
929bc55efff7
added code for declaring map-functions
Christian Urban <urbanc@in.tum.de>
parents:
182
diff
changeset
|
155 |
declare [[map * = (prod_fun, prod_rel)]] |
929bc55efff7
added code for declaring map-functions
Christian Urban <urbanc@in.tum.de>
parents:
182
diff
changeset
|
156 |
declare [[map "fun" = (fun_map, FUN_REL)]] |
929bc55efff7
added code for declaring map-functions
Christian Urban <urbanc@in.tum.de>
parents:
182
diff
changeset
|
157 |
|
506
91c374abde06
removed quot argument...not all examples work anymore
Christian Urban <urbanc@in.tum.de>
parents:
505
diff
changeset
|
158 |
lemmas [quotient_thm] = |
91c374abde06
removed quot argument...not all examples work anymore
Christian Urban <urbanc@in.tum.de>
parents:
505
diff
changeset
|
159 |
FUN_QUOTIENT IDENTITY_QUOTIENT LIST_QUOTIENT |
91c374abde06
removed quot argument...not all examples work anymore
Christian Urban <urbanc@in.tum.de>
parents:
505
diff
changeset
|
160 |
|
185
929bc55efff7
added code for declaring map-functions
Christian Urban <urbanc@in.tum.de>
parents:
182
diff
changeset
|
161 |
ML {* maps_lookup @{theory} "List.list" *} |
929bc55efff7
added code for declaring map-functions
Christian Urban <urbanc@in.tum.de>
parents:
182
diff
changeset
|
162 |
ML {* maps_lookup @{theory} "*" *} |
929bc55efff7
added code for declaring map-functions
Christian Urban <urbanc@in.tum.de>
parents:
182
diff
changeset
|
163 |
ML {* maps_lookup @{theory} "fun" *} |
174
09048a951dca
moved the map_funs setup into QuotMain
Christian Urban <urbanc@in.tum.de>
parents:
170
diff
changeset
|
164 |
|
268
4d58c02289ca
simplified the quotient_def code; type of the defined constant must now be given; for-part eliminated
Christian Urban <urbanc@in.tum.de>
parents:
267
diff
changeset
|
165 |
|
4d58c02289ca
simplified the quotient_def code; type of the defined constant must now be given; for-part eliminated
Christian Urban <urbanc@in.tum.de>
parents:
267
diff
changeset
|
166 |
(* definition of the quotient types *) |
277
37636f2b1c19
separated the quotient_def into a separate file
Christian Urban <urbanc@in.tum.de>
parents:
275
diff
changeset
|
167 |
(* FIXME: should be called quotient_typ.ML *) |
268
4d58c02289ca
simplified the quotient_def code; type of the defined constant must now be given; for-part eliminated
Christian Urban <urbanc@in.tum.de>
parents:
267
diff
changeset
|
168 |
use "quotient.ML" |
4d58c02289ca
simplified the quotient_def code; type of the defined constant must now be given; for-part eliminated
Christian Urban <urbanc@in.tum.de>
parents:
267
diff
changeset
|
169 |
|
4d58c02289ca
simplified the quotient_def code; type of the defined constant must now be given; for-part eliminated
Christian Urban <urbanc@in.tum.de>
parents:
267
diff
changeset
|
170 |
|
277
37636f2b1c19
separated the quotient_def into a separate file
Christian Urban <urbanc@in.tum.de>
parents:
275
diff
changeset
|
171 |
(* lifting of constants *) |
37636f2b1c19
separated the quotient_def into a separate file
Christian Urban <urbanc@in.tum.de>
parents:
275
diff
changeset
|
172 |
use "quotient_def.ML" |
37636f2b1c19
separated the quotient_def into a separate file
Christian Urban <urbanc@in.tum.de>
parents:
275
diff
changeset
|
173 |
|
381
991db758a72d
More moving from QuotMain to UnusedQuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
379
diff
changeset
|
174 |
(* TODO: Consider defining it with an "if"; sth like: |
991db758a72d
More moving from QuotMain to UnusedQuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
379
diff
changeset
|
175 |
Babs p m = \<lambda>x. if x \<in> p then m x else undefined |
991db758a72d
More moving from QuotMain to UnusedQuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
379
diff
changeset
|
176 |
*) |
991db758a72d
More moving from QuotMain to UnusedQuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
379
diff
changeset
|
177 |
definition |
991db758a72d
More moving from QuotMain to UnusedQuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
379
diff
changeset
|
178 |
Babs :: "('a \<Rightarrow> bool) \<Rightarrow> ('a \<Rightarrow> 'b) \<Rightarrow> 'a \<Rightarrow> 'b" |
991db758a72d
More moving from QuotMain to UnusedQuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
379
diff
changeset
|
179 |
where |
991db758a72d
More moving from QuotMain to UnusedQuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
379
diff
changeset
|
180 |
"(x \<in> p) \<Longrightarrow> (Babs p m x = m x)" |
310
fec6301a1989
added a container for quotient constants (does not work yet though)
Christian Urban <urbanc@in.tum.de>
parents:
307
diff
changeset
|
181 |
|
139 | 182 |
section {* ATOMIZE *} |
183 |
||
381
991db758a72d
More moving from QuotMain to UnusedQuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
379
diff
changeset
|
184 |
lemma atomize_eqv[atomize]: |
991db758a72d
More moving from QuotMain to UnusedQuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
379
diff
changeset
|
185 |
shows "(Trueprop A \<equiv> Trueprop B) \<equiv> (A \<equiv> B)" |
139 | 186 |
proof |
381
991db758a72d
More moving from QuotMain to UnusedQuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
379
diff
changeset
|
187 |
assume "A \<equiv> B" |
139 | 188 |
then show "Trueprop A \<equiv> Trueprop B" by unfold |
189 |
next |
|
190 |
assume *: "Trueprop A \<equiv> Trueprop B" |
|
191 |
have "A = B" |
|
192 |
proof (cases A) |
|
193 |
case True |
|
194 |
have "A" by fact |
|
195 |
then show "A = B" using * by simp |
|
196 |
next |
|
197 |
case False |
|
198 |
have "\<not>A" by fact |
|
199 |
then show "A = B" using * by auto |
|
200 |
qed |
|
201 |
then show "A \<equiv> B" by (rule eq_reflection) |
|
202 |
qed |
|
203 |
||
204 |
ML {* |
|
205 |
fun atomize_thm thm = |
|
206 |
let |
|
221 | 207 |
val thm' = Thm.freezeT (forall_intr_vars thm) |
139 | 208 |
val thm'' = ObjectLogic.atomize (cprop_of thm') |
209 |
in |
|
404 | 210 |
@{thm equal_elim_rule1} OF [thm'', thm'] |
139 | 211 |
end |
212 |
*} |
|
213 |
||
387 | 214 |
section {* infrastructure about id *} |
381
991db758a72d
More moving from QuotMain to UnusedQuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
379
diff
changeset
|
215 |
|
991db758a72d
More moving from QuotMain to UnusedQuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
379
diff
changeset
|
216 |
lemma prod_fun_id: "prod_fun id id \<equiv> id" |
415
5a9bdf81672d
More cleaning in QuotMain, identity handling.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
413
diff
changeset
|
217 |
by (rule eq_reflection) (simp add: prod_fun_def) |
381
991db758a72d
More moving from QuotMain to UnusedQuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
379
diff
changeset
|
218 |
|
991db758a72d
More moving from QuotMain to UnusedQuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
379
diff
changeset
|
219 |
lemma map_id: "map id \<equiv> id" |
415
5a9bdf81672d
More cleaning in QuotMain, identity handling.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
413
diff
changeset
|
220 |
apply (rule eq_reflection) |
5a9bdf81672d
More cleaning in QuotMain, identity handling.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
413
diff
changeset
|
221 |
apply (rule ext) |
5a9bdf81672d
More cleaning in QuotMain, identity handling.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
413
diff
changeset
|
222 |
apply (rule_tac list="x" in list.induct) |
5a9bdf81672d
More cleaning in QuotMain, identity handling.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
413
diff
changeset
|
223 |
apply (simp_all) |
5a9bdf81672d
More cleaning in QuotMain, identity handling.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
413
diff
changeset
|
224 |
done |
381
991db758a72d
More moving from QuotMain to UnusedQuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
379
diff
changeset
|
225 |
|
409
6b59a3844055
introduced a separate lemma for id_simps
Christian Urban <urbanc@in.tum.de>
parents:
408
diff
changeset
|
226 |
lemmas id_simps = |
6b59a3844055
introduced a separate lemma for id_simps
Christian Urban <urbanc@in.tum.de>
parents:
408
diff
changeset
|
227 |
FUN_MAP_I[THEN eq_reflection] |
6b59a3844055
introduced a separate lemma for id_simps
Christian Urban <urbanc@in.tum.de>
parents:
408
diff
changeset
|
228 |
id_apply[THEN eq_reflection] |
415
5a9bdf81672d
More cleaning in QuotMain, identity handling.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
413
diff
changeset
|
229 |
id_def[THEN eq_reflection,symmetric] |
5a9bdf81672d
More cleaning in QuotMain, identity handling.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
413
diff
changeset
|
230 |
prod_fun_id map_id |
409
6b59a3844055
introduced a separate lemma for id_simps
Christian Urban <urbanc@in.tum.de>
parents:
408
diff
changeset
|
231 |
|
381
991db758a72d
More moving from QuotMain to UnusedQuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
379
diff
changeset
|
232 |
ML {* |
409
6b59a3844055
introduced a separate lemma for id_simps
Christian Urban <urbanc@in.tum.de>
parents:
408
diff
changeset
|
233 |
fun simp_ids thm = |
6b59a3844055
introduced a separate lemma for id_simps
Christian Urban <urbanc@in.tum.de>
parents:
408
diff
changeset
|
234 |
MetaSimplifier.rewrite_rule @{thms id_simps} thm |
381
991db758a72d
More moving from QuotMain to UnusedQuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
379
diff
changeset
|
235 |
*} |
991db758a72d
More moving from QuotMain to UnusedQuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
379
diff
changeset
|
236 |
|
407
d387743f022b
tuned comments and moved slightly some code
Christian Urban <urbanc@in.tum.de>
parents:
405
diff
changeset
|
237 |
section {* Debugging infrastructure for testing tactics *} |
381
991db758a72d
More moving from QuotMain to UnusedQuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
379
diff
changeset
|
238 |
|
447
3e7ee6f5437d
selective debugging of the inj_repabs_tac (at the moment for step 3 and 4 debugging information is printed)
Christian Urban <urbanc@in.tum.de>
parents:
446
diff
changeset
|
239 |
ML {* |
450
2dc708ddb93a
introduced a global list of respectfulness lemmas; the attribute is [quot_rsp]
Christian Urban <urbanc@in.tum.de>
parents:
449
diff
changeset
|
240 |
fun my_print_tac ctxt s i thm = |
407
d387743f022b
tuned comments and moved slightly some code
Christian Urban <urbanc@in.tum.de>
parents:
405
diff
changeset
|
241 |
let |
450
2dc708ddb93a
introduced a global list of respectfulness lemmas; the attribute is [quot_rsp]
Christian Urban <urbanc@in.tum.de>
parents:
449
diff
changeset
|
242 |
val prem_str = nth (prems_of thm) (i - 1) |
2dc708ddb93a
introduced a global list of respectfulness lemmas; the attribute is [quot_rsp]
Christian Urban <urbanc@in.tum.de>
parents:
449
diff
changeset
|
243 |
|> Syntax.string_of_term ctxt |
2dc708ddb93a
introduced a global list of respectfulness lemmas; the attribute is [quot_rsp]
Christian Urban <urbanc@in.tum.de>
parents:
449
diff
changeset
|
244 |
handle Subscript => "no subgoal" |
2dc708ddb93a
introduced a global list of respectfulness lemmas; the attribute is [quot_rsp]
Christian Urban <urbanc@in.tum.de>
parents:
449
diff
changeset
|
245 |
val _ = tracing (s ^ "\n" ^ prem_str) |
407
d387743f022b
tuned comments and moved slightly some code
Christian Urban <urbanc@in.tum.de>
parents:
405
diff
changeset
|
246 |
in |
d387743f022b
tuned comments and moved slightly some code
Christian Urban <urbanc@in.tum.de>
parents:
405
diff
changeset
|
247 |
Seq.single thm |
450
2dc708ddb93a
introduced a global list of respectfulness lemmas; the attribute is [quot_rsp]
Christian Urban <urbanc@in.tum.de>
parents:
449
diff
changeset
|
248 |
end *} |
2dc708ddb93a
introduced a global list of respectfulness lemmas; the attribute is [quot_rsp]
Christian Urban <urbanc@in.tum.de>
parents:
449
diff
changeset
|
249 |
|
407
d387743f022b
tuned comments and moved slightly some code
Christian Urban <urbanc@in.tum.de>
parents:
405
diff
changeset
|
250 |
|
447
3e7ee6f5437d
selective debugging of the inj_repabs_tac (at the moment for step 3 and 4 debugging information is printed)
Christian Urban <urbanc@in.tum.de>
parents:
446
diff
changeset
|
251 |
ML {* |
3e7ee6f5437d
selective debugging of the inj_repabs_tac (at the moment for step 3 and 4 debugging information is printed)
Christian Urban <urbanc@in.tum.de>
parents:
446
diff
changeset
|
252 |
fun DT ctxt s tac i thm = |
450
2dc708ddb93a
introduced a global list of respectfulness lemmas; the attribute is [quot_rsp]
Christian Urban <urbanc@in.tum.de>
parents:
449
diff
changeset
|
253 |
let |
2dc708ddb93a
introduced a global list of respectfulness lemmas; the attribute is [quot_rsp]
Christian Urban <urbanc@in.tum.de>
parents:
449
diff
changeset
|
254 |
val before_goal = nth (prems_of thm) (i - 1) |
2dc708ddb93a
introduced a global list of respectfulness lemmas; the attribute is [quot_rsp]
Christian Urban <urbanc@in.tum.de>
parents:
449
diff
changeset
|
255 |
|> Syntax.string_of_term ctxt |
2dc708ddb93a
introduced a global list of respectfulness lemmas; the attribute is [quot_rsp]
Christian Urban <urbanc@in.tum.de>
parents:
449
diff
changeset
|
256 |
val before_msg = ["before: " ^ s, before_goal, "after: " ^ s] |
2dc708ddb93a
introduced a global list of respectfulness lemmas; the attribute is [quot_rsp]
Christian Urban <urbanc@in.tum.de>
parents:
449
diff
changeset
|
257 |
|> cat_lines |
2dc708ddb93a
introduced a global list of respectfulness lemmas; the attribute is [quot_rsp]
Christian Urban <urbanc@in.tum.de>
parents:
449
diff
changeset
|
258 |
in |
2dc708ddb93a
introduced a global list of respectfulness lemmas; the attribute is [quot_rsp]
Christian Urban <urbanc@in.tum.de>
parents:
449
diff
changeset
|
259 |
EVERY [tac i, my_print_tac ctxt before_msg i] thm |
2dc708ddb93a
introduced a global list of respectfulness lemmas; the attribute is [quot_rsp]
Christian Urban <urbanc@in.tum.de>
parents:
449
diff
changeset
|
260 |
end |
444 | 261 |
|
447
3e7ee6f5437d
selective debugging of the inj_repabs_tac (at the moment for step 3 and 4 debugging information is printed)
Christian Urban <urbanc@in.tum.de>
parents:
446
diff
changeset
|
262 |
fun NDT ctxt s tac thm = tac thm |
407
d387743f022b
tuned comments and moved slightly some code
Christian Urban <urbanc@in.tum.de>
parents:
405
diff
changeset
|
263 |
*} |
d387743f022b
tuned comments and moved slightly some code
Christian Urban <urbanc@in.tum.de>
parents:
405
diff
changeset
|
264 |
|
453
c22ab554a32d
started functions for qid-insertion and fixed a bug in regularise
Christian Urban <urbanc@in.tum.de>
parents:
452
diff
changeset
|
265 |
|
407
d387743f022b
tuned comments and moved slightly some code
Christian Urban <urbanc@in.tum.de>
parents:
405
diff
changeset
|
266 |
section {* Infrastructure for collecting theorems for starting the lifting *} |
267
3764566c1151
Automatic FORALL_PRS. 'list.induct' lifts automatically. Faster ALLEX_RSP
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
264
diff
changeset
|
267 |
|
3764566c1151
Automatic FORALL_PRS. 'list.induct' lifts automatically. Faster ALLEX_RSP
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
264
diff
changeset
|
268 |
ML {* |
239
02b14a21761a
Cleaning of the interface to lift.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
236
diff
changeset
|
269 |
fun lookup_quot_data lthy qty = |
02b14a21761a
Cleaning of the interface to lift.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
236
diff
changeset
|
270 |
let |
311
77fc6f3c0343
changed the quotdata to be a symtab table (needs fixing)
Christian Urban <urbanc@in.tum.de>
parents:
310
diff
changeset
|
271 |
val qty_name = fst (dest_Type qty) |
314 | 272 |
val SOME quotdata = quotdata_lookup lthy qty_name |
311
77fc6f3c0343
changed the quotdata to be a symtab table (needs fixing)
Christian Urban <urbanc@in.tum.de>
parents:
310
diff
changeset
|
273 |
(* cu: Changed the lookup\<dots>not sure whether this works *) |
303
991b0e53f9dc
More code cleaning and commenting
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
302
diff
changeset
|
274 |
(* TODO: Should no longer be needed *) |
257
68bd5c2a1b96
Fixed quotdata_lookup.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
255
diff
changeset
|
275 |
val rty = Logic.unvarifyT (#rtyp quotdata) |
239
02b14a21761a
Cleaning of the interface to lift.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
236
diff
changeset
|
276 |
val rel = #rel quotdata |
02b14a21761a
Cleaning of the interface to lift.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
236
diff
changeset
|
277 |
val rel_eqv = #equiv_thm quotdata |
416
3f3927f793d4
Removing arguments of tactics: absrep, rel_refl, reps_same are computed.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
415
diff
changeset
|
278 |
val rel_refl = @{thm EQUIV_REFL} OF [rel_eqv] |
239
02b14a21761a
Cleaning of the interface to lift.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
236
diff
changeset
|
279 |
in |
02b14a21761a
Cleaning of the interface to lift.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
236
diff
changeset
|
280 |
(rty, rel, rel_refl, rel_eqv) |
02b14a21761a
Cleaning of the interface to lift.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
236
diff
changeset
|
281 |
end |
02b14a21761a
Cleaning of the interface to lift.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
236
diff
changeset
|
282 |
*} |
02b14a21761a
Cleaning of the interface to lift.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
236
diff
changeset
|
283 |
|
02b14a21761a
Cleaning of the interface to lift.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
236
diff
changeset
|
284 |
ML {* |
02b14a21761a
Cleaning of the interface to lift.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
236
diff
changeset
|
285 |
fun lookup_quot_thms lthy qty_name = |
02b14a21761a
Cleaning of the interface to lift.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
236
diff
changeset
|
286 |
let |
02b14a21761a
Cleaning of the interface to lift.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
236
diff
changeset
|
287 |
val thy = ProofContext.theory_of lthy; |
02b14a21761a
Cleaning of the interface to lift.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
236
diff
changeset
|
288 |
val trans2 = PureThy.get_thm thy ("QUOT_TYPE_I_" ^ qty_name ^ ".R_trans2") |
02b14a21761a
Cleaning of the interface to lift.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
236
diff
changeset
|
289 |
val reps_same = PureThy.get_thm thy ("QUOT_TYPE_I_" ^ qty_name ^ ".REPS_same") |
269 | 290 |
val absrep = PureThy.get_thm thy ("QUOT_TYPE_I_" ^ qty_name ^ ".thm10") |
239
02b14a21761a
Cleaning of the interface to lift.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
236
diff
changeset
|
291 |
val quot = PureThy.get_thm thy ("QUOTIENT_" ^ qty_name) |
02b14a21761a
Cleaning of the interface to lift.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
236
diff
changeset
|
292 |
in |
269 | 293 |
(trans2, reps_same, absrep, quot) |
239
02b14a21761a
Cleaning of the interface to lift.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
236
diff
changeset
|
294 |
end |
02b14a21761a
Cleaning of the interface to lift.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
236
diff
changeset
|
295 |
*} |
02b14a21761a
Cleaning of the interface to lift.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
236
diff
changeset
|
296 |
|
02b14a21761a
Cleaning of the interface to lift.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
236
diff
changeset
|
297 |
ML {* |
02b14a21761a
Cleaning of the interface to lift.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
236
diff
changeset
|
298 |
fun lookup_quot_consts defs = |
02b14a21761a
Cleaning of the interface to lift.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
236
diff
changeset
|
299 |
let |
02b14a21761a
Cleaning of the interface to lift.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
236
diff
changeset
|
300 |
fun dest_term (a $ b) = (a, b); |
02b14a21761a
Cleaning of the interface to lift.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
236
diff
changeset
|
301 |
val def_terms = map (snd o Logic.dest_equals o concl_of) defs; |
02b14a21761a
Cleaning of the interface to lift.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
236
diff
changeset
|
302 |
in |
02b14a21761a
Cleaning of the interface to lift.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
236
diff
changeset
|
303 |
map (fst o dest_Const o snd o dest_term) def_terms |
02b14a21761a
Cleaning of the interface to lift.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
236
diff
changeset
|
304 |
end |
02b14a21761a
Cleaning of the interface to lift.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
236
diff
changeset
|
305 |
*} |
02b14a21761a
Cleaning of the interface to lift.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
236
diff
changeset
|
306 |
|
402
dd64cca9265c
recommited changes of comments
Christian Urban <urbanc@in.tum.de>
parents:
401
diff
changeset
|
307 |
section {* Regularization *} |
320
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
parents:
319
diff
changeset
|
308 |
|
383
73a3670fb00e
comments tuning and slight reordering
Christian Urban <urbanc@in.tum.de>
parents:
382
diff
changeset
|
309 |
(* |
73a3670fb00e
comments tuning and slight reordering
Christian Urban <urbanc@in.tum.de>
parents:
382
diff
changeset
|
310 |
Regularizing an rtrm means: |
73a3670fb00e
comments tuning and slight reordering
Christian Urban <urbanc@in.tum.de>
parents:
382
diff
changeset
|
311 |
- quantifiers over a type that needs lifting are replaced by |
73a3670fb00e
comments tuning and slight reordering
Christian Urban <urbanc@in.tum.de>
parents:
382
diff
changeset
|
312 |
bounded quantifiers, for example: |
73a3670fb00e
comments tuning and slight reordering
Christian Urban <urbanc@in.tum.de>
parents:
382
diff
changeset
|
313 |
\<forall>x. P \<Longrightarrow> \<forall>x \<in> (Respects R). P / All (Respects R) P |
73a3670fb00e
comments tuning and slight reordering
Christian Urban <urbanc@in.tum.de>
parents:
382
diff
changeset
|
314 |
|
73a3670fb00e
comments tuning and slight reordering
Christian Urban <urbanc@in.tum.de>
parents:
382
diff
changeset
|
315 |
the relation R is given by the rty and qty; |
330
1a0f0b758071
a little tuning of comments
Christian Urban <urbanc@in.tum.de>
parents:
326
diff
changeset
|
316 |
|
383
73a3670fb00e
comments tuning and slight reordering
Christian Urban <urbanc@in.tum.de>
parents:
382
diff
changeset
|
317 |
- abstractions over a type that needs lifting are replaced |
73a3670fb00e
comments tuning and slight reordering
Christian Urban <urbanc@in.tum.de>
parents:
382
diff
changeset
|
318 |
by bounded abstractions: |
73a3670fb00e
comments tuning and slight reordering
Christian Urban <urbanc@in.tum.de>
parents:
382
diff
changeset
|
319 |
\<lambda>x. P \<Longrightarrow> Ball (Respects R) (\<lambda>x. P) |
73a3670fb00e
comments tuning and slight reordering
Christian Urban <urbanc@in.tum.de>
parents:
382
diff
changeset
|
320 |
|
73a3670fb00e
comments tuning and slight reordering
Christian Urban <urbanc@in.tum.de>
parents:
382
diff
changeset
|
321 |
- equalities over the type being lifted are replaced by |
73a3670fb00e
comments tuning and slight reordering
Christian Urban <urbanc@in.tum.de>
parents:
382
diff
changeset
|
322 |
corresponding relations: |
73a3670fb00e
comments tuning and slight reordering
Christian Urban <urbanc@in.tum.de>
parents:
382
diff
changeset
|
323 |
A = B \<Longrightarrow> A \<approx> B |
73a3670fb00e
comments tuning and slight reordering
Christian Urban <urbanc@in.tum.de>
parents:
382
diff
changeset
|
324 |
|
73a3670fb00e
comments tuning and slight reordering
Christian Urban <urbanc@in.tum.de>
parents:
382
diff
changeset
|
325 |
example with more complicated types of A, B: |
73a3670fb00e
comments tuning and slight reordering
Christian Urban <urbanc@in.tum.de>
parents:
382
diff
changeset
|
326 |
A = B \<Longrightarrow> (op = \<Longrightarrow> op \<approx>) A B |
73a3670fb00e
comments tuning and slight reordering
Christian Urban <urbanc@in.tum.de>
parents:
382
diff
changeset
|
327 |
*) |
73a3670fb00e
comments tuning and slight reordering
Christian Urban <urbanc@in.tum.de>
parents:
382
diff
changeset
|
328 |
|
404 | 329 |
ML {* |
383
73a3670fb00e
comments tuning and slight reordering
Christian Urban <urbanc@in.tum.de>
parents:
382
diff
changeset
|
330 |
(* builds the relation that is the argument of respects *) |
320
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
parents:
319
diff
changeset
|
331 |
fun mk_resp_arg lthy (rty, qty) = |
319 | 332 |
let |
333 |
val thy = ProofContext.theory_of lthy |
|
320
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
parents:
319
diff
changeset
|
334 |
in |
334 | 335 |
if rty = qty |
336 |
then HOLogic.eq_const rty |
|
337 |
else |
|
338 |
case (rty, qty) of |
|
339 |
(Type (s, tys), Type (s', tys')) => |
|
320
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
parents:
319
diff
changeset
|
340 |
if s = s' |
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
parents:
319
diff
changeset
|
341 |
then let |
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
parents:
319
diff
changeset
|
342 |
val SOME map_info = maps_lookup thy s |
321
f46dc0ca08c3
simplified get_fun so that it uses directly rty and qty, instead of qenv
Christian Urban <urbanc@in.tum.de>
parents:
320
diff
changeset
|
343 |
val args = map (mk_resp_arg lthy) (tys ~~ tys') |
320
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
parents:
319
diff
changeset
|
344 |
in |
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
parents:
319
diff
changeset
|
345 |
list_comb (Const (#relfun map_info, dummyT), args) |
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
parents:
319
diff
changeset
|
346 |
end |
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
parents:
319
diff
changeset
|
347 |
else let |
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
parents:
319
diff
changeset
|
348 |
val SOME qinfo = quotdata_lookup_thy thy s' |
330
1a0f0b758071
a little tuning of comments
Christian Urban <urbanc@in.tum.de>
parents:
326
diff
changeset
|
349 |
(* FIXME: check in this case that the rty and qty *) |
1a0f0b758071
a little tuning of comments
Christian Urban <urbanc@in.tum.de>
parents:
326
diff
changeset
|
350 |
(* FIXME: correspond to each other *) |
353
9a0e8ab42ee8
fixed the error by a temporary fix (the data of the eqivalence relation should be only its name)
Christian Urban <urbanc@in.tum.de>
parents:
351
diff
changeset
|
351 |
val (s, _) = dest_Const (#rel qinfo) |
407
d387743f022b
tuned comments and moved slightly some code
Christian Urban <urbanc@in.tum.de>
parents:
405
diff
changeset
|
352 |
(* FIXME: the relation should only be the string *) |
d387743f022b
tuned comments and moved slightly some code
Christian Urban <urbanc@in.tum.de>
parents:
405
diff
changeset
|
353 |
(* FIXME: and the type needs to be calculated as below; *) |
d387743f022b
tuned comments and moved slightly some code
Christian Urban <urbanc@in.tum.de>
parents:
405
diff
changeset
|
354 |
(* FIXME: maybe one should actually have a term *) |
d387743f022b
tuned comments and moved slightly some code
Christian Urban <urbanc@in.tum.de>
parents:
405
diff
changeset
|
355 |
(* FIXME: and one needs to force it to have this type *) |
320
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
parents:
319
diff
changeset
|
356 |
in |
353
9a0e8ab42ee8
fixed the error by a temporary fix (the data of the eqivalence relation should be only its name)
Christian Urban <urbanc@in.tum.de>
parents:
351
diff
changeset
|
357 |
Const (s, rty --> rty --> @{typ bool}) |
320
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
parents:
319
diff
changeset
|
358 |
end |
334 | 359 |
| _ => HOLogic.eq_const dummyT |
351 | 360 |
(* FIXME: check that the types correspond to each other? *) |
320
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
parents:
319
diff
changeset
|
361 |
end |
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
parents:
319
diff
changeset
|
362 |
*} |
239
02b14a21761a
Cleaning of the interface to lift.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
236
diff
changeset
|
363 |
|
320
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
parents:
319
diff
changeset
|
364 |
ML {* |
467 | 365 |
val mk_babs = Const (@{const_name Babs}, dummyT) |
366 |
val mk_ball = Const (@{const_name Ball}, dummyT) |
|
367 |
val mk_bex = Const (@{const_name Bex}, dummyT) |
|
320
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
parents:
319
diff
changeset
|
368 |
val mk_resp = Const (@{const_name Respects}, dummyT) |
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
parents:
319
diff
changeset
|
369 |
*} |
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
parents:
319
diff
changeset
|
370 |
|
323 | 371 |
ML {* |
330
1a0f0b758071
a little tuning of comments
Christian Urban <urbanc@in.tum.de>
parents:
326
diff
changeset
|
372 |
(* - applies f to the subterm of an abstraction, *) |
1a0f0b758071
a little tuning of comments
Christian Urban <urbanc@in.tum.de>
parents:
326
diff
changeset
|
373 |
(* otherwise to the given term, *) |
405
8bc7428745ad
renamed REGULARIZE to be regularize
Christian Urban <urbanc@in.tum.de>
parents:
404
diff
changeset
|
374 |
(* - used by regularize, therefore abstracted *) |
330
1a0f0b758071
a little tuning of comments
Christian Urban <urbanc@in.tum.de>
parents:
326
diff
changeset
|
375 |
(* variables do not have to be treated specially *) |
1a0f0b758071
a little tuning of comments
Christian Urban <urbanc@in.tum.de>
parents:
326
diff
changeset
|
376 |
|
320
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
parents:
319
diff
changeset
|
377 |
fun apply_subt f trm1 trm2 = |
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
parents:
319
diff
changeset
|
378 |
case (trm1, trm2) of |
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
parents:
319
diff
changeset
|
379 |
(Abs (x, T, t), Abs (x', T', t')) => Abs (x, T, f t t') |
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
parents:
319
diff
changeset
|
380 |
| _ => f trm1 trm2 |
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
parents:
319
diff
changeset
|
381 |
|
330
1a0f0b758071
a little tuning of comments
Christian Urban <urbanc@in.tum.de>
parents:
326
diff
changeset
|
382 |
(* the major type of All and Ex quantifiers *) |
334 | 383 |
fun qnt_typ ty = domain_type (domain_type ty) |
320
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
parents:
319
diff
changeset
|
384 |
*} |
319 | 385 |
|
320
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
parents:
319
diff
changeset
|
386 |
ML {* |
330
1a0f0b758071
a little tuning of comments
Christian Urban <urbanc@in.tum.de>
parents:
326
diff
changeset
|
387 |
(* produces a regularized version of rtm *) |
1a0f0b758071
a little tuning of comments
Christian Urban <urbanc@in.tum.de>
parents:
326
diff
changeset
|
388 |
(* - the result is still not completely typed *) |
1a0f0b758071
a little tuning of comments
Christian Urban <urbanc@in.tum.de>
parents:
326
diff
changeset
|
389 |
(* - does not need any special treatment of *) |
1a0f0b758071
a little tuning of comments
Christian Urban <urbanc@in.tum.de>
parents:
326
diff
changeset
|
390 |
(* bound variables *) |
1a0f0b758071
a little tuning of comments
Christian Urban <urbanc@in.tum.de>
parents:
326
diff
changeset
|
391 |
|
405
8bc7428745ad
renamed REGULARIZE to be regularize
Christian Urban <urbanc@in.tum.de>
parents:
404
diff
changeset
|
392 |
fun regularize_trm lthy rtrm qtrm = |
320
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
parents:
319
diff
changeset
|
393 |
case (rtrm, qtrm) of |
325 | 394 |
(Abs (x, ty, t), Abs (x', ty', t')) => |
320
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
parents:
319
diff
changeset
|
395 |
let |
405
8bc7428745ad
renamed REGULARIZE to be regularize
Christian Urban <urbanc@in.tum.de>
parents:
404
diff
changeset
|
396 |
val subtrm = regularize_trm lthy t t' |
320
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
parents:
319
diff
changeset
|
397 |
in |
325 | 398 |
if ty = ty' |
399 |
then Abs (x, ty, subtrm) |
|
326
e755a5da14c8
my first version of repabs injection
Christian Urban <urbanc@in.tum.de>
parents:
325
diff
changeset
|
400 |
else mk_babs $ (mk_resp $ mk_resp_arg lthy (ty, ty')) $ subtrm |
320
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
parents:
319
diff
changeset
|
401 |
end |
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
parents:
319
diff
changeset
|
402 |
| (Const (@{const_name "All"}, ty) $ t, Const (@{const_name "All"}, ty') $ t') => |
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
parents:
319
diff
changeset
|
403 |
let |
405
8bc7428745ad
renamed REGULARIZE to be regularize
Christian Urban <urbanc@in.tum.de>
parents:
404
diff
changeset
|
404 |
val subtrm = apply_subt (regularize_trm lthy) t t' |
320
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
parents:
319
diff
changeset
|
405 |
in |
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
parents:
319
diff
changeset
|
406 |
if ty = ty' |
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
parents:
319
diff
changeset
|
407 |
then Const (@{const_name "All"}, ty) $ subtrm |
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
parents:
319
diff
changeset
|
408 |
else mk_ball $ (mk_resp $ mk_resp_arg lthy (qnt_typ ty, qnt_typ ty')) $ subtrm |
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
parents:
319
diff
changeset
|
409 |
end |
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
parents:
319
diff
changeset
|
410 |
| (Const (@{const_name "Ex"}, ty) $ t, Const (@{const_name "Ex"}, ty') $ t') => |
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
parents:
319
diff
changeset
|
411 |
let |
405
8bc7428745ad
renamed REGULARIZE to be regularize
Christian Urban <urbanc@in.tum.de>
parents:
404
diff
changeset
|
412 |
val subtrm = apply_subt (regularize_trm lthy) t t' |
320
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
parents:
319
diff
changeset
|
413 |
in |
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
parents:
319
diff
changeset
|
414 |
if ty = ty' |
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
parents:
319
diff
changeset
|
415 |
then Const (@{const_name "Ex"}, ty) $ subtrm |
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
parents:
319
diff
changeset
|
416 |
else mk_bex $ (mk_resp $ mk_resp_arg lthy (qnt_typ ty, qnt_typ ty')) $ subtrm |
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
parents:
319
diff
changeset
|
417 |
end |
351 | 418 |
(* FIXME: Should = only be replaced, when fully applied? *) |
419 |
(* Then there must be a 2nd argument *) |
|
320
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
parents:
319
diff
changeset
|
420 |
| (Const (@{const_name "op ="}, ty) $ t, Const (@{const_name "op ="}, ty') $ t') => |
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
parents:
319
diff
changeset
|
421 |
let |
405
8bc7428745ad
renamed REGULARIZE to be regularize
Christian Urban <urbanc@in.tum.de>
parents:
404
diff
changeset
|
422 |
val subtrm = regularize_trm lthy t t' |
320
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
parents:
319
diff
changeset
|
423 |
in |
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
parents:
319
diff
changeset
|
424 |
if ty = ty' |
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
parents:
319
diff
changeset
|
425 |
then Const (@{const_name "op ="}, ty) $ subtrm |
349
f507f088de73
domain_type in regularizing equality
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
348
diff
changeset
|
426 |
else mk_resp_arg lthy (domain_type ty, domain_type ty') $ subtrm |
320
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
parents:
319
diff
changeset
|
427 |
end |
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
parents:
319
diff
changeset
|
428 |
| (t1 $ t2, t1' $ t2') => |
405
8bc7428745ad
renamed REGULARIZE to be regularize
Christian Urban <urbanc@in.tum.de>
parents:
404
diff
changeset
|
429 |
(regularize_trm lthy t1 t1') $ (regularize_trm lthy t2 t2') |
453
c22ab554a32d
started functions for qid-insertion and fixed a bug in regularise
Christian Urban <urbanc@in.tum.de>
parents:
452
diff
changeset
|
430 |
| (Free (x, ty), Free (x', ty')) => |
c22ab554a32d
started functions for qid-insertion and fixed a bug in regularise
Christian Urban <urbanc@in.tum.de>
parents:
452
diff
changeset
|
431 |
(* this case cannot arrise as we start with two fully atomized terms *) |
c22ab554a32d
started functions for qid-insertion and fixed a bug in regularise
Christian Urban <urbanc@in.tum.de>
parents:
452
diff
changeset
|
432 |
raise (LIFT_MATCH "regularize (frees)") |
320
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
parents:
319
diff
changeset
|
433 |
| (Bound i, Bound i') => |
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
parents:
319
diff
changeset
|
434 |
if i = i' |
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
parents:
319
diff
changeset
|
435 |
then rtrm |
374
980fdf92a834
fixed the problem with generalising variables; at the moment it is quite a hack
Christian Urban <urbanc@in.tum.de>
parents:
372
diff
changeset
|
436 |
else raise (LIFT_MATCH "regularize (bounds)") |
320
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
parents:
319
diff
changeset
|
437 |
| (Const (s, ty), Const (s', ty')) => |
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
parents:
319
diff
changeset
|
438 |
if s = s' andalso ty = ty' |
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
parents:
319
diff
changeset
|
439 |
then rtrm |
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
parents:
319
diff
changeset
|
440 |
else rtrm (* FIXME: check correspondence according to definitions *) |
374
980fdf92a834
fixed the problem with generalising variables; at the moment it is quite a hack
Christian Urban <urbanc@in.tum.de>
parents:
372
diff
changeset
|
441 |
| (rt, qt) => |
980fdf92a834
fixed the problem with generalising variables; at the moment it is quite a hack
Christian Urban <urbanc@in.tum.de>
parents:
372
diff
changeset
|
442 |
raise (LIFT_MATCH "regularize (default)") |
320
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
parents:
319
diff
changeset
|
443 |
*} |
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
parents:
319
diff
changeset
|
444 |
|
321
f46dc0ca08c3
simplified get_fun so that it uses directly rty and qty, instead of qenv
Christian Urban <urbanc@in.tum.de>
parents:
320
diff
changeset
|
445 |
(* |
407
d387743f022b
tuned comments and moved slightly some code
Christian Urban <urbanc@in.tum.de>
parents:
405
diff
changeset
|
446 |
FIXME / TODO: needs to be adapted |
d387743f022b
tuned comments and moved slightly some code
Christian Urban <urbanc@in.tum.de>
parents:
405
diff
changeset
|
447 |
|
383
73a3670fb00e
comments tuning and slight reordering
Christian Urban <urbanc@in.tum.de>
parents:
382
diff
changeset
|
448 |
To prove that the raw theorem implies the regularised one, |
73a3670fb00e
comments tuning and slight reordering
Christian Urban <urbanc@in.tum.de>
parents:
382
diff
changeset
|
449 |
we try in order: |
330
1a0f0b758071
a little tuning of comments
Christian Urban <urbanc@in.tum.de>
parents:
326
diff
changeset
|
450 |
|
321
f46dc0ca08c3
simplified get_fun so that it uses directly rty and qty, instead of qenv
Christian Urban <urbanc@in.tum.de>
parents:
320
diff
changeset
|
451 |
- Reflexivity of the relation |
f46dc0ca08c3
simplified get_fun so that it uses directly rty and qty, instead of qenv
Christian Urban <urbanc@in.tum.de>
parents:
320
diff
changeset
|
452 |
- Assumption |
f46dc0ca08c3
simplified get_fun so that it uses directly rty and qty, instead of qenv
Christian Urban <urbanc@in.tum.de>
parents:
320
diff
changeset
|
453 |
- Elimnating quantifiers on both sides of toplevel implication |
f46dc0ca08c3
simplified get_fun so that it uses directly rty and qty, instead of qenv
Christian Urban <urbanc@in.tum.de>
parents:
320
diff
changeset
|
454 |
- Simplifying implications on both sides of toplevel implication |
f46dc0ca08c3
simplified get_fun so that it uses directly rty and qty, instead of qenv
Christian Urban <urbanc@in.tum.de>
parents:
320
diff
changeset
|
455 |
- Ball (Respects ?E) ?P = All ?P |
f46dc0ca08c3
simplified get_fun so that it uses directly rty and qty, instead of qenv
Christian Urban <urbanc@in.tum.de>
parents:
320
diff
changeset
|
456 |
- (\<And>x. ?R x \<Longrightarrow> ?P x \<longrightarrow> ?Q x) \<Longrightarrow> All ?P \<longrightarrow> Ball ?R ?Q |
f46dc0ca08c3
simplified get_fun so that it uses directly rty and qty, instead of qenv
Christian Urban <urbanc@in.tum.de>
parents:
320
diff
changeset
|
457 |
|
f46dc0ca08c3
simplified get_fun so that it uses directly rty and qty, instead of qenv
Christian Urban <urbanc@in.tum.de>
parents:
320
diff
changeset
|
458 |
*) |
f46dc0ca08c3
simplified get_fun so that it uses directly rty and qty, instead of qenv
Christian Urban <urbanc@in.tum.de>
parents:
320
diff
changeset
|
459 |
|
442
7beed9b75ea2
renamed LAMBDA_RES_TAC and WEAK_LAMBDA_RES_TAC to lower case names
Christian Urban <urbanc@in.tum.de>
parents:
440
diff
changeset
|
460 |
(* FIXME: they should be in in the new Isabelle *) |
404 | 461 |
lemma [mono]: |
462 |
"(\<And>x. P x \<longrightarrow> Q x) \<Longrightarrow> (Ex P) \<longrightarrow> (Ex Q)" |
|
400 | 463 |
by blast |
464 |
||
465 |
lemma [mono]: "P \<longrightarrow> Q \<Longrightarrow> \<not>Q \<longrightarrow> \<not>P" |
|
466 |
by auto |
|
467 |
||
468 |
(* FIXME: OPTION_EQUIV, PAIR_EQUIV, ... *) |
|
469 |
ML {* |
|
470 |
fun equiv_tac rel_eqvs = |
|
420
dcfe009c98aa
replaced FIRST' (map rtac list) with resolve_tac list
Christian Urban <urbanc@in.tum.de>
parents:
419
diff
changeset
|
471 |
REPEAT_ALL_NEW (FIRST' |
dcfe009c98aa
replaced FIRST' (map rtac list) with resolve_tac list
Christian Urban <urbanc@in.tum.de>
parents:
419
diff
changeset
|
472 |
[resolve_tac rel_eqvs, |
dcfe009c98aa
replaced FIRST' (map rtac list) with resolve_tac list
Christian Urban <urbanc@in.tum.de>
parents:
419
diff
changeset
|
473 |
rtac @{thm IDENTITY_EQUIV}, |
dcfe009c98aa
replaced FIRST' (map rtac list) with resolve_tac list
Christian Urban <urbanc@in.tum.de>
parents:
419
diff
changeset
|
474 |
rtac @{thm LIST_EQUIV}]) |
400 | 475 |
*} |
476 |
||
477 |
ML {* |
|
432
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
478 |
fun ball_reg_eqv_simproc rel_eqvs ss redex = |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
479 |
let |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
480 |
val ctxt = Simplifier.the_context ss |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
481 |
val thy = ProofContext.theory_of ctxt |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
482 |
in |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
483 |
case redex of |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
484 |
(ogl as ((Const (@{const_name "Ball"}, _)) $ |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
485 |
((Const (@{const_name "Respects"}, _)) $ R) $ P1)) => |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
486 |
(let |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
487 |
val gl = Const (@{const_name "EQUIV"}, dummyT) $ R; |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
488 |
val glc = HOLogic.mk_Trueprop (Syntax.check_term ctxt gl); |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
489 |
val eqv = Goal.prove ctxt [] [] glc (fn _ => equiv_tac rel_eqvs 1); |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
490 |
val thm = (@{thm eq_reflection} OF [@{thm ball_reg_eqv} OF [eqv]]); |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
491 |
(* val _ = tracing (Syntax.string_of_term ctxt (prop_of thm)); *) |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
492 |
in |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
493 |
SOME thm |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
494 |
end |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
495 |
handle _ => NONE |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
496 |
) |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
497 |
| _ => NONE |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
498 |
end |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
499 |
*} |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
500 |
|
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
501 |
ML {* |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
502 |
fun bex_reg_eqv_simproc rel_eqvs ss redex = |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
503 |
let |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
504 |
val ctxt = Simplifier.the_context ss |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
505 |
val thy = ProofContext.theory_of ctxt |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
506 |
in |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
507 |
case redex of |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
508 |
(ogl as ((Const (@{const_name "Bex"}, _)) $ |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
509 |
((Const (@{const_name "Respects"}, _)) $ R) $ P1)) => |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
510 |
(let |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
511 |
val gl = Const (@{const_name "EQUIV"}, dummyT) $ R; |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
512 |
val glc = HOLogic.mk_Trueprop (Syntax.check_term ctxt gl); |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
513 |
val eqv = Goal.prove ctxt [] [] glc (fn _ => equiv_tac rel_eqvs 1); |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
514 |
val thm = (@{thm eq_reflection} OF [@{thm bex_reg_eqv} OF [eqv]]); |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
515 |
(* val _ = tracing (Syntax.string_of_term ctxt (prop_of thm)); *) |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
516 |
in |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
517 |
SOME thm |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
518 |
end |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
519 |
handle _ => NONE |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
520 |
) |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
521 |
| _ => NONE |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
522 |
end |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
523 |
*} |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
524 |
|
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
525 |
ML {* |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
526 |
fun prep_trm thy (x, (T, t)) = |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
527 |
(cterm_of thy (Var (x, T)), cterm_of thy t) |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
528 |
|
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
529 |
fun prep_ty thy (x, (S, ty)) = |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
530 |
(ctyp_of thy (TVar (x, S)), ctyp_of thy ty) |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
531 |
*} |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
532 |
|
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
533 |
ML {* |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
534 |
fun matching_prs thy pat trm = |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
535 |
let |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
536 |
val univ = Unify.matchers thy [(pat, trm)] |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
537 |
val SOME (env, _) = Seq.pull univ |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
538 |
val tenv = Vartab.dest (Envir.term_env env) |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
539 |
val tyenv = Vartab.dest (Envir.type_env env) |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
540 |
in |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
541 |
(map (prep_ty thy) tyenv, map (prep_trm thy) tenv) |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
542 |
end |
400 | 543 |
*} |
544 |
||
545 |
ML {* |
|
432
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
546 |
fun ball_reg_eqv_range_simproc rel_eqvs ss redex = |
400 | 547 |
let |
432
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
548 |
val ctxt = Simplifier.the_context ss |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
549 |
val thy = ProofContext.theory_of ctxt |
400 | 550 |
in |
432
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
551 |
case redex of |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
552 |
(ogl as ((Const (@{const_name "Ball"}, _)) $ |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
553 |
((Const (@{const_name "Respects"}, _)) $ ((Const (@{const_name "FUN_REL"}, _)) $ R1 $ R2)) $ _)) => |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
554 |
(let |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
555 |
val gl = Const (@{const_name "EQUIV"}, dummyT) $ R2; |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
556 |
val glc = HOLogic.mk_Trueprop (Syntax.check_term ctxt gl); |
487
f5db9ede89b0
Experiments with OPTION_map
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
486
diff
changeset
|
557 |
(* val _ = tracing (Syntax.string_of_term ctxt glc);*) |
432
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
558 |
val eqv = Goal.prove ctxt [] [] glc (fn _ => equiv_tac rel_eqvs 1); |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
559 |
val thm = (@{thm eq_reflection} OF [@{thm ball_reg_eqv_range} OF [eqv]]); |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
560 |
val R1c = cterm_of thy R1; |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
561 |
val thmi = Drule.instantiate' [] [SOME R1c] thm; |
487
f5db9ede89b0
Experiments with OPTION_map
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
486
diff
changeset
|
562 |
(* val _ = tracing (Syntax.string_of_term ctxt (prop_of thmi));*) |
432
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
563 |
val inst = matching_prs thy (term_of (Thm.lhs_of thmi)) ogl |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
564 |
val thm2 = Drule.eta_contraction_rule (Drule.instantiate inst thmi); |
487
f5db9ede89b0
Experiments with OPTION_map
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
486
diff
changeset
|
565 |
(* val _ = tracing (Syntax.string_of_term ctxt (prop_of thm2)); *) |
432
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
566 |
in |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
567 |
SOME thm2 |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
568 |
end |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
569 |
handle _ => NONE |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
570 |
|
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
571 |
) |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
572 |
| _ => NONE |
400 | 573 |
end |
574 |
*} |
|
432
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
575 |
|
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
576 |
ML {* |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
577 |
fun bex_reg_eqv_range_simproc rel_eqvs ss redex = |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
578 |
let |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
579 |
val ctxt = Simplifier.the_context ss |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
580 |
val thy = ProofContext.theory_of ctxt |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
581 |
in |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
582 |
case redex of |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
583 |
(ogl as ((Const (@{const_name "Bex"}, _)) $ |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
584 |
((Const (@{const_name "Respects"}, _)) $ ((Const (@{const_name "FUN_REL"}, _)) $ R1 $ R2)) $ _)) => |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
585 |
(let |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
586 |
val gl = Const (@{const_name "EQUIV"}, dummyT) $ R2; |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
587 |
val glc = HOLogic.mk_Trueprop (Syntax.check_term ctxt gl); |
487
f5db9ede89b0
Experiments with OPTION_map
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
486
diff
changeset
|
588 |
(* val _ = tracing (Syntax.string_of_term ctxt glc); *) |
432
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
589 |
val eqv = Goal.prove ctxt [] [] glc (fn _ => equiv_tac rel_eqvs 1); |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
590 |
val thm = (@{thm eq_reflection} OF [@{thm bex_reg_eqv_range} OF [eqv]]); |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
591 |
val R1c = cterm_of thy R1; |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
592 |
val thmi = Drule.instantiate' [] [SOME R1c] thm; |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
593 |
(* val _ = tracing (Syntax.string_of_term ctxt (prop_of thmi)); *) |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
594 |
val inst = matching_prs thy (term_of (Thm.lhs_of thmi)) ogl |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
595 |
val thm2 = Drule.eta_contraction_rule (Drule.instantiate inst thmi); |
487
f5db9ede89b0
Experiments with OPTION_map
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
486
diff
changeset
|
596 |
(* val _ = tracing (Syntax.string_of_term ctxt (prop_of thm2));*) |
432
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
597 |
in |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
598 |
SOME thm2 |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
599 |
end |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
600 |
handle _ => NONE |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
601 |
|
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
602 |
) |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
603 |
| _ => NONE |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
604 |
end |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
605 |
*} |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
606 |
|
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
607 |
lemma eq_imp_rel: "EQUIV R \<Longrightarrow> a = b \<longrightarrow> R a b" |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
608 |
by (simp add: EQUIV_REFL) |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
609 |
|
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
610 |
ML {* |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
611 |
fun regularize_tac ctxt rel_eqvs = |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
612 |
let |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
613 |
val pat1 = [@{term "Ball (Respects R) P"}]; |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
614 |
val pat2 = [@{term "Bex (Respects R) P"}]; |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
615 |
val pat3 = [@{term "Ball (Respects (R1 ===> R2)) P"}]; |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
616 |
val pat4 = [@{term "Bex (Respects (R1 ===> R2)) P"}]; |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
617 |
val thy = ProofContext.theory_of ctxt |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
618 |
val simproc1 = Simplifier.simproc_i thy "" pat1 (K (ball_reg_eqv_simproc rel_eqvs)) |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
619 |
val simproc2 = Simplifier.simproc_i thy "" pat2 (K (bex_reg_eqv_simproc rel_eqvs)) |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
620 |
val simproc3 = Simplifier.simproc_i thy "" pat3 (K (ball_reg_eqv_range_simproc rel_eqvs)) |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
621 |
val simproc4 = Simplifier.simproc_i thy "" pat4 (K (bex_reg_eqv_range_simproc rel_eqvs)) |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
622 |
val simp_ctxt = (Simplifier.context ctxt empty_ss) addsimprocs [simproc1, simproc2, simproc3, simproc4] |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
623 |
(* TODO: Make sure that there are no LIST_REL, PAIR_REL etc involved *) |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
624 |
val eq_eqvs = map (fn x => @{thm eq_imp_rel} OF [x]) rel_eqvs |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
625 |
in |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
626 |
ObjectLogic.full_atomize_tac THEN' |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
627 |
simp_tac simp_ctxt THEN' |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
628 |
REPEAT_ALL_NEW (FIRST' [ |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
629 |
rtac @{thm ball_reg_right}, |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
630 |
rtac @{thm bex_reg_left}, |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
631 |
resolve_tac (Inductive.get_monos ctxt), |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
632 |
rtac @{thm ball_all_comm}, |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
633 |
rtac @{thm bex_ex_comm}, |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
634 |
resolve_tac eq_eqvs, |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
635 |
simp_tac simp_ctxt |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
636 |
]) |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
637 |
end |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
638 |
*} |
390 | 639 |
|
640 |
section {* Injections of REP and ABSes *} |
|
383
73a3670fb00e
comments tuning and slight reordering
Christian Urban <urbanc@in.tum.de>
parents:
382
diff
changeset
|
641 |
|
381
991db758a72d
More moving from QuotMain to UnusedQuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
379
diff
changeset
|
642 |
(* |
991db758a72d
More moving from QuotMain to UnusedQuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
379
diff
changeset
|
643 |
Injecting REPABS means: |
991db758a72d
More moving from QuotMain to UnusedQuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
379
diff
changeset
|
644 |
|
991db758a72d
More moving from QuotMain to UnusedQuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
379
diff
changeset
|
645 |
For abstractions: |
991db758a72d
More moving from QuotMain to UnusedQuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
379
diff
changeset
|
646 |
* If the type of the abstraction doesn't need lifting we recurse. |
991db758a72d
More moving from QuotMain to UnusedQuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
379
diff
changeset
|
647 |
* If it does we add RepAbs around the whole term and check if the |
991db758a72d
More moving from QuotMain to UnusedQuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
379
diff
changeset
|
648 |
variable needs lifting. |
991db758a72d
More moving from QuotMain to UnusedQuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
379
diff
changeset
|
649 |
* If it doesn't then we recurse |
991db758a72d
More moving from QuotMain to UnusedQuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
379
diff
changeset
|
650 |
* If it does we recurse and put 'RepAbs' around all occurences |
991db758a72d
More moving from QuotMain to UnusedQuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
379
diff
changeset
|
651 |
of the variable in the obtained subterm. This in combination |
991db758a72d
More moving from QuotMain to UnusedQuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
379
diff
changeset
|
652 |
with the RepAbs above will let us change the type of the |
991db758a72d
More moving from QuotMain to UnusedQuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
379
diff
changeset
|
653 |
abstraction with rewriting. |
991db758a72d
More moving from QuotMain to UnusedQuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
379
diff
changeset
|
654 |
For applications: |
991db758a72d
More moving from QuotMain to UnusedQuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
379
diff
changeset
|
655 |
* If the term is 'Respects' applied to anything we leave it unchanged |
991db758a72d
More moving from QuotMain to UnusedQuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
379
diff
changeset
|
656 |
* If the term needs lifting and the head is a constant that we know |
991db758a72d
More moving from QuotMain to UnusedQuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
379
diff
changeset
|
657 |
how to lift, we put a RepAbs and recurse |
991db758a72d
More moving from QuotMain to UnusedQuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
379
diff
changeset
|
658 |
* If the term needs lifting and the head is a free applied to subterms |
991db758a72d
More moving from QuotMain to UnusedQuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
379
diff
changeset
|
659 |
(if it is not applied we treated it in Abs branch) then we |
991db758a72d
More moving from QuotMain to UnusedQuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
379
diff
changeset
|
660 |
put RepAbs and recurse |
991db758a72d
More moving from QuotMain to UnusedQuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
379
diff
changeset
|
661 |
* Otherwise just recurse. |
991db758a72d
More moving from QuotMain to UnusedQuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
379
diff
changeset
|
662 |
*) |
991db758a72d
More moving from QuotMain to UnusedQuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
379
diff
changeset
|
663 |
|
336
e6b6e5ba0cc5
Moved new repabs_inj code to QuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
334
diff
changeset
|
664 |
ML {* |
e6b6e5ba0cc5
Moved new repabs_inj code to QuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
334
diff
changeset
|
665 |
fun mk_repabs lthy (T, T') trm = |
e6b6e5ba0cc5
Moved new repabs_inj code to QuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
334
diff
changeset
|
666 |
Quotient_Def.get_fun repF lthy (T, T') |
354
2eb6d527dfe4
addded a tactic, which sets up the three goals of the `algorithm'
Christian Urban <urbanc@in.tum.de>
parents:
353
diff
changeset
|
667 |
$ (Quotient_Def.get_fun absF lthy (T, T') $ trm) |
336
e6b6e5ba0cc5
Moved new repabs_inj code to QuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
334
diff
changeset
|
668 |
*} |
e6b6e5ba0cc5
Moved new repabs_inj code to QuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
334
diff
changeset
|
669 |
|
e6b6e5ba0cc5
Moved new repabs_inj code to QuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
334
diff
changeset
|
670 |
ML {* |
e6b6e5ba0cc5
Moved new repabs_inj code to QuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
334
diff
changeset
|
671 |
(* bound variables need to be treated properly, *) |
e6b6e5ba0cc5
Moved new repabs_inj code to QuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
334
diff
changeset
|
672 |
(* as the type of subterms need to be calculated *) |
e6b6e5ba0cc5
Moved new repabs_inj code to QuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
334
diff
changeset
|
673 |
|
408
1056861b562c
renamed inj_REPABS to inj_repabs_trm
Christian Urban <urbanc@in.tum.de>
parents:
407
diff
changeset
|
674 |
fun inj_repabs_trm lthy (rtrm, qtrm) = |
336
e6b6e5ba0cc5
Moved new repabs_inj code to QuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
334
diff
changeset
|
675 |
let |
e6b6e5ba0cc5
Moved new repabs_inj code to QuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
334
diff
changeset
|
676 |
val rty = fastype_of rtrm |
e6b6e5ba0cc5
Moved new repabs_inj code to QuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
334
diff
changeset
|
677 |
val qty = fastype_of qtrm |
e6b6e5ba0cc5
Moved new repabs_inj code to QuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
334
diff
changeset
|
678 |
in |
e6b6e5ba0cc5
Moved new repabs_inj code to QuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
334
diff
changeset
|
679 |
case (rtrm, qtrm) of |
e6b6e5ba0cc5
Moved new repabs_inj code to QuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
334
diff
changeset
|
680 |
(Const (@{const_name "Ball"}, T) $ r $ t, Const (@{const_name "All"}, _) $ t') => |
408
1056861b562c
renamed inj_REPABS to inj_repabs_trm
Christian Urban <urbanc@in.tum.de>
parents:
407
diff
changeset
|
681 |
Const (@{const_name "Ball"}, T) $ r $ (inj_repabs_trm lthy (t, t')) |
336
e6b6e5ba0cc5
Moved new repabs_inj code to QuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
334
diff
changeset
|
682 |
| (Const (@{const_name "Bex"}, T) $ r $ t, Const (@{const_name "Ex"}, _) $ t') => |
408
1056861b562c
renamed inj_REPABS to inj_repabs_trm
Christian Urban <urbanc@in.tum.de>
parents:
407
diff
changeset
|
683 |
Const (@{const_name "Bex"}, T) $ r $ (inj_repabs_trm lthy (t, t')) |
336
e6b6e5ba0cc5
Moved new repabs_inj code to QuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
334
diff
changeset
|
684 |
| (Const (@{const_name "Babs"}, T) $ r $ t, t') => |
408
1056861b562c
renamed inj_REPABS to inj_repabs_trm
Christian Urban <urbanc@in.tum.de>
parents:
407
diff
changeset
|
685 |
Const (@{const_name "Babs"}, T) $ r $ (inj_repabs_trm lthy (t, t')) |
336
e6b6e5ba0cc5
Moved new repabs_inj code to QuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
334
diff
changeset
|
686 |
| (Abs (x, T, t), Abs (x', T', t')) => |
e6b6e5ba0cc5
Moved new repabs_inj code to QuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
334
diff
changeset
|
687 |
let |
e6b6e5ba0cc5
Moved new repabs_inj code to QuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
334
diff
changeset
|
688 |
val (y, s) = Term.dest_abs (x, T, t) |
e6b6e5ba0cc5
Moved new repabs_inj code to QuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
334
diff
changeset
|
689 |
val (_, s') = Term.dest_abs (x', T', t') |
e6b6e5ba0cc5
Moved new repabs_inj code to QuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
334
diff
changeset
|
690 |
val yvar = Free (y, T) |
453
c22ab554a32d
started functions for qid-insertion and fixed a bug in regularise
Christian Urban <urbanc@in.tum.de>
parents:
452
diff
changeset
|
691 |
val result = Term.lambda_name (y, yvar) (inj_repabs_trm lthy (s, s')) |
336
e6b6e5ba0cc5
Moved new repabs_inj code to QuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
334
diff
changeset
|
692 |
in |
345
573e2b625e8e
a version of inj_REPABS (needs to be looked at again later)
Christian Urban <urbanc@in.tum.de>
parents:
341
diff
changeset
|
693 |
if rty = qty |
573e2b625e8e
a version of inj_REPABS (needs to be looked at again later)
Christian Urban <urbanc@in.tum.de>
parents:
341
diff
changeset
|
694 |
then result |
573e2b625e8e
a version of inj_REPABS (needs to be looked at again later)
Christian Urban <urbanc@in.tum.de>
parents:
341
diff
changeset
|
695 |
else mk_repabs lthy (rty, qty) result |
336
e6b6e5ba0cc5
Moved new repabs_inj code to QuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
334
diff
changeset
|
696 |
end |
e6b6e5ba0cc5
Moved new repabs_inj code to QuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
334
diff
changeset
|
697 |
| _ => |
455
9cb45d022524
tried to improve the inj_repabs_trm function but left the new part commented out
Christian Urban <urbanc@in.tum.de>
parents:
453
diff
changeset
|
698 |
let |
9cb45d022524
tried to improve the inj_repabs_trm function but left the new part commented out
Christian Urban <urbanc@in.tum.de>
parents:
453
diff
changeset
|
699 |
val (rhead, rargs) = strip_comb rtrm |
9cb45d022524
tried to improve the inj_repabs_trm function but left the new part commented out
Christian Urban <urbanc@in.tum.de>
parents:
453
diff
changeset
|
700 |
val (qhead, qargs) = strip_comb qtrm |
9cb45d022524
tried to improve the inj_repabs_trm function but left the new part commented out
Christian Urban <urbanc@in.tum.de>
parents:
453
diff
changeset
|
701 |
val rargs' = map (inj_repabs_trm lthy) (rargs ~~ qargs) |
9cb45d022524
tried to improve the inj_repabs_trm function but left the new part commented out
Christian Urban <urbanc@in.tum.de>
parents:
453
diff
changeset
|
702 |
in |
464 | 703 |
case (rhead, qhead) of |
704 |
(Const _, Const _) => |
|
455
9cb45d022524
tried to improve the inj_repabs_trm function but left the new part commented out
Christian Urban <urbanc@in.tum.de>
parents:
453
diff
changeset
|
705 |
if rty = qty |
9cb45d022524
tried to improve the inj_repabs_trm function but left the new part commented out
Christian Urban <urbanc@in.tum.de>
parents:
453
diff
changeset
|
706 |
then list_comb (rhead, rargs') |
9cb45d022524
tried to improve the inj_repabs_trm function but left the new part commented out
Christian Urban <urbanc@in.tum.de>
parents:
453
diff
changeset
|
707 |
else mk_repabs lthy (rty, qty) (list_comb (rhead, rargs')) |
464 | 708 |
| (Free (x, T), Free (x', T')) => |
709 |
if T = T' |
|
455
9cb45d022524
tried to improve the inj_repabs_trm function but left the new part commented out
Christian Urban <urbanc@in.tum.de>
parents:
453
diff
changeset
|
710 |
then list_comb (rhead, rargs') |
9cb45d022524
tried to improve the inj_repabs_trm function but left the new part commented out
Christian Urban <urbanc@in.tum.de>
parents:
453
diff
changeset
|
711 |
else list_comb (mk_repabs lthy (T, T') rhead, rargs') |
464 | 712 |
| (Abs _, Abs _) => |
455
9cb45d022524
tried to improve the inj_repabs_trm function but left the new part commented out
Christian Urban <urbanc@in.tum.de>
parents:
453
diff
changeset
|
713 |
list_comb (inj_repabs_trm lthy (rhead, qhead), rargs') |
9cb45d022524
tried to improve the inj_repabs_trm function but left the new part commented out
Christian Urban <urbanc@in.tum.de>
parents:
453
diff
changeset
|
714 |
| _ => raise (LIFT_MATCH "injection") |
9cb45d022524
tried to improve the inj_repabs_trm function but left the new part commented out
Christian Urban <urbanc@in.tum.de>
parents:
453
diff
changeset
|
715 |
end |
336
e6b6e5ba0cc5
Moved new repabs_inj code to QuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
334
diff
changeset
|
716 |
end |
e6b6e5ba0cc5
Moved new repabs_inj code to QuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
334
diff
changeset
|
717 |
*} |
e6b6e5ba0cc5
Moved new repabs_inj code to QuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
334
diff
changeset
|
718 |
|
404 | 719 |
section {* RepAbs Injection Tactic *} |
387 | 720 |
|
470
fc16faef5dfa
Transformation of QUOT_TRUE assumption by any given function
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
469
diff
changeset
|
721 |
(* TODO: check if it still works with first_order_match *) |
503
d2c9a72e52e0
first version of internalised quotient theorems; added FIXME-TODO
Christian Urban <urbanc@in.tum.de>
parents:
502
diff
changeset
|
722 |
(* FIXME/TODO: do not handle everything *) |
387 | 723 |
ML {* |
423
2f0ad33f0241
annotated a proof with all steps and simplified LAMBDA_RES_TAC
Christian Urban <urbanc@in.tum.de>
parents:
420
diff
changeset
|
724 |
fun instantiate_tac thm = |
2f0ad33f0241
annotated a proof with all steps and simplified LAMBDA_RES_TAC
Christian Urban <urbanc@in.tum.de>
parents:
420
diff
changeset
|
725 |
Subgoal.FOCUS (fn {concl, ...} => |
387 | 726 |
let |
727 |
val pat = Drule.strip_imp_concl (cprop_of thm) |
|
481
7f97c52021c9
Fixed unlam for non-abstractions and updated list_induct_part proof.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
480
diff
changeset
|
728 |
val insts = Thm.first_order_match (pat, concl) |
387 | 729 |
in |
730 |
rtac (Drule.instantiate insts thm) 1 |
|
731 |
end |
|
732 |
handle _ => no_tac) |
|
733 |
*} |
|
734 |
||
735 |
ML {* |
|
506
91c374abde06
removed quot argument...not all examples work anymore
Christian Urban <urbanc@in.tum.de>
parents:
505
diff
changeset
|
736 |
fun quotient_tac ctxt = |
468 | 737 |
REPEAT_ALL_NEW (FIRST' |
510
8dbc521ee97f
Even better: Completely got rid of the simps in both quotient_tac and inj_repabs_tac
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
509
diff
changeset
|
738 |
[rtac @{thm IDENTITY_QUOTIENT}, |
8dbc521ee97f
Even better: Completely got rid of the simps in both quotient_tac and inj_repabs_tac
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
509
diff
changeset
|
739 |
resolve_tac (quotient_rules_get ctxt)]) |
387 | 740 |
*} |
741 |
||
423
2f0ad33f0241
annotated a proof with all steps and simplified LAMBDA_RES_TAC
Christian Urban <urbanc@in.tum.de>
parents:
420
diff
changeset
|
742 |
lemma FUN_REL_I: |
2f0ad33f0241
annotated a proof with all steps and simplified LAMBDA_RES_TAC
Christian Urban <urbanc@in.tum.de>
parents:
420
diff
changeset
|
743 |
assumes a: "\<And>x y. R1 x y \<Longrightarrow> R2 (f x) (g y)" |
2f0ad33f0241
annotated a proof with all steps and simplified LAMBDA_RES_TAC
Christian Urban <urbanc@in.tum.de>
parents:
420
diff
changeset
|
744 |
shows "(R1 ===> R2) f g" |
466 | 745 |
using a by simp |
423
2f0ad33f0241
annotated a proof with all steps and simplified LAMBDA_RES_TAC
Christian Urban <urbanc@in.tum.de>
parents:
420
diff
changeset
|
746 |
|
387 | 747 |
ML {* |
476
325d6e9a7515
Added tactic for dealing with QUOT_TRUE and introducing QUOT_TRUE.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
475
diff
changeset
|
748 |
val lambda_rsp_tac = |
472
cb03d4b3f059
fixed problems with FOCUS
Christian Urban <urbanc@in.tum.de>
parents:
471
diff
changeset
|
749 |
SUBGOAL (fn (goal, i) => |
475 | 750 |
case HOLogic.dest_Trueprop (Logic.strip_assums_concl goal) of |
472
cb03d4b3f059
fixed problems with FOCUS
Christian Urban <urbanc@in.tum.de>
parents:
471
diff
changeset
|
751 |
(_ $ (Abs _) $ (Abs _)) => rtac @{thm FUN_REL_I} i |
423
2f0ad33f0241
annotated a proof with all steps and simplified LAMBDA_RES_TAC
Christian Urban <urbanc@in.tum.de>
parents:
420
diff
changeset
|
752 |
| _ => no_tac) |
387 | 753 |
*} |
754 |
||
755 |
ML {* |
|
434 | 756 |
val ball_rsp_tac = |
472
cb03d4b3f059
fixed problems with FOCUS
Christian Urban <urbanc@in.tum.de>
parents:
471
diff
changeset
|
757 |
SUBGOAL (fn (goal, i) => |
475 | 758 |
case HOLogic.dest_Trueprop (Logic.strip_assums_concl goal) of |
448
24fa145fc2e3
improved pattern matching inside the inj_repabs_tacs
Christian Urban <urbanc@in.tum.de>
parents:
447
diff
changeset
|
759 |
(_ $ (Const (@{const_name Ball}, _) $ _) |
473 | 760 |
$ (Const (@{const_name Ball}, _) $ _)) => rtac @{thm FUN_REL_I} i |
434 | 761 |
|_ => no_tac) |
762 |
*} |
|
763 |
||
764 |
ML {* |
|
765 |
val bex_rsp_tac = |
|
472
cb03d4b3f059
fixed problems with FOCUS
Christian Urban <urbanc@in.tum.de>
parents:
471
diff
changeset
|
766 |
SUBGOAL (fn (goal, i) => |
475 | 767 |
case HOLogic.dest_Trueprop (Logic.strip_assums_concl goal) of |
448
24fa145fc2e3
improved pattern matching inside the inj_repabs_tacs
Christian Urban <urbanc@in.tum.de>
parents:
447
diff
changeset
|
768 |
(_ $ (Const (@{const_name Bex}, _) $ _) |
473 | 769 |
$ (Const (@{const_name Bex}, _) $ _)) => rtac @{thm FUN_REL_I} i |
434 | 770 |
| _ => no_tac) |
771 |
*} |
|
772 |
||
480
7fbbb2690bc5
Removed the use of 'rty' from APPLY_RSP, finally LF proofs go automatically.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
479
diff
changeset
|
773 |
definition |
7fbbb2690bc5
Removed the use of 'rty' from APPLY_RSP, finally LF proofs go automatically.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
479
diff
changeset
|
774 |
"QUOT_TRUE x \<equiv> True" |
472
cb03d4b3f059
fixed problems with FOCUS
Christian Urban <urbanc@in.tum.de>
parents:
471
diff
changeset
|
775 |
|
387 | 776 |
ML {* |
480
7fbbb2690bc5
Removed the use of 'rty' from APPLY_RSP, finally LF proofs go automatically.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
479
diff
changeset
|
777 |
fun find_qt_asm asms = |
7fbbb2690bc5
Removed the use of 'rty' from APPLY_RSP, finally LF proofs go automatically.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
479
diff
changeset
|
778 |
let |
7fbbb2690bc5
Removed the use of 'rty' from APPLY_RSP, finally LF proofs go automatically.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
479
diff
changeset
|
779 |
fun find_fun trm = |
7fbbb2690bc5
Removed the use of 'rty' from APPLY_RSP, finally LF proofs go automatically.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
479
diff
changeset
|
780 |
case trm of |
7fbbb2690bc5
Removed the use of 'rty' from APPLY_RSP, finally LF proofs go automatically.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
479
diff
changeset
|
781 |
(Const(@{const_name Trueprop}, _) $ (Const (@{const_name QUOT_TRUE}, _) $ _)) => true |
7fbbb2690bc5
Removed the use of 'rty' from APPLY_RSP, finally LF proofs go automatically.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
479
diff
changeset
|
782 |
| _ => false |
7fbbb2690bc5
Removed the use of 'rty' from APPLY_RSP, finally LF proofs go automatically.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
479
diff
changeset
|
783 |
in |
7fbbb2690bc5
Removed the use of 'rty' from APPLY_RSP, finally LF proofs go automatically.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
479
diff
changeset
|
784 |
case find_first find_fun asms of |
7fbbb2690bc5
Removed the use of 'rty' from APPLY_RSP, finally LF proofs go automatically.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
479
diff
changeset
|
785 |
SOME (_ $ (_ $ (f $ a))) => (f, a) |
7fbbb2690bc5
Removed the use of 'rty' from APPLY_RSP, finally LF proofs go automatically.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
479
diff
changeset
|
786 |
| _ => error "find_qt_asm" |
7fbbb2690bc5
Removed the use of 'rty' from APPLY_RSP, finally LF proofs go automatically.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
479
diff
changeset
|
787 |
end |
7fbbb2690bc5
Removed the use of 'rty' from APPLY_RSP, finally LF proofs go automatically.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
479
diff
changeset
|
788 |
*} |
7fbbb2690bc5
Removed the use of 'rty' from APPLY_RSP, finally LF proofs go automatically.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
479
diff
changeset
|
789 |
|
7fbbb2690bc5
Removed the use of 'rty' from APPLY_RSP, finally LF proofs go automatically.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
479
diff
changeset
|
790 |
ML {* |
495 | 791 |
val APPLY_RSP_TAC = |
482
767baada01dc
New APPLY_RSP which finally does automatic partial lifting :). Doesn't support same relation yet.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
481
diff
changeset
|
792 |
Subgoal.FOCUS (fn {concl, asms, context,...} => |
767baada01dc
New APPLY_RSP which finally does automatic partial lifting :). Doesn't support same relation yet.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
481
diff
changeset
|
793 |
case ((HOLogic.dest_Trueprop (term_of concl))) of |
767baada01dc
New APPLY_RSP which finally does automatic partial lifting :). Doesn't support same relation yet.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
481
diff
changeset
|
794 |
((R2 $ (f $ x) $ (g $ y))) => |
767baada01dc
New APPLY_RSP which finally does automatic partial lifting :). Doesn't support same relation yet.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
481
diff
changeset
|
795 |
let |
767baada01dc
New APPLY_RSP which finally does automatic partial lifting :). Doesn't support same relation yet.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
481
diff
changeset
|
796 |
val (asmf, asma) = find_qt_asm (map term_of asms); |
767baada01dc
New APPLY_RSP which finally does automatic partial lifting :). Doesn't support same relation yet.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
481
diff
changeset
|
797 |
in |
767baada01dc
New APPLY_RSP which finally does automatic partial lifting :). Doesn't support same relation yet.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
481
diff
changeset
|
798 |
if (fastype_of asmf) = (fastype_of f) then no_tac else let |
767baada01dc
New APPLY_RSP which finally does automatic partial lifting :). Doesn't support same relation yet.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
481
diff
changeset
|
799 |
val ty_a = fastype_of x; |
767baada01dc
New APPLY_RSP which finally does automatic partial lifting :). Doesn't support same relation yet.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
481
diff
changeset
|
800 |
val ty_b = fastype_of asma; |
767baada01dc
New APPLY_RSP which finally does automatic partial lifting :). Doesn't support same relation yet.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
481
diff
changeset
|
801 |
val ty_c = range_type (type_of f); |
767baada01dc
New APPLY_RSP which finally does automatic partial lifting :). Doesn't support same relation yet.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
481
diff
changeset
|
802 |
val ty_d = range_type (type_of asmf); |
767baada01dc
New APPLY_RSP which finally does automatic partial lifting :). Doesn't support same relation yet.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
481
diff
changeset
|
803 |
val thy = ProofContext.theory_of context; |
767baada01dc
New APPLY_RSP which finally does automatic partial lifting :). Doesn't support same relation yet.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
481
diff
changeset
|
804 |
val ty_inst = map (fn x => SOME (ctyp_of thy x)) [ty_a, ty_b, ty_c, ty_d]; |
767baada01dc
New APPLY_RSP which finally does automatic partial lifting :). Doesn't support same relation yet.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
481
diff
changeset
|
805 |
val [R2, f, g, x, y] = map (cterm_of thy) [R2, f, g, x, y]; |
767baada01dc
New APPLY_RSP which finally does automatic partial lifting :). Doesn't support same relation yet.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
481
diff
changeset
|
806 |
val t_inst = [NONE, NONE, NONE, SOME R2, NONE, NONE, SOME f, SOME g, SOME x, SOME y]; |
767baada01dc
New APPLY_RSP which finally does automatic partial lifting :). Doesn't support same relation yet.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
481
diff
changeset
|
807 |
val thm = Drule.instantiate' ty_inst t_inst @{thm APPLY_RSP} |
767baada01dc
New APPLY_RSP which finally does automatic partial lifting :). Doesn't support same relation yet.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
481
diff
changeset
|
808 |
(*val _ = tracing (Syntax.string_of_term @{context} (prop_of thm))*) |
767baada01dc
New APPLY_RSP which finally does automatic partial lifting :). Doesn't support same relation yet.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
481
diff
changeset
|
809 |
in |
767baada01dc
New APPLY_RSP which finally does automatic partial lifting :). Doesn't support same relation yet.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
481
diff
changeset
|
810 |
rtac thm 1 |
767baada01dc
New APPLY_RSP which finally does automatic partial lifting :). Doesn't support same relation yet.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
481
diff
changeset
|
811 |
end |
767baada01dc
New APPLY_RSP which finally does automatic partial lifting :). Doesn't support same relation yet.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
481
diff
changeset
|
812 |
end |
767baada01dc
New APPLY_RSP which finally does automatic partial lifting :). Doesn't support same relation yet.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
481
diff
changeset
|
813 |
| _ => no_tac) |
767baada01dc
New APPLY_RSP which finally does automatic partial lifting :). Doesn't support same relation yet.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
481
diff
changeset
|
814 |
*} |
767baada01dc
New APPLY_RSP which finally does automatic partial lifting :). Doesn't support same relation yet.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
481
diff
changeset
|
815 |
|
767baada01dc
New APPLY_RSP which finally does automatic partial lifting :). Doesn't support same relation yet.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
481
diff
changeset
|
816 |
|
767baada01dc
New APPLY_RSP which finally does automatic partial lifting :). Doesn't support same relation yet.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
481
diff
changeset
|
817 |
ML {* |
432
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
818 |
fun SOLVES' tac = tac THEN_ALL_NEW (fn _ => no_tac) |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
819 |
*} |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
820 |
|
398
fafcc54e531d
some diagnostic code for r_mk_comb
Christian Urban <urbanc@in.tum.de>
parents:
391
diff
changeset
|
821 |
(* |
fafcc54e531d
some diagnostic code for r_mk_comb
Christian Urban <urbanc@in.tum.de>
parents:
391
diff
changeset
|
822 |
To prove that the regularised theorem implies the abs/rep injected, |
fafcc54e531d
some diagnostic code for r_mk_comb
Christian Urban <urbanc@in.tum.de>
parents:
391
diff
changeset
|
823 |
we try: |
fafcc54e531d
some diagnostic code for r_mk_comb
Christian Urban <urbanc@in.tum.de>
parents:
391
diff
changeset
|
824 |
|
fafcc54e531d
some diagnostic code for r_mk_comb
Christian Urban <urbanc@in.tum.de>
parents:
391
diff
changeset
|
825 |
1) theorems 'trans2' from the appropriate QUOT_TYPE |
476
325d6e9a7515
Added tactic for dealing with QUOT_TRUE and introducing QUOT_TRUE.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
475
diff
changeset
|
826 |
2) remove lambdas from both sides: lambda_rsp_tac |
398
fafcc54e531d
some diagnostic code for r_mk_comb
Christian Urban <urbanc@in.tum.de>
parents:
391
diff
changeset
|
827 |
3) remove Ball/Bex from the right hand side |
fafcc54e531d
some diagnostic code for r_mk_comb
Christian Urban <urbanc@in.tum.de>
parents:
391
diff
changeset
|
828 |
4) use user-supplied RSP theorems |
fafcc54e531d
some diagnostic code for r_mk_comb
Christian Urban <urbanc@in.tum.de>
parents:
391
diff
changeset
|
829 |
5) remove rep_abs from the right side |
fafcc54e531d
some diagnostic code for r_mk_comb
Christian Urban <urbanc@in.tum.de>
parents:
391
diff
changeset
|
830 |
6) reflexivity of equality |
fafcc54e531d
some diagnostic code for r_mk_comb
Christian Urban <urbanc@in.tum.de>
parents:
391
diff
changeset
|
831 |
7) split applications of lifted type (apply_rsp) |
fafcc54e531d
some diagnostic code for r_mk_comb
Christian Urban <urbanc@in.tum.de>
parents:
391
diff
changeset
|
832 |
8) split applications of non-lifted type (cong_tac) |
fafcc54e531d
some diagnostic code for r_mk_comb
Christian Urban <urbanc@in.tum.de>
parents:
391
diff
changeset
|
833 |
9) apply extentionality |
423
2f0ad33f0241
annotated a proof with all steps and simplified LAMBDA_RES_TAC
Christian Urban <urbanc@in.tum.de>
parents:
420
diff
changeset
|
834 |
A) reflexivity of the relation |
2f0ad33f0241
annotated a proof with all steps and simplified LAMBDA_RES_TAC
Christian Urban <urbanc@in.tum.de>
parents:
420
diff
changeset
|
835 |
B) assumption |
398
fafcc54e531d
some diagnostic code for r_mk_comb
Christian Urban <urbanc@in.tum.de>
parents:
391
diff
changeset
|
836 |
(Lambdas under respects may have left us some assumptions) |
423
2f0ad33f0241
annotated a proof with all steps and simplified LAMBDA_RES_TAC
Christian Urban <urbanc@in.tum.de>
parents:
420
diff
changeset
|
837 |
C) proving obvious higher order equalities by simplifying fun_rel |
398
fafcc54e531d
some diagnostic code for r_mk_comb
Christian Urban <urbanc@in.tum.de>
parents:
391
diff
changeset
|
838 |
(not sure if it is still needed?) |
423
2f0ad33f0241
annotated a proof with all steps and simplified LAMBDA_RES_TAC
Christian Urban <urbanc@in.tum.de>
parents:
420
diff
changeset
|
839 |
D) unfolding lambda on one side |
2f0ad33f0241
annotated a proof with all steps and simplified LAMBDA_RES_TAC
Christian Urban <urbanc@in.tum.de>
parents:
420
diff
changeset
|
840 |
E) simplifying (= ===> =) for simpler respectfulness |
398
fafcc54e531d
some diagnostic code for r_mk_comb
Christian Urban <urbanc@in.tum.de>
parents:
391
diff
changeset
|
841 |
|
fafcc54e531d
some diagnostic code for r_mk_comb
Christian Urban <urbanc@in.tum.de>
parents:
391
diff
changeset
|
842 |
*) |
fafcc54e531d
some diagnostic code for r_mk_comb
Christian Urban <urbanc@in.tum.de>
parents:
391
diff
changeset
|
843 |
|
469 | 844 |
lemma quot_true_dests: |
845 |
shows QT_all: "QUOT_TRUE (All P) \<Longrightarrow> QUOT_TRUE P" |
|
476
325d6e9a7515
Added tactic for dealing with QUOT_TRUE and introducing QUOT_TRUE.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
475
diff
changeset
|
846 |
and QT_ex: "QUOT_TRUE (Ex P) \<Longrightarrow> QUOT_TRUE P" |
469 | 847 |
and QT_lam: "QUOT_TRUE (\<lambda>x. P x) \<Longrightarrow> (\<And>x. QUOT_TRUE (P x))" |
476
325d6e9a7515
Added tactic for dealing with QUOT_TRUE and introducing QUOT_TRUE.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
475
diff
changeset
|
848 |
and QT_ext: "(\<And>x. QUOT_TRUE (a x) \<Longrightarrow> f x = g x) \<Longrightarrow> (QUOT_TRUE a \<Longrightarrow> f = g)" |
325d6e9a7515
Added tactic for dealing with QUOT_TRUE and introducing QUOT_TRUE.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
475
diff
changeset
|
849 |
apply(simp_all add: QUOT_TRUE_def ext) |
469 | 850 |
done |
851 |
||
476
325d6e9a7515
Added tactic for dealing with QUOT_TRUE and introducing QUOT_TRUE.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
475
diff
changeset
|
852 |
lemma QUOT_TRUE_i: "(QUOT_TRUE (a :: bool) \<Longrightarrow> P) \<Longrightarrow> P" |
470
fc16faef5dfa
Transformation of QUOT_TRUE assumption by any given function
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
469
diff
changeset
|
853 |
by (simp add: QUOT_TRUE_def) |
fc16faef5dfa
Transformation of QUOT_TRUE assumption by any given function
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
469
diff
changeset
|
854 |
|
479
24799397a3ce
The conversion approach works.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
476
diff
changeset
|
855 |
lemma QUOT_TRUE_imp: "QUOT_TRUE a \<equiv> QUOT_TRUE b" |
470
fc16faef5dfa
Transformation of QUOT_TRUE assumption by any given function
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
469
diff
changeset
|
856 |
by (simp add: QUOT_TRUE_def) |
fc16faef5dfa
Transformation of QUOT_TRUE assumption by any given function
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
469
diff
changeset
|
857 |
|
fc16faef5dfa
Transformation of QUOT_TRUE assumption by any given function
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
469
diff
changeset
|
858 |
ML {* |
479
24799397a3ce
The conversion approach works.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
476
diff
changeset
|
859 |
fun quot_true_conv1 ctxt fnctn ctrm = |
24799397a3ce
The conversion approach works.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
476
diff
changeset
|
860 |
case (term_of ctrm) of |
24799397a3ce
The conversion approach works.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
476
diff
changeset
|
861 |
(Const (@{const_name QUOT_TRUE}, _) $ x) => |
24799397a3ce
The conversion approach works.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
476
diff
changeset
|
862 |
let |
24799397a3ce
The conversion approach works.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
476
diff
changeset
|
863 |
val fx = fnctn x; |
24799397a3ce
The conversion approach works.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
476
diff
changeset
|
864 |
val thy = ProofContext.theory_of ctxt; |
24799397a3ce
The conversion approach works.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
476
diff
changeset
|
865 |
val cx = cterm_of thy x; |
24799397a3ce
The conversion approach works.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
476
diff
changeset
|
866 |
val cfx = cterm_of thy fx; |
24799397a3ce
The conversion approach works.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
476
diff
changeset
|
867 |
val cxt = ctyp_of thy (fastype_of x); |
24799397a3ce
The conversion approach works.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
476
diff
changeset
|
868 |
val cfxt = ctyp_of thy (fastype_of fx); |
24799397a3ce
The conversion approach works.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
476
diff
changeset
|
869 |
val thm = Drule.instantiate' [SOME cxt, SOME cfxt] [SOME cx, SOME cfx] @{thm QUOT_TRUE_imp} |
24799397a3ce
The conversion approach works.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
476
diff
changeset
|
870 |
in |
24799397a3ce
The conversion approach works.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
476
diff
changeset
|
871 |
Conv.rewr_conv thm ctrm |
24799397a3ce
The conversion approach works.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
476
diff
changeset
|
872 |
end |
470
fc16faef5dfa
Transformation of QUOT_TRUE assumption by any given function
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
469
diff
changeset
|
873 |
*} |
469 | 874 |
|
479
24799397a3ce
The conversion approach works.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
476
diff
changeset
|
875 |
ML {* |
24799397a3ce
The conversion approach works.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
476
diff
changeset
|
876 |
fun quot_true_conv ctxt fnctn ctrm = |
24799397a3ce
The conversion approach works.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
476
diff
changeset
|
877 |
case (term_of ctrm) of |
24799397a3ce
The conversion approach works.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
476
diff
changeset
|
878 |
(Const (@{const_name QUOT_TRUE}, _) $ _) => |
24799397a3ce
The conversion approach works.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
476
diff
changeset
|
879 |
quot_true_conv1 ctxt fnctn ctrm |
24799397a3ce
The conversion approach works.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
476
diff
changeset
|
880 |
| _ $ _ => Conv.comb_conv (quot_true_conv ctxt fnctn) ctrm |
24799397a3ce
The conversion approach works.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
476
diff
changeset
|
881 |
| Abs _ => Conv.abs_conv (fn (_, ctxt) => quot_true_conv ctxt fnctn) ctxt ctrm |
24799397a3ce
The conversion approach works.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
476
diff
changeset
|
882 |
| _ => Conv.all_conv ctrm |
24799397a3ce
The conversion approach works.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
476
diff
changeset
|
883 |
*} |
24799397a3ce
The conversion approach works.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
476
diff
changeset
|
884 |
|
24799397a3ce
The conversion approach works.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
476
diff
changeset
|
885 |
ML {* |
493 | 886 |
fun quot_true_tac ctxt fnctn = CONVERSION |
887 |
((Conv.params_conv ~1 (fn ctxt => |
|
888 |
(Conv.prems_conv ~1 (quot_true_conv ctxt fnctn)))) ctxt) |
|
479
24799397a3ce
The conversion approach works.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
476
diff
changeset
|
889 |
*} |
476
325d6e9a7515
Added tactic for dealing with QUOT_TRUE and introducing QUOT_TRUE.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
475
diff
changeset
|
890 |
|
325d6e9a7515
Added tactic for dealing with QUOT_TRUE and introducing QUOT_TRUE.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
475
diff
changeset
|
891 |
ML {* fun dest_comb (f $ a) = (f, a) *} |
325d6e9a7515
Added tactic for dealing with QUOT_TRUE and introducing QUOT_TRUE.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
475
diff
changeset
|
892 |
ML {* fun dest_bcomb ((_ $ l) $ r) = (l, r) *} |
481
7f97c52021c9
Fixed unlam for non-abstractions and updated list_induct_part proof.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
480
diff
changeset
|
893 |
(* TODO: Can this be done easier? *) |
7f97c52021c9
Fixed unlam for non-abstractions and updated list_induct_part proof.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
480
diff
changeset
|
894 |
ML {* |
7f97c52021c9
Fixed unlam for non-abstractions and updated list_induct_part proof.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
480
diff
changeset
|
895 |
fun unlam t = |
7f97c52021c9
Fixed unlam for non-abstractions and updated list_induct_part proof.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
480
diff
changeset
|
896 |
case t of |
7f97c52021c9
Fixed unlam for non-abstractions and updated list_induct_part proof.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
480
diff
changeset
|
897 |
(Abs a) => snd (Term.dest_abs a) |
7f97c52021c9
Fixed unlam for non-abstractions and updated list_induct_part proof.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
480
diff
changeset
|
898 |
| _ => unlam (Abs("", domain_type (fastype_of t), (incr_boundvars 1 t) $ (Bound 0))) *} |
476
325d6e9a7515
Added tactic for dealing with QUOT_TRUE and introducing QUOT_TRUE.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
475
diff
changeset
|
899 |
|
423
2f0ad33f0241
annotated a proof with all steps and simplified LAMBDA_RES_TAC
Christian Urban <urbanc@in.tum.de>
parents:
420
diff
changeset
|
900 |
|
443 | 901 |
ML {* |
506
91c374abde06
removed quot argument...not all examples work anymore
Christian Urban <urbanc@in.tum.de>
parents:
505
diff
changeset
|
902 |
fun inj_repabs_tac ctxt rel_refl trans2 = |
476
325d6e9a7515
Added tactic for dealing with QUOT_TRUE and introducing QUOT_TRUE.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
475
diff
changeset
|
903 |
(FIRST' [ |
325d6e9a7515
Added tactic for dealing with QUOT_TRUE and introducing QUOT_TRUE.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
475
diff
changeset
|
904 |
(* "cong" rule of the of the relation / transitivity*) |
325d6e9a7515
Added tactic for dealing with QUOT_TRUE and introducing QUOT_TRUE.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
475
diff
changeset
|
905 |
(* (op =) (R a b) (R c d) ----> \<lbrakk>R a c; R b d\<rbrakk> *) |
482
767baada01dc
New APPLY_RSP which finally does automatic partial lifting :). Doesn't support same relation yet.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
481
diff
changeset
|
906 |
NDT ctxt "1" (resolve_tac trans2 THEN' RANGE [ |
767baada01dc
New APPLY_RSP which finally does automatic partial lifting :). Doesn't support same relation yet.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
481
diff
changeset
|
907 |
quot_true_tac ctxt (fst o dest_bcomb), quot_true_tac ctxt (snd o dest_bcomb)]), |
476
325d6e9a7515
Added tactic for dealing with QUOT_TRUE and introducing QUOT_TRUE.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
475
diff
changeset
|
908 |
|
325d6e9a7515
Added tactic for dealing with QUOT_TRUE and introducing QUOT_TRUE.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
475
diff
changeset
|
909 |
(* (R1 ===> R2) (\<lambda>x\<dots>) (\<lambda>y\<dots>) ----> \<lbrakk>R1 x y\<rbrakk> \<Longrightarrow> R2 (\<dots>x) (\<dots>y) *) |
325d6e9a7515
Added tactic for dealing with QUOT_TRUE and introducing QUOT_TRUE.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
475
diff
changeset
|
910 |
NDT ctxt "2" (lambda_rsp_tac THEN' quot_true_tac ctxt unlam), |
325d6e9a7515
Added tactic for dealing with QUOT_TRUE and introducing QUOT_TRUE.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
475
diff
changeset
|
911 |
|
325d6e9a7515
Added tactic for dealing with QUOT_TRUE and introducing QUOT_TRUE.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
475
diff
changeset
|
912 |
(* (op =) (Ball\<dots>) (Ball\<dots>) ----> (op =) (\<dots>) (\<dots>) *) |
325d6e9a7515
Added tactic for dealing with QUOT_TRUE and introducing QUOT_TRUE.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
475
diff
changeset
|
913 |
NDT ctxt "3" (rtac @{thm ball_rsp} THEN' dtac @{thm QT_all}), |
325d6e9a7515
Added tactic for dealing with QUOT_TRUE and introducing QUOT_TRUE.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
475
diff
changeset
|
914 |
|
325d6e9a7515
Added tactic for dealing with QUOT_TRUE and introducing QUOT_TRUE.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
475
diff
changeset
|
915 |
(* R2 is always equality *) |
325d6e9a7515
Added tactic for dealing with QUOT_TRUE and introducing QUOT_TRUE.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
475
diff
changeset
|
916 |
(* (R1 ===> R2) (Ball\<dots>) (Ball\<dots>) ----> \<lbrakk>R1 x y\<rbrakk> \<Longrightarrow> R2 (Ball\<dots>x) (Ball\<dots>y) *) |
325d6e9a7515
Added tactic for dealing with QUOT_TRUE and introducing QUOT_TRUE.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
475
diff
changeset
|
917 |
NDT ctxt "4" (ball_rsp_tac THEN' quot_true_tac ctxt unlam), |
325d6e9a7515
Added tactic for dealing with QUOT_TRUE and introducing QUOT_TRUE.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
475
diff
changeset
|
918 |
|
325d6e9a7515
Added tactic for dealing with QUOT_TRUE and introducing QUOT_TRUE.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
475
diff
changeset
|
919 |
(* (op =) (Bex\<dots>) (Bex\<dots>) ----> (op =) (\<dots>) (\<dots>) *) |
325d6e9a7515
Added tactic for dealing with QUOT_TRUE and introducing QUOT_TRUE.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
475
diff
changeset
|
920 |
NDT ctxt "5" (rtac @{thm bex_rsp} THEN' dtac @{thm QT_ex}), |
325d6e9a7515
Added tactic for dealing with QUOT_TRUE and introducing QUOT_TRUE.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
475
diff
changeset
|
921 |
|
325d6e9a7515
Added tactic for dealing with QUOT_TRUE and introducing QUOT_TRUE.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
475
diff
changeset
|
922 |
(* (R1 ===> R2) (Bex\<dots>) (Bex\<dots>) ----> \<lbrakk>R1 x y\<rbrakk> \<Longrightarrow> R2 (Bex\<dots>x) (Bex\<dots>y) *) |
325d6e9a7515
Added tactic for dealing with QUOT_TRUE and introducing QUOT_TRUE.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
475
diff
changeset
|
923 |
NDT ctxt "6" (bex_rsp_tac THEN' dtac @{thm QT_ext}), |
325d6e9a7515
Added tactic for dealing with QUOT_TRUE and introducing QUOT_TRUE.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
475
diff
changeset
|
924 |
|
325d6e9a7515
Added tactic for dealing with QUOT_TRUE and introducing QUOT_TRUE.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
475
diff
changeset
|
925 |
(* respectfulness of constants *) |
325d6e9a7515
Added tactic for dealing with QUOT_TRUE and introducing QUOT_TRUE.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
475
diff
changeset
|
926 |
NDT ctxt "7" (resolve_tac (rsp_rules_get ctxt)), |
325d6e9a7515
Added tactic for dealing with QUOT_TRUE and introducing QUOT_TRUE.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
475
diff
changeset
|
927 |
|
325d6e9a7515
Added tactic for dealing with QUOT_TRUE and introducing QUOT_TRUE.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
475
diff
changeset
|
928 |
(* reflexivity of operators arising from Cong_tac *) |
325d6e9a7515
Added tactic for dealing with QUOT_TRUE and introducing QUOT_TRUE.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
475
diff
changeset
|
929 |
NDT ctxt "8" (rtac @{thm refl}), |
325d6e9a7515
Added tactic for dealing with QUOT_TRUE and introducing QUOT_TRUE.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
475
diff
changeset
|
930 |
|
325d6e9a7515
Added tactic for dealing with QUOT_TRUE and introducing QUOT_TRUE.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
475
diff
changeset
|
931 |
(* R (\<dots>) (Rep (Abs \<dots>)) ----> R (\<dots>) (\<dots>) *) |
325d6e9a7515
Added tactic for dealing with QUOT_TRUE and introducing QUOT_TRUE.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
475
diff
changeset
|
932 |
(* observe ---> *) |
325d6e9a7515
Added tactic for dealing with QUOT_TRUE and introducing QUOT_TRUE.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
475
diff
changeset
|
933 |
NDT ctxt "9" ((instantiate_tac @{thm REP_ABS_RSP} ctxt |
506
91c374abde06
removed quot argument...not all examples work anymore
Christian Urban <urbanc@in.tum.de>
parents:
505
diff
changeset
|
934 |
THEN' (RANGE [SOLVES' (quotient_tac ctxt)]))), |
476
325d6e9a7515
Added tactic for dealing with QUOT_TRUE and introducing QUOT_TRUE.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
475
diff
changeset
|
935 |
|
325d6e9a7515
Added tactic for dealing with QUOT_TRUE and introducing QUOT_TRUE.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
475
diff
changeset
|
936 |
(* R (t $ \<dots>) (t' $ \<dots>) ----> APPLY_RSP provided type of t needs lifting *) |
495 | 937 |
NDT ctxt "A" (APPLY_RSP_TAC ctxt THEN' |
506
91c374abde06
removed quot argument...not all examples work anymore
Christian Urban <urbanc@in.tum.de>
parents:
505
diff
changeset
|
938 |
(RANGE [SOLVES' (quotient_tac ctxt), SOLVES' (quotient_tac ctxt), |
476
325d6e9a7515
Added tactic for dealing with QUOT_TRUE and introducing QUOT_TRUE.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
475
diff
changeset
|
939 |
quot_true_tac ctxt (fst o dest_comb), quot_true_tac ctxt (snd o dest_comb)])), |
325d6e9a7515
Added tactic for dealing with QUOT_TRUE and introducing QUOT_TRUE.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
475
diff
changeset
|
940 |
|
325d6e9a7515
Added tactic for dealing with QUOT_TRUE and introducing QUOT_TRUE.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
475
diff
changeset
|
941 |
(* (op =) (t $ \<dots>) (t' $ \<dots>) ----> Cong provided type of t does not need lifting *) |
325d6e9a7515
Added tactic for dealing with QUOT_TRUE and introducing QUOT_TRUE.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
475
diff
changeset
|
942 |
(* merge with previous tactic *) |
325d6e9a7515
Added tactic for dealing with QUOT_TRUE and introducing QUOT_TRUE.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
475
diff
changeset
|
943 |
NDT ctxt "B" (Cong_Tac.cong_tac @{thm cong} THEN' |
325d6e9a7515
Added tactic for dealing with QUOT_TRUE and introducing QUOT_TRUE.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
475
diff
changeset
|
944 |
(RANGE [quot_true_tac ctxt (fst o dest_comb), quot_true_tac ctxt (snd o dest_comb)])), |
325d6e9a7515
Added tactic for dealing with QUOT_TRUE and introducing QUOT_TRUE.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
475
diff
changeset
|
945 |
|
325d6e9a7515
Added tactic for dealing with QUOT_TRUE and introducing QUOT_TRUE.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
475
diff
changeset
|
946 |
(* (op =) (\<lambda>x\<dots>) (\<lambda>x\<dots>) ----> (op =) (\<dots>) (\<dots>) *) |
325d6e9a7515
Added tactic for dealing with QUOT_TRUE and introducing QUOT_TRUE.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
475
diff
changeset
|
947 |
NDT ctxt "C" (rtac @{thm ext} THEN' quot_true_tac ctxt unlam), |
325d6e9a7515
Added tactic for dealing with QUOT_TRUE and introducing QUOT_TRUE.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
475
diff
changeset
|
948 |
|
325d6e9a7515
Added tactic for dealing with QUOT_TRUE and introducing QUOT_TRUE.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
475
diff
changeset
|
949 |
(* reflexivity of the basic relations *) |
325d6e9a7515
Added tactic for dealing with QUOT_TRUE and introducing QUOT_TRUE.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
475
diff
changeset
|
950 |
(* R \<dots> \<dots> *) |
325d6e9a7515
Added tactic for dealing with QUOT_TRUE and introducing QUOT_TRUE.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
475
diff
changeset
|
951 |
NDT ctxt "D" (resolve_tac rel_refl), |
325d6e9a7515
Added tactic for dealing with QUOT_TRUE and introducing QUOT_TRUE.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
475
diff
changeset
|
952 |
|
325d6e9a7515
Added tactic for dealing with QUOT_TRUE and introducing QUOT_TRUE.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
475
diff
changeset
|
953 |
(* resolving with R x y assumptions *) |
510
8dbc521ee97f
Even better: Completely got rid of the simps in both quotient_tac and inj_repabs_tac
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
509
diff
changeset
|
954 |
NDT ctxt "E" (atac) |
476
325d6e9a7515
Added tactic for dealing with QUOT_TRUE and introducing QUOT_TRUE.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
475
diff
changeset
|
955 |
|
325d6e9a7515
Added tactic for dealing with QUOT_TRUE and introducing QUOT_TRUE.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
475
diff
changeset
|
956 |
(* (op =) ===> (op =) \<Longrightarrow> (op =), needed in order to apply respectfulness theorems *) |
325d6e9a7515
Added tactic for dealing with QUOT_TRUE and introducing QUOT_TRUE.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
475
diff
changeset
|
957 |
(* global simplification *) |
511
28bb34eeedc5
Changing = to \<equiv> in case if we want to use simp.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
510
diff
changeset
|
958 |
(*NDT ctxt "H" (CHANGED o (asm_full_simp_tac ((Simplifier.context ctxt empty_ss) addsimps @{thms FUN_REL_EQ LIST_REL_EQ})))*) |
510
8dbc521ee97f
Even better: Completely got rid of the simps in both quotient_tac and inj_repabs_tac
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
509
diff
changeset
|
959 |
]) |
476
325d6e9a7515
Added tactic for dealing with QUOT_TRUE and introducing QUOT_TRUE.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
475
diff
changeset
|
960 |
*} |
325d6e9a7515
Added tactic for dealing with QUOT_TRUE and introducing QUOT_TRUE.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
475
diff
changeset
|
961 |
|
325d6e9a7515
Added tactic for dealing with QUOT_TRUE and introducing QUOT_TRUE.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
475
diff
changeset
|
962 |
ML {* |
506
91c374abde06
removed quot argument...not all examples work anymore
Christian Urban <urbanc@in.tum.de>
parents:
505
diff
changeset
|
963 |
fun all_inj_repabs_tac ctxt rel_refl trans2 = |
91c374abde06
removed quot argument...not all examples work anymore
Christian Urban <urbanc@in.tum.de>
parents:
505
diff
changeset
|
964 |
REPEAT_ALL_NEW (inj_repabs_tac ctxt rel_refl trans2) |
398
fafcc54e531d
some diagnostic code for r_mk_comb
Christian Urban <urbanc@in.tum.de>
parents:
391
diff
changeset
|
965 |
*} |
fafcc54e531d
some diagnostic code for r_mk_comb
Christian Urban <urbanc@in.tum.de>
parents:
391
diff
changeset
|
966 |
|
512
8c7597b19f0e
First version of the deterministic rep-abs-inj-tac.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
505
diff
changeset
|
967 |
(* A faster version *) |
8c7597b19f0e
First version of the deterministic rep-abs-inj-tac.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
505
diff
changeset
|
968 |
|
8c7597b19f0e
First version of the deterministic rep-abs-inj-tac.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
505
diff
changeset
|
969 |
ML {* |
515
b00a9b58264d
Fixes after big merge.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
514
diff
changeset
|
970 |
fun inj_repabs_tac_fast ctxt trans2 = SUBGOAL (fn (goal, i) => |
512
8c7597b19f0e
First version of the deterministic rep-abs-inj-tac.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
505
diff
changeset
|
971 |
(case HOLogic.dest_Trueprop (Logic.strip_assums_concl goal) of |
8c7597b19f0e
First version of the deterministic rep-abs-inj-tac.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
505
diff
changeset
|
972 |
((Const (@{const_name FUN_REL}, _) $ _ $ _) $ (Abs _) $ (Abs _)) |
8c7597b19f0e
First version of the deterministic rep-abs-inj-tac.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
505
diff
changeset
|
973 |
=> rtac @{thm FUN_REL_I} THEN' quot_true_tac ctxt unlam |
8c7597b19f0e
First version of the deterministic rep-abs-inj-tac.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
505
diff
changeset
|
974 |
| (Const (@{const_name "op ="},_) $ |
8c7597b19f0e
First version of the deterministic rep-abs-inj-tac.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
505
diff
changeset
|
975 |
(Const(@{const_name Ball},_) $ (Const (@{const_name Respects}, _) $ _) $ _) $ |
8c7597b19f0e
First version of the deterministic rep-abs-inj-tac.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
505
diff
changeset
|
976 |
(Const(@{const_name Ball},_) $ (Const (@{const_name Respects}, _) $ _) $ _)) |
8c7597b19f0e
First version of the deterministic rep-abs-inj-tac.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
505
diff
changeset
|
977 |
=> rtac @{thm ball_rsp} THEN' dtac @{thm QT_all} |
8c7597b19f0e
First version of the deterministic rep-abs-inj-tac.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
505
diff
changeset
|
978 |
| (Const (@{const_name FUN_REL}, _) $ _ $ _) $ |
8c7597b19f0e
First version of the deterministic rep-abs-inj-tac.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
505
diff
changeset
|
979 |
(Const(@{const_name Ball},_) $ (Const (@{const_name Respects}, _) $ _) $ _) $ |
8c7597b19f0e
First version of the deterministic rep-abs-inj-tac.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
505
diff
changeset
|
980 |
(Const(@{const_name Ball},_) $ (Const (@{const_name Respects}, _) $ _) $ _) |
8c7597b19f0e
First version of the deterministic rep-abs-inj-tac.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
505
diff
changeset
|
981 |
=> rtac @{thm FUN_REL_I} THEN' quot_true_tac ctxt unlam |
8c7597b19f0e
First version of the deterministic rep-abs-inj-tac.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
505
diff
changeset
|
982 |
| Const (@{const_name "op ="},_) $ |
8c7597b19f0e
First version of the deterministic rep-abs-inj-tac.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
505
diff
changeset
|
983 |
(Const(@{const_name Bex},_) $ (Const (@{const_name Respects}, _) $ _) $ _) $ |
8c7597b19f0e
First version of the deterministic rep-abs-inj-tac.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
505
diff
changeset
|
984 |
(Const(@{const_name Bex},_) $ (Const (@{const_name Respects}, _) $ _) $ _) |
8c7597b19f0e
First version of the deterministic rep-abs-inj-tac.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
505
diff
changeset
|
985 |
=> rtac @{thm bex_rsp} THEN' dtac @{thm QT_ex} |
8c7597b19f0e
First version of the deterministic rep-abs-inj-tac.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
505
diff
changeset
|
986 |
| (Const (@{const_name FUN_REL}, _) $ _ $ _) $ |
8c7597b19f0e
First version of the deterministic rep-abs-inj-tac.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
505
diff
changeset
|
987 |
(Const(@{const_name Bex},_) $ (Const (@{const_name Respects}, _) $ _) $ _) $ |
8c7597b19f0e
First version of the deterministic rep-abs-inj-tac.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
505
diff
changeset
|
988 |
(Const(@{const_name Bex},_) $ (Const (@{const_name Respects}, _) $ _) $ _) |
8c7597b19f0e
First version of the deterministic rep-abs-inj-tac.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
505
diff
changeset
|
989 |
=> rtac @{thm FUN_REL_I} THEN' quot_true_tac ctxt unlam |
8c7597b19f0e
First version of the deterministic rep-abs-inj-tac.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
505
diff
changeset
|
990 |
| Const (@{const_name "op ="},_) $ _ $ _ => |
8c7597b19f0e
First version of the deterministic rep-abs-inj-tac.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
505
diff
changeset
|
991 |
rtac @{thm refl} ORELSE' |
8c7597b19f0e
First version of the deterministic rep-abs-inj-tac.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
505
diff
changeset
|
992 |
(resolve_tac trans2 THEN' RANGE [ |
8c7597b19f0e
First version of the deterministic rep-abs-inj-tac.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
505
diff
changeset
|
993 |
quot_true_tac ctxt (fst o dest_bcomb), quot_true_tac ctxt (snd o dest_bcomb)]) |
8c7597b19f0e
First version of the deterministic rep-abs-inj-tac.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
505
diff
changeset
|
994 |
| _ $ _ $ _ => |
515
b00a9b58264d
Fixes after big merge.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
514
diff
changeset
|
995 |
instantiate_tac @{thm REP_ABS_RSP} ctxt THEN' RANGE [SOLVES' (quotient_tac ctxt)] |
512
8c7597b19f0e
First version of the deterministic rep-abs-inj-tac.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
505
diff
changeset
|
996 |
) i) |
8c7597b19f0e
First version of the deterministic rep-abs-inj-tac.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
505
diff
changeset
|
997 |
*} |
8c7597b19f0e
First version of the deterministic rep-abs-inj-tac.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
505
diff
changeset
|
998 |
|
8c7597b19f0e
First version of the deterministic rep-abs-inj-tac.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
505
diff
changeset
|
999 |
ML {* |
515
b00a9b58264d
Fixes after big merge.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
514
diff
changeset
|
1000 |
fun inj_repabs_tac' ctxt rel_refl trans2 = |
512
8c7597b19f0e
First version of the deterministic rep-abs-inj-tac.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
505
diff
changeset
|
1001 |
(FIRST' [ |
515
b00a9b58264d
Fixes after big merge.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
514
diff
changeset
|
1002 |
inj_repabs_tac_fast ctxt trans2, |
512
8c7597b19f0e
First version of the deterministic rep-abs-inj-tac.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
505
diff
changeset
|
1003 |
NDT ctxt "A" (APPLY_RSP_TAC ctxt THEN' |
515
b00a9b58264d
Fixes after big merge.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
514
diff
changeset
|
1004 |
(RANGE [SOLVES' (quotient_tac ctxt), SOLVES' (quotient_tac ctxt), |
512
8c7597b19f0e
First version of the deterministic rep-abs-inj-tac.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
505
diff
changeset
|
1005 |
quot_true_tac ctxt (fst o dest_comb), quot_true_tac ctxt (snd o dest_comb)])), |
8c7597b19f0e
First version of the deterministic rep-abs-inj-tac.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
505
diff
changeset
|
1006 |
NDT ctxt "B" (Cong_Tac.cong_tac @{thm cong} THEN' |
8c7597b19f0e
First version of the deterministic rep-abs-inj-tac.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
505
diff
changeset
|
1007 |
(RANGE [quot_true_tac ctxt (fst o dest_comb), quot_true_tac ctxt (snd o dest_comb)])), |
8c7597b19f0e
First version of the deterministic rep-abs-inj-tac.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
505
diff
changeset
|
1008 |
NDT ctxt "C" (rtac @{thm ext} THEN' quot_true_tac ctxt unlam), |
8c7597b19f0e
First version of the deterministic rep-abs-inj-tac.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
505
diff
changeset
|
1009 |
NDT ctxt "E" (atac), |
8c7597b19f0e
First version of the deterministic rep-abs-inj-tac.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
505
diff
changeset
|
1010 |
NDT ctxt "D" (resolve_tac rel_refl), |
515
b00a9b58264d
Fixes after big merge.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
514
diff
changeset
|
1011 |
NDT ctxt "7" (resolve_tac (rsp_rules_get ctxt)) |
b00a9b58264d
Fixes after big merge.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
514
diff
changeset
|
1012 |
(* NDT ctxt "H" (CHANGED o (asm_full_simp_tac ((Simplifier.context ctxt empty_ss) addsimps @{thms FUN_REL_EQ LIST_REL_EQ})))*) |
b00a9b58264d
Fixes after big merge.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
514
diff
changeset
|
1013 |
]) |
512
8c7597b19f0e
First version of the deterministic rep-abs-inj-tac.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
505
diff
changeset
|
1014 |
*} |
8c7597b19f0e
First version of the deterministic rep-abs-inj-tac.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
505
diff
changeset
|
1015 |
|
8c7597b19f0e
First version of the deterministic rep-abs-inj-tac.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
505
diff
changeset
|
1016 |
ML {* |
515
b00a9b58264d
Fixes after big merge.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
514
diff
changeset
|
1017 |
fun all_inj_repabs_tac' ctxt rel_refl trans2 = |
b00a9b58264d
Fixes after big merge.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
514
diff
changeset
|
1018 |
REPEAT_ALL_NEW (inj_repabs_tac' ctxt rel_refl trans2) |
512
8c7597b19f0e
First version of the deterministic rep-abs-inj-tac.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
505
diff
changeset
|
1019 |
*} |
8c7597b19f0e
First version of the deterministic rep-abs-inj-tac.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
505
diff
changeset
|
1020 |
|
8c7597b19f0e
First version of the deterministic rep-abs-inj-tac.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
505
diff
changeset
|
1021 |
|
8c7597b19f0e
First version of the deterministic rep-abs-inj-tac.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
505
diff
changeset
|
1022 |
|
399 | 1023 |
section {* Cleaning of the theorem *} |
387 | 1024 |
|
389 | 1025 |
|
462
0911d3aabf47
clean_tac rewrites the definitions the other way
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
459
diff
changeset
|
1026 |
(* TODO: This is slow *) |
514
6b3be083229c
The big merge; probably non-functional.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
|
1027 |
(* |
389 | 1028 |
ML {* |
506
91c374abde06
removed quot argument...not all examples work anymore
Christian Urban <urbanc@in.tum.de>
parents:
505
diff
changeset
|
1029 |
fun allex_prs_tac ctxt = |
91c374abde06
removed quot argument...not all examples work anymore
Christian Urban <urbanc@in.tum.de>
parents:
505
diff
changeset
|
1030 |
(EqSubst.eqsubst_tac ctxt [0] @{thms all_prs ex_prs}) THEN' (quotient_tac ctxt) |
387 | 1031 |
*} |
514
6b3be083229c
The big merge; probably non-functional.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
|
1032 |
*) |
387 | 1033 |
|
1034 |
ML {* |
|
440
0af649448a11
Moved fast instantiation to QuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
436
diff
changeset
|
1035 |
fun make_inst lhs t = |
0af649448a11
Moved fast instantiation to QuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
436
diff
changeset
|
1036 |
let |
0af649448a11
Moved fast instantiation to QuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
436
diff
changeset
|
1037 |
val _ $ (Abs (_, _, (f as Var (_, Type ("fun", [T, _]))) $ u)) = lhs; |
0af649448a11
Moved fast instantiation to QuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
436
diff
changeset
|
1038 |
val _ $ (Abs (_, _, g)) = t; |
0af649448a11
Moved fast instantiation to QuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
436
diff
changeset
|
1039 |
fun mk_abs i t = |
0af649448a11
Moved fast instantiation to QuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
436
diff
changeset
|
1040 |
if incr_boundvars i u aconv t then Bound i |
0af649448a11
Moved fast instantiation to QuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
436
diff
changeset
|
1041 |
else (case t of |
0af649448a11
Moved fast instantiation to QuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
436
diff
changeset
|
1042 |
t1 $ t2 => mk_abs i t1 $ mk_abs i t2 |
469 | 1043 |
| Abs (s, T, t') => Abs (s, T, mk_abs (i + 1) t') |
440
0af649448a11
Moved fast instantiation to QuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
436
diff
changeset
|
1044 |
| Bound j => if i = j then error "make_inst" else t |
0af649448a11
Moved fast instantiation to QuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
436
diff
changeset
|
1045 |
| _ => t); |
0af649448a11
Moved fast instantiation to QuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
436
diff
changeset
|
1046 |
in (f, Abs ("x", T, mk_abs 0 g)) end; |
490
5214ec75add4
simplified lambda_prs_conv
Christian Urban <urbanc@in.tum.de>
parents:
489
diff
changeset
|
1047 |
*} |
440
0af649448a11
Moved fast instantiation to QuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
436
diff
changeset
|
1048 |
|
492
6793659d38d6
Included all_prs and ex_prs in the lambda_prs conversion.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
491
diff
changeset
|
1049 |
(* It proves the QUOTIENT assumptions by calling quotient_tac *) |
490
5214ec75add4
simplified lambda_prs_conv
Christian Urban <urbanc@in.tum.de>
parents:
489
diff
changeset
|
1050 |
ML {* |
506
91c374abde06
removed quot argument...not all examples work anymore
Christian Urban <urbanc@in.tum.de>
parents:
505
diff
changeset
|
1051 |
fun solve_quotient_assum i ctxt thm = |
492
6793659d38d6
Included all_prs and ex_prs in the lambda_prs conversion.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
491
diff
changeset
|
1052 |
let |
6793659d38d6
Included all_prs and ex_prs in the lambda_prs conversion.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
491
diff
changeset
|
1053 |
val tac = |
6793659d38d6
Included all_prs and ex_prs in the lambda_prs conversion.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
491
diff
changeset
|
1054 |
(compose_tac (false, thm, i)) THEN_ALL_NEW |
506
91c374abde06
removed quot argument...not all examples work anymore
Christian Urban <urbanc@in.tum.de>
parents:
505
diff
changeset
|
1055 |
(quotient_tac ctxt); |
492
6793659d38d6
Included all_prs and ex_prs in the lambda_prs conversion.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
491
diff
changeset
|
1056 |
val gc = Drule.strip_imp_concl (cprop_of thm); |
6793659d38d6
Included all_prs and ex_prs in the lambda_prs conversion.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
491
diff
changeset
|
1057 |
in |
6793659d38d6
Included all_prs and ex_prs in the lambda_prs conversion.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
491
diff
changeset
|
1058 |
Goal.prove_internal [] gc (fn _ => tac 1) |
6793659d38d6
Included all_prs and ex_prs in the lambda_prs conversion.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
491
diff
changeset
|
1059 |
end |
6793659d38d6
Included all_prs and ex_prs in the lambda_prs conversion.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
491
diff
changeset
|
1060 |
handle _ => error "solve_quotient_assum" |
6793659d38d6
Included all_prs and ex_prs in the lambda_prs conversion.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
491
diff
changeset
|
1061 |
*} |
6793659d38d6
Included all_prs and ex_prs in the lambda_prs conversion.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
491
diff
changeset
|
1062 |
|
6793659d38d6
Included all_prs and ex_prs in the lambda_prs conversion.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
491
diff
changeset
|
1063 |
ML {* |
506
91c374abde06
removed quot argument...not all examples work anymore
Christian Urban <urbanc@in.tum.de>
parents:
505
diff
changeset
|
1064 |
fun lambda_allex_prs_simple_conv ctxt ctrm = |
492
6793659d38d6
Included all_prs and ex_prs in the lambda_prs conversion.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
491
diff
changeset
|
1065 |
case (term_of ctrm) of |
6793659d38d6
Included all_prs and ex_prs in the lambda_prs conversion.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
491
diff
changeset
|
1066 |
((Const (@{const_name fun_map}, _) $ r1 $ a2) $ (Abs _)) => |
387 | 1067 |
let |
1068 |
val (_, [ty_b, ty_a]) = dest_Type (fastype_of r1); |
|
1069 |
val (_, [ty_c, ty_d]) = dest_Type (fastype_of a2); |
|
1070 |
val thy = ProofContext.theory_of ctxt; |
|
1071 |
val [cty_a, cty_b, cty_c, cty_d] = map (ctyp_of thy) [ty_a, ty_b, ty_c, ty_d] |
|
1072 |
val tyinst = [SOME cty_a, SOME cty_b, SOME cty_c, SOME cty_d]; |
|
1073 |
val tinst = [NONE, NONE, SOME (cterm_of thy r1), NONE, SOME (cterm_of thy a2)] |
|
1074 |
val lpi = Drule.instantiate' tyinst tinst @{thm LAMBDA_PRS}; |
|
506
91c374abde06
removed quot argument...not all examples work anymore
Christian Urban <urbanc@in.tum.de>
parents:
505
diff
changeset
|
1075 |
val te = @{thm eq_reflection} OF [solve_quotient_assum 2 ctxt lpi] |
415
5a9bdf81672d
More cleaning in QuotMain, identity handling.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
413
diff
changeset
|
1076 |
val ts = MetaSimplifier.rewrite_rule @{thms id_simps} te |
440
0af649448a11
Moved fast instantiation to QuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
436
diff
changeset
|
1077 |
val tl = Thm.lhs_of ts; |
0af649448a11
Moved fast instantiation to QuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
436
diff
changeset
|
1078 |
val (insp, inst) = make_inst (term_of tl) (term_of ctrm); |
0af649448a11
Moved fast instantiation to QuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
436
diff
changeset
|
1079 |
val ti = Drule.instantiate ([], [(cterm_of thy insp, cterm_of thy inst)]) ts; |
492
6793659d38d6
Included all_prs and ex_prs in the lambda_prs conversion.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
491
diff
changeset
|
1080 |
in |
6793659d38d6
Included all_prs and ex_prs in the lambda_prs conversion.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
491
diff
changeset
|
1081 |
Conv.rewr_conv ti ctrm |
6793659d38d6
Included all_prs and ex_prs in the lambda_prs conversion.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
491
diff
changeset
|
1082 |
end |
6793659d38d6
Included all_prs and ex_prs in the lambda_prs conversion.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
491
diff
changeset
|
1083 |
| (Const (@{const_name Ball}, _) $ (Const (@{const_name Respects}, _) $ R) $ |
6793659d38d6
Included all_prs and ex_prs in the lambda_prs conversion.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
491
diff
changeset
|
1084 |
(((Const (@{const_name fun_map}, _) $ absf $ (Const (@{const_name id}, _)))) $ f)) => |
6793659d38d6
Included all_prs and ex_prs in the lambda_prs conversion.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
491
diff
changeset
|
1085 |
let |
6793659d38d6
Included all_prs and ex_prs in the lambda_prs conversion.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
491
diff
changeset
|
1086 |
val (_, [ty_a, ty_b]) = dest_Type (fastype_of absf); |
6793659d38d6
Included all_prs and ex_prs in the lambda_prs conversion.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
491
diff
changeset
|
1087 |
val thy = ProofContext.theory_of ctxt; |
6793659d38d6
Included all_prs and ex_prs in the lambda_prs conversion.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
491
diff
changeset
|
1088 |
val (cty_a, cty_b) = (ctyp_of thy ty_a, ctyp_of thy ty_b); |
6793659d38d6
Included all_prs and ex_prs in the lambda_prs conversion.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
491
diff
changeset
|
1089 |
val tyinst = [SOME cty_a, SOME cty_b]; |
6793659d38d6
Included all_prs and ex_prs in the lambda_prs conversion.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
491
diff
changeset
|
1090 |
val tinst = [SOME (cterm_of thy R), SOME (cterm_of thy absf), NONE, SOME (cterm_of thy f)]; |
6793659d38d6
Included all_prs and ex_prs in the lambda_prs conversion.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
491
diff
changeset
|
1091 |
val thm = Drule.instantiate' tyinst tinst @{thm all_prs}; |
506
91c374abde06
removed quot argument...not all examples work anymore
Christian Urban <urbanc@in.tum.de>
parents:
505
diff
changeset
|
1092 |
val ti = @{thm eq_reflection} OF [solve_quotient_assum 1 ctxt thm]; |
492
6793659d38d6
Included all_prs and ex_prs in the lambda_prs conversion.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
491
diff
changeset
|
1093 |
in |
6793659d38d6
Included all_prs and ex_prs in the lambda_prs conversion.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
491
diff
changeset
|
1094 |
Conv.rewr_conv ti ctrm |
6793659d38d6
Included all_prs and ex_prs in the lambda_prs conversion.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
491
diff
changeset
|
1095 |
end |
6793659d38d6
Included all_prs and ex_prs in the lambda_prs conversion.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
491
diff
changeset
|
1096 |
| (Const (@{const_name Bex}, _) $ (Const (@{const_name Respects}, _) $ R) $ |
6793659d38d6
Included all_prs and ex_prs in the lambda_prs conversion.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
491
diff
changeset
|
1097 |
(((Const (@{const_name fun_map}, _) $ absf $ (Const (@{const_name id}, _)))) $ f)) => |
6793659d38d6
Included all_prs and ex_prs in the lambda_prs conversion.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
491
diff
changeset
|
1098 |
let |
6793659d38d6
Included all_prs and ex_prs in the lambda_prs conversion.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
491
diff
changeset
|
1099 |
val (_, [ty_a, ty_b]) = dest_Type (fastype_of absf); |
6793659d38d6
Included all_prs and ex_prs in the lambda_prs conversion.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
491
diff
changeset
|
1100 |
val thy = ProofContext.theory_of ctxt; |
6793659d38d6
Included all_prs and ex_prs in the lambda_prs conversion.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
491
diff
changeset
|
1101 |
val (cty_a, cty_b) = (ctyp_of thy ty_a, ctyp_of thy ty_b); |
6793659d38d6
Included all_prs and ex_prs in the lambda_prs conversion.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
491
diff
changeset
|
1102 |
val tyinst = [SOME cty_a, SOME cty_b]; |
6793659d38d6
Included all_prs and ex_prs in the lambda_prs conversion.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
491
diff
changeset
|
1103 |
val tinst = [SOME (cterm_of thy R), SOME (cterm_of thy absf), NONE, SOME (cterm_of thy f)]; |
6793659d38d6
Included all_prs and ex_prs in the lambda_prs conversion.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
491
diff
changeset
|
1104 |
val thm = Drule.instantiate' tyinst tinst @{thm ex_prs}; |
506
91c374abde06
removed quot argument...not all examples work anymore
Christian Urban <urbanc@in.tum.de>
parents:
505
diff
changeset
|
1105 |
val ti = @{thm eq_reflection} OF [solve_quotient_assum 1 ctxt thm]; |
387 | 1106 |
in |
1107 |
Conv.rewr_conv ti ctrm |
|
1108 |
end |
|
490
5214ec75add4
simplified lambda_prs_conv
Christian Urban <urbanc@in.tum.de>
parents:
489
diff
changeset
|
1109 |
| _ => Conv.all_conv ctrm |
387 | 1110 |
*} |
1111 |
||
440
0af649448a11
Moved fast instantiation to QuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
436
diff
changeset
|
1112 |
(* quot stands for the QUOTIENT theorems: *) |
387 | 1113 |
(* could be potentially all of them *) |
1114 |
ML {* |
|
506
91c374abde06
removed quot argument...not all examples work anymore
Christian Urban <urbanc@in.tum.de>
parents:
505
diff
changeset
|
1115 |
val lambda_allex_prs_conv = |
91c374abde06
removed quot argument...not all examples work anymore
Christian Urban <urbanc@in.tum.de>
parents:
505
diff
changeset
|
1116 |
More_Conv.top_conv lambda_allex_prs_simple_conv |
387 | 1117 |
*} |
1118 |
||
1119 |
ML {* |
|
506
91c374abde06
removed quot argument...not all examples work anymore
Christian Urban <urbanc@in.tum.de>
parents:
505
diff
changeset
|
1120 |
fun lambda_allex_prs_tac ctxt = CONVERSION (lambda_allex_prs_conv ctxt) |
387 | 1121 |
*} |
1122 |
||
457 | 1123 |
(* |
465 | 1124 |
Cleaning the theorem consists of 6 kinds of rewrites. |
1125 |
The first two need to be done before fun_map is unfolded |
|
457 | 1126 |
|
1127 |
- LAMBDA_PRS: |
|
469 | 1128 |
(Rep1 ---> Abs2) (\<lambda>x. Rep2 (f (Abs1 x))) ----> f |
1129 |
||
465 | 1130 |
- FORALL_PRS (and the same for exists: EXISTS_PRS) |
469 | 1131 |
\<forall>x\<in>Respects R. (abs ---> id) f ----> \<forall>x. f |
1132 |
||
457 | 1133 |
- Rewriting with definitions from the argument defs |
469 | 1134 |
NewConst ----> (rep ---> abs) oldConst |
1135 |
||
457 | 1136 |
- QUOTIENT_REL_REP: |
469 | 1137 |
Rel (Rep x) (Rep y) ----> x = y |
1138 |
||
465 | 1139 |
- ABS_REP |
469 | 1140 |
Abs (Rep x) ----> x |
1141 |
||
465 | 1142 |
- id_simps; fun_map.simps |
457 | 1143 |
|
1144 |
The first one is implemented as a conversion (fast). |
|
465 | 1145 |
The second one is an EqSubst (slow). |
1146 |
The rest are a simp_tac and are fast. |
|
457 | 1147 |
*) |
469 | 1148 |
|
387 | 1149 |
ML {* |
506
91c374abde06
removed quot argument...not all examples work anymore
Christian Urban <urbanc@in.tum.de>
parents:
505
diff
changeset
|
1150 |
fun clean_tac lthy = |
387 | 1151 |
let |
498
e7bb6bbe7576
defs used automatically by clean_tac
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
495
diff
changeset
|
1152 |
val thy = ProofContext.theory_of lthy; |
506
91c374abde06
removed quot argument...not all examples work anymore
Christian Urban <urbanc@in.tum.de>
parents:
505
diff
changeset
|
1153 |
val quotients = quotient_rules_get lthy |
501
375e28eedee7
Reintroduced varifyT; we still need it for permutation definition.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
499
diff
changeset
|
1154 |
val defs = map (Thm.varifyT o #def) (qconsts_dest thy); |
506
91c374abde06
removed quot argument...not all examples work anymore
Christian Urban <urbanc@in.tum.de>
parents:
505
diff
changeset
|
1155 |
val absrep = map (fn x => @{thm QUOTIENT_ABS_REP} OF [x]) quotients |
462
0911d3aabf47
clean_tac rewrites the definitions the other way
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
459
diff
changeset
|
1156 |
val meta_absrep = map (fn x => @{thm eq_reflection} OF [x]) absrep; |
506
91c374abde06
removed quot argument...not all examples work anymore
Christian Urban <urbanc@in.tum.de>
parents:
505
diff
changeset
|
1157 |
val reps_same = map (fn x => @{thm QUOTIENT_REL_REP} OF [x]) quotients |
440
0af649448a11
Moved fast instantiation to QuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
436
diff
changeset
|
1158 |
val meta_reps_same = map (fn x => @{thm eq_reflection} OF [x]) reps_same |
462
0911d3aabf47
clean_tac rewrites the definitions the other way
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
459
diff
changeset
|
1159 |
val simp_ctxt = (Simplifier.context lthy empty_ss) addsimps |
0911d3aabf47
clean_tac rewrites the definitions the other way
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
459
diff
changeset
|
1160 |
(@{thm eq_reflection[OF fun_map.simps]} :: @{thms id_simps} @ meta_absrep @ meta_reps_same @ defs) |
387 | 1161 |
in |
490
5214ec75add4
simplified lambda_prs_conv
Christian Urban <urbanc@in.tum.de>
parents:
489
diff
changeset
|
1162 |
EVERY' [ |
5214ec75add4
simplified lambda_prs_conv
Christian Urban <urbanc@in.tum.de>
parents:
489
diff
changeset
|
1163 |
(* (Rep1 ---> Abs2) (\<lambda>x. Rep2 (f (Abs1 x))) ----> f *) |
492
6793659d38d6
Included all_prs and ex_prs in the lambda_prs conversion.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
491
diff
changeset
|
1164 |
(* \<forall>x\<in>Respects R. (abs ---> id) f ----> \<forall>x. f *) |
506
91c374abde06
removed quot argument...not all examples work anymore
Christian Urban <urbanc@in.tum.de>
parents:
505
diff
changeset
|
1165 |
NDT lthy "a" (TRY o lambda_allex_prs_tac lthy), |
490
5214ec75add4
simplified lambda_prs_conv
Christian Urban <urbanc@in.tum.de>
parents:
489
diff
changeset
|
1166 |
|
5214ec75add4
simplified lambda_prs_conv
Christian Urban <urbanc@in.tum.de>
parents:
489
diff
changeset
|
1167 |
(* NewConst ----> (rep ---> abs) oldConst *) |
5214ec75add4
simplified lambda_prs_conv
Christian Urban <urbanc@in.tum.de>
parents:
489
diff
changeset
|
1168 |
(* Abs (Rep x) ----> x *) |
5214ec75add4
simplified lambda_prs_conv
Christian Urban <urbanc@in.tum.de>
parents:
489
diff
changeset
|
1169 |
(* id_simps; fun_map.simps *) |
492
6793659d38d6
Included all_prs and ex_prs in the lambda_prs conversion.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
491
diff
changeset
|
1170 |
NDT lthy "c" (TRY o simp_tac simp_ctxt), |
490
5214ec75add4
simplified lambda_prs_conv
Christian Urban <urbanc@in.tum.de>
parents:
489
diff
changeset
|
1171 |
|
5214ec75add4
simplified lambda_prs_conv
Christian Urban <urbanc@in.tum.de>
parents:
489
diff
changeset
|
1172 |
(* final step *) |
492
6793659d38d6
Included all_prs and ex_prs in the lambda_prs conversion.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
491
diff
changeset
|
1173 |
NDT lthy "d" (TRY o rtac refl) |
490
5214ec75add4
simplified lambda_prs_conv
Christian Urban <urbanc@in.tum.de>
parents:
489
diff
changeset
|
1174 |
] |
387 | 1175 |
end |
1176 |
*} |
|
381
991db758a72d
More moving from QuotMain to UnusedQuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
379
diff
changeset
|
1177 |
|
404 | 1178 |
section {* Genralisation of free variables in a goal *} |
347
7e82493c6253
Finished temporary goal-directed lift_theorem wrapper.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
346
diff
changeset
|
1179 |
|
7e82493c6253
Finished temporary goal-directed lift_theorem wrapper.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
346
diff
changeset
|
1180 |
ML {* |
374
980fdf92a834
fixed the problem with generalising variables; at the moment it is quite a hack
Christian Urban <urbanc@in.tum.de>
parents:
372
diff
changeset
|
1181 |
fun inst_spec ctrm = |
411
c10e314761fa
simplified gen_frees_tac and properly named abstracted variables
Christian Urban <urbanc@in.tum.de>
parents:
410
diff
changeset
|
1182 |
Drule.instantiate' [SOME (ctyp_of_term ctrm)] [NONE, SOME ctrm] @{thm spec} |
374
980fdf92a834
fixed the problem with generalising variables; at the moment it is quite a hack
Christian Urban <urbanc@in.tum.de>
parents:
372
diff
changeset
|
1183 |
|
980fdf92a834
fixed the problem with generalising variables; at the moment it is quite a hack
Christian Urban <urbanc@in.tum.de>
parents:
372
diff
changeset
|
1184 |
fun inst_spec_tac ctrms = |
980fdf92a834
fixed the problem with generalising variables; at the moment it is quite a hack
Christian Urban <urbanc@in.tum.de>
parents:
372
diff
changeset
|
1185 |
EVERY' (map (dtac o inst_spec) ctrms) |
980fdf92a834
fixed the problem with generalising variables; at the moment it is quite a hack
Christian Urban <urbanc@in.tum.de>
parents:
372
diff
changeset
|
1186 |
|
412 | 1187 |
fun all_list xs trm = |
411
c10e314761fa
simplified gen_frees_tac and properly named abstracted variables
Christian Urban <urbanc@in.tum.de>
parents:
410
diff
changeset
|
1188 |
fold (fn (x, T) => fn t' => HOLogic.mk_all (x, T, t')) xs trm |
c10e314761fa
simplified gen_frees_tac and properly named abstracted variables
Christian Urban <urbanc@in.tum.de>
parents:
410
diff
changeset
|
1189 |
|
c10e314761fa
simplified gen_frees_tac and properly named abstracted variables
Christian Urban <urbanc@in.tum.de>
parents:
410
diff
changeset
|
1190 |
fun apply_under_Trueprop f = |
c10e314761fa
simplified gen_frees_tac and properly named abstracted variables
Christian Urban <urbanc@in.tum.de>
parents:
410
diff
changeset
|
1191 |
HOLogic.dest_Trueprop #> f #> HOLogic.mk_Trueprop |
362 | 1192 |
|
374
980fdf92a834
fixed the problem with generalising variables; at the moment it is quite a hack
Christian Urban <urbanc@in.tum.de>
parents:
372
diff
changeset
|
1193 |
fun gen_frees_tac ctxt = |
980fdf92a834
fixed the problem with generalising variables; at the moment it is quite a hack
Christian Urban <urbanc@in.tum.de>
parents:
372
diff
changeset
|
1194 |
SUBGOAL (fn (concl, i) => |
980fdf92a834
fixed the problem with generalising variables; at the moment it is quite a hack
Christian Urban <urbanc@in.tum.de>
parents:
372
diff
changeset
|
1195 |
let |
980fdf92a834
fixed the problem with generalising variables; at the moment it is quite a hack
Christian Urban <urbanc@in.tum.de>
parents:
372
diff
changeset
|
1196 |
val thy = ProofContext.theory_of ctxt |
411
c10e314761fa
simplified gen_frees_tac and properly named abstracted variables
Christian Urban <urbanc@in.tum.de>
parents:
410
diff
changeset
|
1197 |
val vrs = Term.add_frees concl [] |
374
980fdf92a834
fixed the problem with generalising variables; at the moment it is quite a hack
Christian Urban <urbanc@in.tum.de>
parents:
372
diff
changeset
|
1198 |
val cvrs = map (cterm_of thy o Free) vrs |
412 | 1199 |
val concl' = apply_under_Trueprop (all_list vrs) concl |
411
c10e314761fa
simplified gen_frees_tac and properly named abstracted variables
Christian Urban <urbanc@in.tum.de>
parents:
410
diff
changeset
|
1200 |
val goal = Logic.mk_implies (concl', concl) |
374
980fdf92a834
fixed the problem with generalising variables; at the moment it is quite a hack
Christian Urban <urbanc@in.tum.de>
parents:
372
diff
changeset
|
1201 |
val rule = Goal.prove ctxt [] [] goal |
411
c10e314761fa
simplified gen_frees_tac and properly named abstracted variables
Christian Urban <urbanc@in.tum.de>
parents:
410
diff
changeset
|
1202 |
(K (EVERY1 [inst_spec_tac (rev cvrs), atac])) |
374
980fdf92a834
fixed the problem with generalising variables; at the moment it is quite a hack
Christian Urban <urbanc@in.tum.de>
parents:
372
diff
changeset
|
1203 |
in |
980fdf92a834
fixed the problem with generalising variables; at the moment it is quite a hack
Christian Urban <urbanc@in.tum.de>
parents:
372
diff
changeset
|
1204 |
rtac rule i |
980fdf92a834
fixed the problem with generalising variables; at the moment it is quite a hack
Christian Urban <urbanc@in.tum.de>
parents:
372
diff
changeset
|
1205 |
end) |
362 | 1206 |
*} |
1207 |
||
402
dd64cca9265c
recommited changes of comments
Christian Urban <urbanc@in.tum.de>
parents:
401
diff
changeset
|
1208 |
section {* General outline of the lifting procedure *} |
dd64cca9265c
recommited changes of comments
Christian Urban <urbanc@in.tum.de>
parents:
401
diff
changeset
|
1209 |
|
383
73a3670fb00e
comments tuning and slight reordering
Christian Urban <urbanc@in.tum.de>
parents:
382
diff
changeset
|
1210 |
(* - A is the original raw theorem *) |
73a3670fb00e
comments tuning and slight reordering
Christian Urban <urbanc@in.tum.de>
parents:
382
diff
changeset
|
1211 |
(* - B is the regularized theorem *) |
73a3670fb00e
comments tuning and slight reordering
Christian Urban <urbanc@in.tum.de>
parents:
382
diff
changeset
|
1212 |
(* - C is the rep/abs injected version of B *) |
73a3670fb00e
comments tuning and slight reordering
Christian Urban <urbanc@in.tum.de>
parents:
382
diff
changeset
|
1213 |
(* - D is the lifted theorem *) |
73a3670fb00e
comments tuning and slight reordering
Christian Urban <urbanc@in.tum.de>
parents:
382
diff
changeset
|
1214 |
(* *) |
73a3670fb00e
comments tuning and slight reordering
Christian Urban <urbanc@in.tum.de>
parents:
382
diff
changeset
|
1215 |
(* - b is the regularization step *) |
73a3670fb00e
comments tuning and slight reordering
Christian Urban <urbanc@in.tum.de>
parents:
382
diff
changeset
|
1216 |
(* - c is the rep/abs injection step *) |
73a3670fb00e
comments tuning and slight reordering
Christian Urban <urbanc@in.tum.de>
parents:
382
diff
changeset
|
1217 |
(* - d is the cleaning part *) |
73a3670fb00e
comments tuning and slight reordering
Christian Urban <urbanc@in.tum.de>
parents:
382
diff
changeset
|
1218 |
|
413 | 1219 |
lemma lifting_procedure: |
360
07fb696efa3d
Moved cleaning to QuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
359
diff
changeset
|
1220 |
assumes a: "A" |
07fb696efa3d
Moved cleaning to QuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
359
diff
changeset
|
1221 |
and b: "A \<Longrightarrow> B" |
07fb696efa3d
Moved cleaning to QuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
359
diff
changeset
|
1222 |
and c: "B = C" |
07fb696efa3d
Moved cleaning to QuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
359
diff
changeset
|
1223 |
and d: "C = D" |
07fb696efa3d
Moved cleaning to QuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
359
diff
changeset
|
1224 |
shows "D" |
07fb696efa3d
Moved cleaning to QuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
359
diff
changeset
|
1225 |
using a b c d |
07fb696efa3d
Moved cleaning to QuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
359
diff
changeset
|
1226 |
by simp |
07fb696efa3d
Moved cleaning to QuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
359
diff
changeset
|
1227 |
|
374
980fdf92a834
fixed the problem with generalising variables; at the moment it is quite a hack
Christian Urban <urbanc@in.tum.de>
parents:
372
diff
changeset
|
1228 |
ML {* |
412 | 1229 |
fun lift_match_error ctxt fun_str rtrm qtrm = |
374
980fdf92a834
fixed the problem with generalising variables; at the moment it is quite a hack
Christian Urban <urbanc@in.tum.de>
parents:
372
diff
changeset
|
1230 |
let |
980fdf92a834
fixed the problem with generalising variables; at the moment it is quite a hack
Christian Urban <urbanc@in.tum.de>
parents:
372
diff
changeset
|
1231 |
val rtrm_str = Syntax.string_of_term ctxt rtrm |
980fdf92a834
fixed the problem with generalising variables; at the moment it is quite a hack
Christian Urban <urbanc@in.tum.de>
parents:
372
diff
changeset
|
1232 |
val qtrm_str = Syntax.string_of_term ctxt qtrm |
388 | 1233 |
val msg = [enclose "[" "]" fun_str, "The quotient theorem\n", qtrm_str, |
1234 |
"and the lifted theorem\n", rtrm_str, "do not match"] |
|
374
980fdf92a834
fixed the problem with generalising variables; at the moment it is quite a hack
Christian Urban <urbanc@in.tum.de>
parents:
372
diff
changeset
|
1235 |
in |
980fdf92a834
fixed the problem with generalising variables; at the moment it is quite a hack
Christian Urban <urbanc@in.tum.de>
parents:
372
diff
changeset
|
1236 |
error (space_implode " " msg) |
980fdf92a834
fixed the problem with generalising variables; at the moment it is quite a hack
Christian Urban <urbanc@in.tum.de>
parents:
372
diff
changeset
|
1237 |
end |
980fdf92a834
fixed the problem with generalising variables; at the moment it is quite a hack
Christian Urban <urbanc@in.tum.de>
parents:
372
diff
changeset
|
1238 |
*} |
980fdf92a834
fixed the problem with generalising variables; at the moment it is quite a hack
Christian Urban <urbanc@in.tum.de>
parents:
372
diff
changeset
|
1239 |
|
360
07fb696efa3d
Moved cleaning to QuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
359
diff
changeset
|
1240 |
ML {* |
07fb696efa3d
Moved cleaning to QuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
359
diff
changeset
|
1241 |
fun procedure_inst ctxt rtrm qtrm = |
07fb696efa3d
Moved cleaning to QuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
359
diff
changeset
|
1242 |
let |
07fb696efa3d
Moved cleaning to QuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
359
diff
changeset
|
1243 |
val thy = ProofContext.theory_of ctxt |
07fb696efa3d
Moved cleaning to QuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
359
diff
changeset
|
1244 |
val rtrm' = HOLogic.dest_Trueprop rtrm |
07fb696efa3d
Moved cleaning to QuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
359
diff
changeset
|
1245 |
val qtrm' = HOLogic.dest_Trueprop qtrm |
383
73a3670fb00e
comments tuning and slight reordering
Christian Urban <urbanc@in.tum.de>
parents:
382
diff
changeset
|
1246 |
val reg_goal = |
405
8bc7428745ad
renamed REGULARIZE to be regularize
Christian Urban <urbanc@in.tum.de>
parents:
404
diff
changeset
|
1247 |
Syntax.check_term ctxt (regularize_trm ctxt rtrm' qtrm') |
412 | 1248 |
handle (LIFT_MATCH s) => lift_match_error ctxt s rtrm qtrm |
383
73a3670fb00e
comments tuning and slight reordering
Christian Urban <urbanc@in.tum.de>
parents:
382
diff
changeset
|
1249 |
val inj_goal = |
408
1056861b562c
renamed inj_REPABS to inj_repabs_trm
Christian Urban <urbanc@in.tum.de>
parents:
407
diff
changeset
|
1250 |
Syntax.check_term ctxt (inj_repabs_trm ctxt (reg_goal, qtrm')) |
412 | 1251 |
handle (LIFT_MATCH s) => lift_match_error ctxt s rtrm qtrm |
360
07fb696efa3d
Moved cleaning to QuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
359
diff
changeset
|
1252 |
in |
07fb696efa3d
Moved cleaning to QuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
359
diff
changeset
|
1253 |
Drule.instantiate' [] |
07fb696efa3d
Moved cleaning to QuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
359
diff
changeset
|
1254 |
[SOME (cterm_of thy rtrm'), |
07fb696efa3d
Moved cleaning to QuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
359
diff
changeset
|
1255 |
SOME (cterm_of thy reg_goal), |
413 | 1256 |
SOME (cterm_of thy inj_goal)] @{thm lifting_procedure} |
360
07fb696efa3d
Moved cleaning to QuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
359
diff
changeset
|
1257 |
end |
362 | 1258 |
*} |
389 | 1259 |
|
1260 |
(* Left for debugging *) |
|
362 | 1261 |
ML {* |
389 | 1262 |
fun procedure_tac lthy rthm = |
1263 |
ObjectLogic.full_atomize_tac |
|
1264 |
THEN' gen_frees_tac lthy |
|
374
980fdf92a834
fixed the problem with generalising variables; at the moment it is quite a hack
Christian Urban <urbanc@in.tum.de>
parents:
372
diff
changeset
|
1265 |
THEN' Subgoal.FOCUS (fn {context, concl, ...} => |
389 | 1266 |
let |
1267 |
val rthm' = atomize_thm rthm |
|
1268 |
val rule = procedure_inst context (prop_of rthm') (term_of concl) |
|
476
325d6e9a7515
Added tactic for dealing with QUOT_TRUE and introducing QUOT_TRUE.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
475
diff
changeset
|
1269 |
val thm = Drule.instantiate' [] [SOME (snd (Thm.dest_comb concl))] @{thm QUOT_TRUE_i} |
389 | 1270 |
in |
476
325d6e9a7515
Added tactic for dealing with QUOT_TRUE and introducing QUOT_TRUE.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
475
diff
changeset
|
1271 |
EVERY1 [rtac rule, rtac rthm'] THEN RANGE [(fn _ => all_tac), rtac thm] 1 |
412 | 1272 |
end) lthy |
360
07fb696efa3d
Moved cleaning to QuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
359
diff
changeset
|
1273 |
*} |
07fb696efa3d
Moved cleaning to QuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
359
diff
changeset
|
1274 |
|
361 | 1275 |
ML {* |
413 | 1276 |
(* FIXME/TODO should only get as arguments the rthm like procedure_tac *) |
489
2b7b349e470f
deleted now obsolete argument rty everywhere
Christian Urban <urbanc@in.tum.de>
parents:
488
diff
changeset
|
1277 |
|
506
91c374abde06
removed quot argument...not all examples work anymore
Christian Urban <urbanc@in.tum.de>
parents:
505
diff
changeset
|
1278 |
fun lift_tac lthy rthm rel_eqv = |
389 | 1279 |
ObjectLogic.full_atomize_tac |
1280 |
THEN' gen_frees_tac lthy |
|
1281 |
THEN' Subgoal.FOCUS (fn {context, concl, ...} => |
|
1282 |
let |
|
1283 |
val rthm' = atomize_thm rthm |
|
1284 |
val rule = procedure_inst context (prop_of rthm') (term_of concl) |
|
416
3f3927f793d4
Removing arguments of tactics: absrep, rel_refl, reps_same are computed.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
415
diff
changeset
|
1285 |
val rel_refl = map (fn x => @{thm EQUIV_REFL} OF [x]) rel_eqv |
419
b1cd040ff5f7
Simplifying arguments; got rid of trans2_thm.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
416
diff
changeset
|
1286 |
val trans2 = map (fn x => @{thm equiv_trans2} OF [x]) rel_eqv |
476
325d6e9a7515
Added tactic for dealing with QUOT_TRUE and introducing QUOT_TRUE.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
475
diff
changeset
|
1287 |
val thm = Drule.instantiate' [] [SOME (snd (Thm.dest_comb concl))] @{thm QUOT_TRUE_i} |
389 | 1288 |
in |
432
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
1289 |
EVERY1 |
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
1290 |
[rtac rule, |
413 | 1291 |
RANGE [rtac rthm', |
432
9c33c0809733
Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
427
diff
changeset
|
1292 |
regularize_tac lthy rel_eqv, |
514
6b3be083229c
The big merge; probably non-functional.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
|
1293 |
rtac thm THEN' all_inj_repabs_tac' lthy rel_refl trans2, |
506
91c374abde06
removed quot argument...not all examples work anymore
Christian Urban <urbanc@in.tum.de>
parents:
505
diff
changeset
|
1294 |
clean_tac lthy]] |
412 | 1295 |
end) lthy |
361 | 1296 |
*} |
1297 |
||
198
ff4425e000db
Completely cleaned Int.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
197
diff
changeset
|
1298 |
end |
239
02b14a21761a
Cleaning of the interface to lift.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
236
diff
changeset
|
1299 |