0
+ − 1
theory QuotMain
6
+ − 2
imports QuotScript QuotList Prove
544
+ − 3
uses ("quotient_info.ML")
264
+ − 4
("quotient.ML")
277
+ − 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)"
529
+ − 12
assumes equiv: "equivp R"
0
+ − 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
+ − 20
ABS::"'a \<Rightarrow> 'b"
+ − 21
where
0
+ − 22
"ABS x \<equiv> Abs (R x)"
+ − 23
+ − 24
definition
200
+ − 25
REP::"'b \<Rightarrow> 'a"
+ − 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 -
529
+ − 32
have a: "R x x" using equiv by (simp add: equivp_reflp_symp_transp reflp_def)
0
+ − 33
then have "R x (Eps (R x))" by (rule someI)
15
+ − 34
then show "R (Eps (R x)) = R x"
529
+ − 35
using equiv unfolding equivp_def by simp
0
+ − 36
qed
+ − 37
+ − 38
theorem thm10:
24
+ − 39
shows "ABS (REP a) \<equiv> a"
+ − 40
apply (rule eq_reflection)
+ − 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
529
+ − 56
by (simp add: equiv[simplified equivp_def])
0
+ − 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
529
+ − 69
by (simp only: equiv[simplified equivp_def] lem7)
0
+ − 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
529
+ − 77
lemma Quotient:
+ − 78
"Quotient R ABS REP"
+ − 79
apply(unfold Quotient_def)
0
+ − 80
apply(simp add: thm10)
+ − 81
apply(simp add: REP_refl)
+ − 82
apply(subst thm11[symmetric])
529
+ − 83
apply(simp add: equiv[simplified equivp_def])
0
+ − 84
done
+ − 85
21
+ − 86
lemma R_trans:
49
+ − 87
assumes ab: "R a b"
+ − 88
and bc: "R b c"
22
+ − 89
shows "R a c"
21
+ − 90
proof -
529
+ − 91
have tr: "transp R" using equiv equivp_reflp_symp_transp[of R] by simp
21
+ − 92
moreover have ab: "R a b" by fact
+ − 93
moreover have bc: "R b c" by fact
529
+ − 94
ultimately show "R a c" unfolding transp_def by blast
21
+ − 95
qed
+ − 96
+ − 97
lemma R_sym:
49
+ − 98
assumes ab: "R a b"
22
+ − 99
shows "R b a"
21
+ − 100
proof -
529
+ − 101
have re: "symp R" using equiv equivp_reflp_symp_transp[of R] by simp
+ − 102
then show "R b a" using ab unfolding symp_def by blast
21
+ − 103
qed
+ − 104
49
+ − 105
lemma R_trans2:
+ − 106
assumes ac: "R a c"
22
+ − 107
and bd: "R b d"
21
+ − 108
shows "R a b = R c d"
200
+ − 109
using ac bd
+ − 110
by (blast intro: R_trans R_sym)
21
+ − 111
+ − 112
lemma REPS_same:
25
+ − 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"
529
+ − 131
have "reflp R" using equiv equivp_reflp_symp_transp[of R] by simp
+ − 132
then show "R (REP a) (REP b)" unfolding reflp_def using ab by auto
38
+ − 133
qed
+ − 134
then show "R (REP a) (REP b) \<equiv> (a = b)" by simp
21
+ − 135
qed
+ − 136
0
+ − 137
end
+ − 138
+ − 139
section {* type definition for the quotient type *}
+ − 140
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>
diff
changeset
+ − 141
(* the auxiliary data for the quotient types *)
264
+ − 142
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>
diff
changeset
+ − 143
537
+ − 144
declare [[map list = (map, list_rel)]]
185
+ − 145
declare [[map * = (prod_fun, prod_rel)]]
536
+ − 146
declare [[map "fun" = (fun_map, fun_rel)]]
185
+ − 147
537
+ − 148
lemmas [quotient_thm] =
+ − 149
fun_quotient list_quotient
506
+ − 150
555
b460565dbb58
Handling of respects in the fast inj_repabs_tac; includes respects with quotient assumptions.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
+ − 151
lemmas [quotient_rsp] =
566
+ − 152
quot_rel_rsp nil_rsp cons_rsp foldl_rsp
555
b460565dbb58
Handling of respects in the fast inj_repabs_tac; includes respects with quotient assumptions.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
+ − 153
185
+ − 154
ML {* maps_lookup @{theory} "List.list" *}
+ − 155
ML {* maps_lookup @{theory} "*" *}
+ − 156
ML {* maps_lookup @{theory} "fun" *}
174
+ − 157
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>
diff
changeset
+ − 158
4d58c02289ca
simplified the quotient_def code; type of the defined constant must now be given; for-part eliminated
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 159
(* definition of the quotient types *)
277
+ − 160
(* 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>
diff
changeset
+ − 161
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>
diff
changeset
+ − 162
4d58c02289ca
simplified the quotient_def code; type of the defined constant must now be given; for-part eliminated
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 163
277
+ − 164
(* lifting of constants *)
+ − 165
use "quotient_def.ML"
+ − 166
381
+ − 167
(* TODO: Consider defining it with an "if"; sth like:
+ − 168
Babs p m = \<lambda>x. if x \<in> p then m x else undefined
+ − 169
*)
+ − 170
definition
+ − 171
Babs :: "('a \<Rightarrow> bool) \<Rightarrow> ('a \<Rightarrow> 'b) \<Rightarrow> 'a \<Rightarrow> 'b"
+ − 172
where
+ − 173
"(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>
diff
changeset
+ − 174
544
+ − 175
section {* atomize *}
139
+ − 176
381
+ − 177
lemma atomize_eqv[atomize]:
+ − 178
shows "(Trueprop A \<equiv> Trueprop B) \<equiv> (A \<equiv> B)"
139
+ − 179
proof
381
+ − 180
assume "A \<equiv> B"
139
+ − 181
then show "Trueprop A \<equiv> Trueprop B" by unfold
+ − 182
next
+ − 183
assume *: "Trueprop A \<equiv> Trueprop B"
+ − 184
have "A = B"
+ − 185
proof (cases A)
+ − 186
case True
+ − 187
have "A" by fact
+ − 188
then show "A = B" using * by simp
+ − 189
next
+ − 190
case False
+ − 191
have "\<not>A" by fact
+ − 192
then show "A = B" using * by auto
+ − 193
qed
+ − 194
then show "A \<equiv> B" by (rule eq_reflection)
+ − 195
qed
+ − 196
+ − 197
ML {*
+ − 198
fun atomize_thm thm =
+ − 199
let
221
+ − 200
val thm' = Thm.freezeT (forall_intr_vars thm)
139
+ − 201
val thm'' = ObjectLogic.atomize (cprop_of thm')
+ − 202
in
404
+ − 203
@{thm equal_elim_rule1} OF [thm'', thm']
139
+ − 204
end
+ − 205
*}
+ − 206
387
+ − 207
section {* infrastructure about id *}
381
+ − 208
+ − 209
lemma prod_fun_id: "prod_fun id id \<equiv> id"
415
+ − 210
by (rule eq_reflection) (simp add: prod_fun_def)
381
+ − 211
+ − 212
lemma map_id: "map id \<equiv> id"
415
+ − 213
apply (rule eq_reflection)
+ − 214
apply (rule ext)
+ − 215
apply (rule_tac list="x" in list.induct)
+ − 216
apply (simp_all)
+ − 217
done
381
+ − 218
409
+ − 219
lemmas id_simps =
537
+ − 220
fun_map_id[THEN eq_reflection]
409
+ − 221
id_apply[THEN eq_reflection]
415
+ − 222
id_def[THEN eq_reflection,symmetric]
+ − 223
prod_fun_id map_id
409
+ − 224
381
+ − 225
ML {*
409
+ − 226
fun simp_ids thm =
+ − 227
MetaSimplifier.rewrite_rule @{thms id_simps} thm
381
+ − 228
*}
+ − 229
407
+ − 230
section {* Debugging infrastructure for testing tactics *}
381
+ − 231
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>
diff
changeset
+ − 232
ML {*
450
2dc708ddb93a
introduced a global list of respectfulness lemmas; the attribute is [quot_rsp]
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 233
fun my_print_tac ctxt s i thm =
407
+ − 234
let
450
2dc708ddb93a
introduced a global list of respectfulness lemmas; the attribute is [quot_rsp]
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 235
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>
diff
changeset
+ − 236
|> Syntax.string_of_term ctxt
2dc708ddb93a
introduced a global list of respectfulness lemmas; the attribute is [quot_rsp]
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 237
handle Subscript => "no subgoal"
2dc708ddb93a
introduced a global list of respectfulness lemmas; the attribute is [quot_rsp]
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 238
val _ = tracing (s ^ "\n" ^ prem_str)
407
+ − 239
in
+ − 240
Seq.single thm
450
2dc708ddb93a
introduced a global list of respectfulness lemmas; the attribute is [quot_rsp]
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 241
end *}
2dc708ddb93a
introduced a global list of respectfulness lemmas; the attribute is [quot_rsp]
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 242
407
+ − 243
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>
diff
changeset
+ − 244
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>
diff
changeset
+ − 245
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>
diff
changeset
+ − 246
let
2dc708ddb93a
introduced a global list of respectfulness lemmas; the attribute is [quot_rsp]
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 247
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>
diff
changeset
+ − 248
|> Syntax.string_of_term ctxt
2dc708ddb93a
introduced a global list of respectfulness lemmas; the attribute is [quot_rsp]
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 249
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>
diff
changeset
+ − 250
|> cat_lines
2dc708ddb93a
introduced a global list of respectfulness lemmas; the attribute is [quot_rsp]
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 251
in
2dc708ddb93a
introduced a global list of respectfulness lemmas; the attribute is [quot_rsp]
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 252
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>
diff
changeset
+ − 253
end
444
+ − 254
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>
diff
changeset
+ − 255
fun NDT ctxt s tac thm = tac thm
407
+ − 256
*}
+ − 257
576
+ − 258
section {* Matching of terms and types *}
+ − 259
+ − 260
ML {*
+ − 261
fun matches_typ (ty, ty') =
+ − 262
case (ty, ty') of
+ − 263
(_, TVar _) => true
+ − 264
| (TFree x, TFree x') => x = x'
+ − 265
| (Type (s, tys), Type (s', tys')) =>
+ − 266
s = s' andalso
+ − 267
if (length tys = length tys')
+ − 268
then (List.all matches_typ (tys ~~ tys'))
+ − 269
else false
+ − 270
| _ => false
+ − 271
*}
+ − 272
ML {*
+ − 273
fun matches_term (trm, trm') =
+ − 274
case (trm, trm') of
+ − 275
(_, Var _) => true
+ − 276
| (Const (s, ty), Const (s', ty')) => s = s' andalso matches_typ (ty, ty')
+ − 277
| (Free (x, ty), Free (x', ty')) => x = x' andalso matches_typ (ty, ty')
+ − 278
| (Bound i, Bound j) => i = j
+ − 279
| (Abs (_, T, t), Abs (_, T', t')) => matches_typ (T, T') andalso matches_term (t, t')
+ − 280
| (t $ s, t' $ s') => matches_term (t, t') andalso matches_term (s, s')
+ − 281
| _ => false
+ − 282
*}
453
c22ab554a32d
started functions for qid-insertion and fixed a bug in regularise
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 283
407
+ − 284
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>
diff
changeset
+ − 285
3764566c1151
Automatic FORALL_PRS. 'list.induct' lifts automatically. Faster ALLEX_RSP
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
+ − 286
ML {*
239
+ − 287
fun lookup_quot_data lthy qty =
+ − 288
let
311
+ − 289
val qty_name = fst (dest_Type qty)
314
+ − 290
val SOME quotdata = quotdata_lookup lthy qty_name
303
+ − 291
(* TODO: Should no longer be needed *)
257
+ − 292
val rty = Logic.unvarifyT (#rtyp quotdata)
239
+ − 293
val rel = #rel quotdata
+ − 294
val rel_eqv = #equiv_thm quotdata
529
+ − 295
val rel_refl = @{thm equivp_reflp} OF [rel_eqv]
239
+ − 296
in
+ − 297
(rty, rel, rel_refl, rel_eqv)
+ − 298
end
+ − 299
*}
+ − 300
+ − 301
ML {*
+ − 302
fun lookup_quot_thms lthy qty_name =
+ − 303
let
+ − 304
val thy = ProofContext.theory_of lthy;
+ − 305
val trans2 = PureThy.get_thm thy ("QUOT_TYPE_I_" ^ qty_name ^ ".R_trans2")
+ − 306
val reps_same = PureThy.get_thm thy ("QUOT_TYPE_I_" ^ qty_name ^ ".REPS_same")
269
+ − 307
val absrep = PureThy.get_thm thy ("QUOT_TYPE_I_" ^ qty_name ^ ".thm10")
529
+ − 308
val quot = PureThy.get_thm thy ("Quotient_" ^ qty_name)
239
+ − 309
in
269
+ − 310
(trans2, reps_same, absrep, quot)
239
+ − 311
end
+ − 312
*}
+ − 313
402
+ − 314
section {* Regularization *}
320
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 315
383
+ − 316
(*
+ − 317
Regularizing an rtrm means:
+ − 318
- quantifiers over a type that needs lifting are replaced by
+ − 319
bounded quantifiers, for example:
+ − 320
\<forall>x. P \<Longrightarrow> \<forall>x \<in> (Respects R). P / All (Respects R) P
+ − 321
+ − 322
the relation R is given by the rty and qty;
330
+ − 323
383
+ − 324
- abstractions over a type that needs lifting are replaced
+ − 325
by bounded abstractions:
+ − 326
\<lambda>x. P \<Longrightarrow> Ball (Respects R) (\<lambda>x. P)
+ − 327
+ − 328
- equalities over the type being lifted are replaced by
+ − 329
corresponding relations:
+ − 330
A = B \<Longrightarrow> A \<approx> B
+ − 331
+ − 332
example with more complicated types of A, B:
+ − 333
A = B \<Longrightarrow> (op = \<Longrightarrow> op \<approx>) A B
+ − 334
*)
+ − 335
404
+ − 336
ML {*
383
+ − 337
(* 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>
diff
changeset
+ − 338
fun mk_resp_arg lthy (rty, qty) =
319
+ − 339
let
+ − 340
val thy = ProofContext.theory_of lthy
320
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 341
in
334
+ − 342
if rty = qty
+ − 343
then HOLogic.eq_const rty
+ − 344
else
+ − 345
case (rty, qty) of
+ − 346
(Type (s, tys), Type (s', tys')) =>
320
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 347
if s = s'
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 348
then let
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 349
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>
diff
changeset
+ − 350
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>
diff
changeset
+ − 351
in
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 352
list_comb (Const (#relfun map_info, dummyT), args)
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 353
end
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 354
else let
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 355
val SOME qinfo = quotdata_lookup_thy thy s'
330
+ − 356
(* FIXME: check in this case that the rty and qty *)
+ − 357
(* 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>
diff
changeset
+ − 358
val (s, _) = dest_Const (#rel qinfo)
407
+ − 359
(* FIXME: the relation should only be the string *)
+ − 360
(* FIXME: and the type needs to be calculated as below; *)
+ − 361
(* FIXME: maybe one should actually have a term *)
+ − 362
(* 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>
diff
changeset
+ − 363
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>
diff
changeset
+ − 364
Const (s, rty --> rty --> @{typ bool})
320
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 365
end
334
+ − 366
| _ => HOLogic.eq_const dummyT
351
+ − 367
(* 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>
diff
changeset
+ − 368
end
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 369
*}
239
+ − 370
320
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 371
ML {*
467
+ − 372
val mk_babs = Const (@{const_name Babs}, dummyT)
+ − 373
val mk_ball = Const (@{const_name Ball}, dummyT)
+ − 374
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>
diff
changeset
+ − 375
val mk_resp = Const (@{const_name Respects}, dummyT)
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 376
*}
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 377
323
+ − 378
ML {*
330
+ − 379
(* - applies f to the subterm of an abstraction, *)
+ − 380
(* otherwise to the given term, *)
405
+ − 381
(* - used by regularize, therefore abstracted *)
330
+ − 382
(* variables do not have to be treated specially *)
+ − 383
320
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 384
fun apply_subt f trm1 trm2 =
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 385
case (trm1, trm2) of
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 386
(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>
diff
changeset
+ − 387
| _ => f trm1 trm2
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 388
330
+ − 389
(* the major type of All and Ex quantifiers *)
334
+ − 390
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>
diff
changeset
+ − 391
*}
319
+ − 392
320
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 393
ML {*
330
+ − 394
(* produces a regularized version of rtm *)
+ − 395
(* - the result is still not completely typed *)
+ − 396
(* - does not need any special treatment of *)
+ − 397
(* bound variables *)
+ − 398
405
+ − 399
fun regularize_trm lthy rtrm qtrm =
320
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 400
case (rtrm, qtrm) of
325
+ − 401
(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>
diff
changeset
+ − 402
let
405
+ − 403
val subtrm = regularize_trm lthy t t'
320
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 404
in
325
+ − 405
if ty = ty'
+ − 406
then Abs (x, ty, subtrm)
326
+ − 407
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>
diff
changeset
+ − 408
end
549
+ − 409
320
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 410
| (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>
diff
changeset
+ − 411
let
405
+ − 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>
diff
changeset
+ − 413
in
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 414
if ty = ty'
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 415
then Const (@{const_name "All"}, ty) $ subtrm
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 416
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>
diff
changeset
+ − 417
end
549
+ − 418
320
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 419
| (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>
diff
changeset
+ − 420
let
405
+ − 421
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>
diff
changeset
+ − 422
in
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 423
if ty = ty'
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 424
then Const (@{const_name "Ex"}, ty) $ subtrm
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 425
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>
diff
changeset
+ − 426
end
549
+ − 427
+ − 428
| (* equalities need to be replaced by appropriate equivalence relations *)
+ − 429
(Const (@{const_name "op ="}, ty), Const (@{const_name "op ="}, ty')) =>
+ − 430
if ty = ty'
+ − 431
then rtrm
+ − 432
else mk_resp_arg lthy (domain_type ty, domain_type ty')
+ − 433
+ − 434
| (* in this case we check whether the given equivalence relation is correct *)
+ − 435
(rel, Const (@{const_name "op ="}, ty')) =>
+ − 436
let
+ − 437
val exc = LIFT_MATCH "regularise (relation mismatch)"
+ − 438
val rel_ty = (fastype_of rel) handle TERM _ => raise exc
+ − 439
val rel' = mk_resp_arg lthy (domain_type rel_ty, domain_type ty')
+ − 440
in
+ − 441
if rel' = rel
+ − 442
then rtrm
+ − 443
else raise exc
+ − 444
end
+ − 445
| (_, Const (s, _)) =>
+ − 446
let
+ − 447
fun same_name (Const (s, _)) (Const (s', _)) = (s = s')
+ − 448
| same_name _ _ = false
320
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 449
in
549
+ − 450
if same_name rtrm qtrm
+ − 451
then rtrm
+ − 452
else
+ − 453
let
+ − 454
fun exc1 s = LIFT_MATCH ("regularize (constant " ^ s ^ " not found)")
+ − 455
val exc2 = LIFT_MATCH ("regularize (constant mismatch)")
+ − 456
val thy = ProofContext.theory_of lthy
+ − 457
val rtrm' = (#rconst (qconsts_lookup thy s)) handle NotFound => raise (exc1 s)
+ − 458
in
+ − 459
if matches_term (rtrm, rtrm')
+ − 460
then rtrm
+ − 461
else raise exc2
+ − 462
end
320
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 463
end
549
+ − 464
320
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 465
| (t1 $ t2, t1' $ t2') =>
405
+ − 466
(regularize_trm lthy t1 t1') $ (regularize_trm lthy t2 t2')
549
+ − 467
453
c22ab554a32d
started functions for qid-insertion and fixed a bug in regularise
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 468
| (Free (x, ty), Free (x', ty')) =>
c22ab554a32d
started functions for qid-insertion and fixed a bug in regularise
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 469
(* 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>
diff
changeset
+ − 470
raise (LIFT_MATCH "regularize (frees)")
549
+ − 471
320
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 472
| (Bound i, Bound i') =>
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 473
if i = i'
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 474
then rtrm
549
+ − 475
else raise (LIFT_MATCH "regularize (bounds mismatch)")
+ − 476
+ − 477
| (rt, qt) =>
374
980fdf92a834
fixed the problem with generalising variables; at the moment it is quite a hack
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 478
raise (LIFT_MATCH "regularize (default)")
320
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 479
*}
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 480
321
f46dc0ca08c3
simplified get_fun so that it uses directly rty and qty, instead of qenv
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 481
(*
407
+ − 482
FIXME / TODO: needs to be adapted
+ − 483
383
+ − 484
To prove that the raw theorem implies the regularised one,
+ − 485
we try in order:
330
+ − 486
321
f46dc0ca08c3
simplified get_fun so that it uses directly rty and qty, instead of qenv
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 487
- 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>
diff
changeset
+ − 488
- Assumption
f46dc0ca08c3
simplified get_fun so that it uses directly rty and qty, instead of qenv
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 489
- 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>
diff
changeset
+ − 490
- 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>
diff
changeset
+ − 491
- 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>
diff
changeset
+ − 492
- (\<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>
diff
changeset
+ − 493
f46dc0ca08c3
simplified get_fun so that it uses directly rty and qty, instead of qenv
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 494
*)
f46dc0ca08c3
simplified get_fun so that it uses directly rty and qty, instead of qenv
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 495
442
7beed9b75ea2
renamed LAMBDA_RES_TAC and WEAK_LAMBDA_RES_TAC to lower case names
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 496
(* FIXME: they should be in in the new Isabelle *)
404
+ − 497
lemma [mono]:
+ − 498
"(\<And>x. P x \<longrightarrow> Q x) \<Longrightarrow> (Ex P) \<longrightarrow> (Ex Q)"
400
+ − 499
by blast
+ − 500
+ − 501
lemma [mono]: "P \<longrightarrow> Q \<Longrightarrow> \<not>Q \<longrightarrow> \<not>P"
+ − 502
by auto
+ − 503
529
+ − 504
(* FIXME: OPTION_equivp, PAIR_equivp, ... *)
400
+ − 505
ML {*
+ − 506
fun equiv_tac rel_eqvs =
420
+ − 507
REPEAT_ALL_NEW (FIRST'
+ − 508
[resolve_tac rel_eqvs,
542
+ − 509
rtac @{thm identity_equivp},
539
+ − 510
rtac @{thm list_equivp}])
400
+ − 511
*}
+ − 512
+ − 513
ML {*
432
+ − 514
fun ball_reg_eqv_simproc rel_eqvs ss redex =
+ − 515
let
+ − 516
val ctxt = Simplifier.the_context ss
+ − 517
val thy = ProofContext.theory_of ctxt
+ − 518
in
+ − 519
case redex of
+ − 520
(ogl as ((Const (@{const_name "Ball"}, _)) $
+ − 521
((Const (@{const_name "Respects"}, _)) $ R) $ P1)) =>
+ − 522
(let
529
+ − 523
val gl = Const (@{const_name "equivp"}, dummyT) $ R;
432
+ − 524
val glc = HOLogic.mk_Trueprop (Syntax.check_term ctxt gl);
+ − 525
val eqv = Goal.prove ctxt [] [] glc (fn _ => equiv_tac rel_eqvs 1);
+ − 526
val thm = (@{thm eq_reflection} OF [@{thm ball_reg_eqv} OF [eqv]]);
+ − 527
(* val _ = tracing (Syntax.string_of_term ctxt (prop_of thm)); *)
+ − 528
in
+ − 529
SOME thm
+ − 530
end
+ − 531
handle _ => NONE
+ − 532
)
+ − 533
| _ => NONE
+ − 534
end
+ − 535
*}
+ − 536
+ − 537
ML {*
+ − 538
fun bex_reg_eqv_simproc rel_eqvs ss redex =
+ − 539
let
+ − 540
val ctxt = Simplifier.the_context ss
+ − 541
val thy = ProofContext.theory_of ctxt
+ − 542
in
+ − 543
case redex of
+ − 544
(ogl as ((Const (@{const_name "Bex"}, _)) $
+ − 545
((Const (@{const_name "Respects"}, _)) $ R) $ P1)) =>
+ − 546
(let
529
+ − 547
val gl = Const (@{const_name "equivp"}, dummyT) $ R;
432
+ − 548
val glc = HOLogic.mk_Trueprop (Syntax.check_term ctxt gl);
+ − 549
val eqv = Goal.prove ctxt [] [] glc (fn _ => equiv_tac rel_eqvs 1);
+ − 550
val thm = (@{thm eq_reflection} OF [@{thm bex_reg_eqv} OF [eqv]]);
+ − 551
(* val _ = tracing (Syntax.string_of_term ctxt (prop_of thm)); *)
+ − 552
in
+ − 553
SOME thm
+ − 554
end
+ − 555
handle _ => NONE
+ − 556
)
+ − 557
| _ => NONE
+ − 558
end
+ − 559
*}
+ − 560
+ − 561
ML {*
+ − 562
fun prep_trm thy (x, (T, t)) =
+ − 563
(cterm_of thy (Var (x, T)), cterm_of thy t)
+ − 564
+ − 565
fun prep_ty thy (x, (S, ty)) =
+ − 566
(ctyp_of thy (TVar (x, S)), ctyp_of thy ty)
+ − 567
*}
+ − 568
+ − 569
ML {*
+ − 570
fun matching_prs thy pat trm =
+ − 571
let
+ − 572
val univ = Unify.matchers thy [(pat, trm)]
+ − 573
val SOME (env, _) = Seq.pull univ
+ − 574
val tenv = Vartab.dest (Envir.term_env env)
+ − 575
val tyenv = Vartab.dest (Envir.type_env env)
+ − 576
in
+ − 577
(map (prep_ty thy) tyenv, map (prep_trm thy) tenv)
+ − 578
end
400
+ − 579
*}
+ − 580
+ − 581
ML {*
432
+ − 582
fun ball_reg_eqv_range_simproc rel_eqvs ss redex =
400
+ − 583
let
432
+ − 584
val ctxt = Simplifier.the_context ss
+ − 585
val thy = ProofContext.theory_of ctxt
400
+ − 586
in
432
+ − 587
case redex of
+ − 588
(ogl as ((Const (@{const_name "Ball"}, _)) $
536
+ − 589
((Const (@{const_name "Respects"}, _)) $ ((Const (@{const_name "fun_rel"}, _)) $ R1 $ R2)) $ _)) =>
432
+ − 590
(let
529
+ − 591
val gl = Const (@{const_name "equivp"}, dummyT) $ R2;
432
+ − 592
val glc = HOLogic.mk_Trueprop (Syntax.check_term ctxt gl);
487
+ − 593
(* val _ = tracing (Syntax.string_of_term ctxt glc);*)
432
+ − 594
val eqv = Goal.prove ctxt [] [] glc (fn _ => equiv_tac rel_eqvs 1);
+ − 595
val thm = (@{thm eq_reflection} OF [@{thm ball_reg_eqv_range} OF [eqv]]);
+ − 596
val R1c = cterm_of thy R1;
+ − 597
val thmi = Drule.instantiate' [] [SOME R1c] thm;
487
+ − 598
(* val _ = tracing (Syntax.string_of_term ctxt (prop_of thmi));*)
432
+ − 599
val inst = matching_prs thy (term_of (Thm.lhs_of thmi)) ogl
+ − 600
val thm2 = Drule.eta_contraction_rule (Drule.instantiate inst thmi);
487
+ − 601
(* val _ = tracing (Syntax.string_of_term ctxt (prop_of thm2)); *)
432
+ − 602
in
+ − 603
SOME thm2
+ − 604
end
+ − 605
handle _ => NONE
+ − 606
+ − 607
)
+ − 608
| _ => NONE
400
+ − 609
end
+ − 610
*}
432
+ − 611
+ − 612
ML {*
+ − 613
fun bex_reg_eqv_range_simproc rel_eqvs ss redex =
+ − 614
let
+ − 615
val ctxt = Simplifier.the_context ss
+ − 616
val thy = ProofContext.theory_of ctxt
+ − 617
in
+ − 618
case redex of
+ − 619
(ogl as ((Const (@{const_name "Bex"}, _)) $
536
+ − 620
((Const (@{const_name "Respects"}, _)) $ ((Const (@{const_name "fun_rel"}, _)) $ R1 $ R2)) $ _)) =>
432
+ − 621
(let
529
+ − 622
val gl = Const (@{const_name "equivp"}, dummyT) $ R2;
432
+ − 623
val glc = HOLogic.mk_Trueprop (Syntax.check_term ctxt gl);
487
+ − 624
(* val _ = tracing (Syntax.string_of_term ctxt glc); *)
432
+ − 625
val eqv = Goal.prove ctxt [] [] glc (fn _ => equiv_tac rel_eqvs 1);
+ − 626
val thm = (@{thm eq_reflection} OF [@{thm bex_reg_eqv_range} OF [eqv]]);
+ − 627
val R1c = cterm_of thy R1;
+ − 628
val thmi = Drule.instantiate' [] [SOME R1c] thm;
+ − 629
(* val _ = tracing (Syntax.string_of_term ctxt (prop_of thmi)); *)
+ − 630
val inst = matching_prs thy (term_of (Thm.lhs_of thmi)) ogl
+ − 631
val thm2 = Drule.eta_contraction_rule (Drule.instantiate inst thmi);
487
+ − 632
(* val _ = tracing (Syntax.string_of_term ctxt (prop_of thm2));*)
432
+ − 633
in
+ − 634
SOME thm2
+ − 635
end
+ − 636
handle _ => NONE
+ − 637
+ − 638
)
+ − 639
| _ => NONE
+ − 640
end
+ − 641
*}
+ − 642
529
+ − 643
lemma eq_imp_rel: "equivp R \<Longrightarrow> a = b \<longrightarrow> R a b"
+ − 644
by (simp add: equivp_reflp)
432
+ − 645
+ − 646
ML {*
+ − 647
fun regularize_tac ctxt rel_eqvs =
+ − 648
let
+ − 649
val pat1 = [@{term "Ball (Respects R) P"}];
+ − 650
val pat2 = [@{term "Bex (Respects R) P"}];
+ − 651
val pat3 = [@{term "Ball (Respects (R1 ===> R2)) P"}];
+ − 652
val pat4 = [@{term "Bex (Respects (R1 ===> R2)) P"}];
+ − 653
val thy = ProofContext.theory_of ctxt
+ − 654
val simproc1 = Simplifier.simproc_i thy "" pat1 (K (ball_reg_eqv_simproc rel_eqvs))
+ − 655
val simproc2 = Simplifier.simproc_i thy "" pat2 (K (bex_reg_eqv_simproc rel_eqvs))
+ − 656
val simproc3 = Simplifier.simproc_i thy "" pat3 (K (ball_reg_eqv_range_simproc rel_eqvs))
+ − 657
val simproc4 = Simplifier.simproc_i thy "" pat4 (K (bex_reg_eqv_range_simproc rel_eqvs))
+ − 658
val simp_ctxt = (Simplifier.context ctxt empty_ss) addsimprocs [simproc1, simproc2, simproc3, simproc4]
537
+ − 659
(* TODO: Make sure that there are no list_rel, pair_rel etc involved *)
432
+ − 660
val eq_eqvs = map (fn x => @{thm eq_imp_rel} OF [x]) rel_eqvs
+ − 661
in
+ − 662
ObjectLogic.full_atomize_tac THEN'
+ − 663
simp_tac simp_ctxt THEN'
+ − 664
REPEAT_ALL_NEW (FIRST' [
+ − 665
rtac @{thm ball_reg_right},
+ − 666
rtac @{thm bex_reg_left},
+ − 667
resolve_tac (Inductive.get_monos ctxt),
+ − 668
rtac @{thm ball_all_comm},
+ − 669
rtac @{thm bex_ex_comm},
+ − 670
resolve_tac eq_eqvs,
+ − 671
simp_tac simp_ctxt
+ − 672
])
+ − 673
end
+ − 674
*}
390
+ − 675
544
+ − 676
section {* Injections of rep and abses *}
383
+ − 677
381
+ − 678
(*
544
+ − 679
Injecting repabs means:
381
+ − 680
+ − 681
For abstractions:
+ − 682
* If the type of the abstraction doesn't need lifting we recurse.
+ − 683
* If it does we add RepAbs around the whole term and check if the
+ − 684
variable needs lifting.
+ − 685
* If it doesn't then we recurse
+ − 686
* If it does we recurse and put 'RepAbs' around all occurences
+ − 687
of the variable in the obtained subterm. This in combination
+ − 688
with the RepAbs above will let us change the type of the
+ − 689
abstraction with rewriting.
+ − 690
For applications:
+ − 691
* If the term is 'Respects' applied to anything we leave it unchanged
+ − 692
* If the term needs lifting and the head is a constant that we know
+ − 693
how to lift, we put a RepAbs and recurse
+ − 694
* If the term needs lifting and the head is a free applied to subterms
+ − 695
(if it is not applied we treated it in Abs branch) then we
+ − 696
put RepAbs and recurse
+ − 697
* Otherwise just recurse.
+ − 698
*)
+ − 699
336
+ − 700
ML {*
+ − 701
fun mk_repabs lthy (T, T') trm =
+ − 702
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>
diff
changeset
+ − 703
$ (Quotient_Def.get_fun absF lthy (T, T') $ trm)
336
+ − 704
*}
+ − 705
+ − 706
ML {*
563
+ − 707
(* bound variables need to be treated properly, *)
+ − 708
(* as the type of subterms need to be calculated *)
+ − 709
(* in the abstraction case *)
336
+ − 710
408
+ − 711
fun inj_repabs_trm lthy (rtrm, qtrm) =
563
+ − 712
case (rtrm, qtrm) of
336
+ − 713
(Const (@{const_name "Ball"}, T) $ r $ t, Const (@{const_name "All"}, _) $ t') =>
408
+ − 714
Const (@{const_name "Ball"}, T) $ r $ (inj_repabs_trm lthy (t, t'))
552
d9151fa76f84
added three examples to IntEx for testing ideas - regularisation and injection seem to be not quite right yet
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 715
336
+ − 716
| (Const (@{const_name "Bex"}, T) $ r $ t, Const (@{const_name "Ex"}, _) $ t') =>
408
+ − 717
Const (@{const_name "Bex"}, T) $ r $ (inj_repabs_trm lthy (t, t'))
552
d9151fa76f84
added three examples to IntEx for testing ideas - regularisation and injection seem to be not quite right yet
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 718
d9151fa76f84
added three examples to IntEx for testing ideas - regularisation and injection seem to be not quite right yet
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 719
| (Const (@{const_name "Babs"}, T) $ r $ t, t' as (Abs _)) =>
408
+ − 720
Const (@{const_name "Babs"}, T) $ r $ (inj_repabs_trm lthy (t, t'))
552
d9151fa76f84
added three examples to IntEx for testing ideas - regularisation and injection seem to be not quite right yet
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 721
336
+ − 722
| (Abs (x, T, t), Abs (x', T', t')) =>
+ − 723
let
563
+ − 724
val rty = fastype_of rtrm
+ − 725
val qty = fastype_of qtrm
336
+ − 726
val (y, s) = Term.dest_abs (x, T, t)
+ − 727
val (_, s') = Term.dest_abs (x', T', t')
+ − 728
val yvar = Free (y, T)
453
c22ab554a32d
started functions for qid-insertion and fixed a bug in regularise
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 729
val result = Term.lambda_name (y, yvar) (inj_repabs_trm lthy (s, s'))
336
+ − 730
in
345
+ − 731
if rty = qty
+ − 732
then result
+ − 733
else mk_repabs lthy (rty, qty) result
336
+ − 734
end
560
+ − 735
+ − 736
| (t $ s, t' $ s') =>
+ − 737
(inj_repabs_trm lthy (t, t')) $ (inj_repabs_trm lthy (s, s'))
+ − 738
563
+ − 739
| (Free (_, T), Free (_, T')) =>
560
+ − 740
if T = T'
+ − 741
then rtrm
+ − 742
else mk_repabs lthy (T, T') rtrm
+ − 743
568
0384e039b7f2
added new example for Ints; regularise does not work in all instances
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 744
| (_, Const (@{const_name "op ="}, _)) => rtrm
0384e039b7f2
added new example for Ints; regularise does not work in all instances
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 745
576
+ − 746
(* FIXME: check here that rtrm is the corresponding definition for the const *)
568
0384e039b7f2
added new example for Ints; regularise does not work in all instances
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 747
| (_, Const (_, T')) =>
0384e039b7f2
added new example for Ints; regularise does not work in all instances
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 748
let
0384e039b7f2
added new example for Ints; regularise does not work in all instances
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 749
val rty = fastype_of rtrm
0384e039b7f2
added new example for Ints; regularise does not work in all instances
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 750
in
0384e039b7f2
added new example for Ints; regularise does not work in all instances
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 751
if rty = T'
560
+ − 752
then rtrm
568
0384e039b7f2
added new example for Ints; regularise does not work in all instances
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 753
else mk_repabs lthy (rty, T') rtrm
0384e039b7f2
added new example for Ints; regularise does not work in all instances
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 754
end
560
+ − 755
+ − 756
| _ => raise (LIFT_MATCH "injection")
336
+ − 757
*}
+ − 758
404
+ − 759
section {* RepAbs Injection Tactic *}
387
+ − 760
+ − 761
ML {*
506
+ − 762
fun quotient_tac ctxt =
468
+ − 763
REPEAT_ALL_NEW (FIRST'
542
+ − 764
[rtac @{thm identity_quotient},
510
8dbc521ee97f
Even better: Completely got rid of the simps in both quotient_tac and inj_repabs_tac
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
+ − 765
resolve_tac (quotient_rules_get ctxt)])
387
+ − 766
*}
+ − 767
568
0384e039b7f2
added new example for Ints; regularise does not work in all instances
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 768
(* solver for the simplifier *)
0384e039b7f2
added new example for Ints; regularise does not work in all instances
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 769
ML {*
0384e039b7f2
added new example for Ints; regularise does not work in all instances
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 770
fun quotient_solver_tac ss = quotient_tac (Simplifier.the_context ss)
0384e039b7f2
added new example for Ints; regularise does not work in all instances
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 771
val quotient_solver = Simplifier.mk_solver' "Quotient goal solver" quotient_solver_tac
0384e039b7f2
added new example for Ints; regularise does not work in all instances
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 772
*}
0384e039b7f2
added new example for Ints; regularise does not work in all instances
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 773
576
+ − 774
ML {*
+ − 775
fun solve_quotient_assums ctxt thm =
+ − 776
let val gl = hd (Drule.strip_imp_prems (cprop_of thm)) in
+ − 777
thm OF [Goal.prove_internal [] gl (fn _ => quotient_tac ctxt 1)]
+ − 778
end
+ − 779
handle _ => error "solve_quotient_assums"
+ − 780
*}
+ − 781
+ − 782
(* It proves the Quotient assumptions by calling quotient_tac *)
+ − 783
ML {*
+ − 784
fun solve_quotient_assum i ctxt thm =
+ − 785
let
+ − 786
val tac =
+ − 787
(compose_tac (false, thm, i)) THEN_ALL_NEW
+ − 788
(quotient_tac ctxt);
+ − 789
val gc = Drule.strip_imp_concl (cprop_of thm);
+ − 790
in
+ − 791
Goal.prove_internal [] gc (fn _ => tac 1)
+ − 792
end
+ − 793
handle _ => error "solve_quotient_assum"
+ − 794
*}
+ − 795
480
7fbbb2690bc5
Removed the use of 'rty' from APPLY_RSP, finally LF proofs go automatically.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
+ − 796
definition
7fbbb2690bc5
Removed the use of 'rty' from APPLY_RSP, finally LF proofs go automatically.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
+ − 797
"QUOT_TRUE x \<equiv> True"
472
+ − 798
387
+ − 799
ML {*
480
7fbbb2690bc5
Removed the use of 'rty' from APPLY_RSP, finally LF proofs go automatically.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
+ − 800
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>
diff
changeset
+ − 801
let
7fbbb2690bc5
Removed the use of 'rty' from APPLY_RSP, finally LF proofs go automatically.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
+ − 802
fun find_fun trm =
7fbbb2690bc5
Removed the use of 'rty' from APPLY_RSP, finally LF proofs go automatically.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
+ − 803
case trm of
7fbbb2690bc5
Removed the use of 'rty' from APPLY_RSP, finally LF proofs go automatically.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
+ − 804
(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>
diff
changeset
+ − 805
| _ => false
7fbbb2690bc5
Removed the use of 'rty' from APPLY_RSP, finally LF proofs go automatically.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
+ − 806
in
7fbbb2690bc5
Removed the use of 'rty' from APPLY_RSP, finally LF proofs go automatically.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
+ − 807
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>
diff
changeset
+ − 808
SOME (_ $ (_ $ (f $ a))) => (f, a)
575
334b3e9ea3e0
Handle 'find_qt_asm' exception. Now all inj_repabs_goals should be solved automatically.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
+ − 809
| SOME _ => error "find_qt_asm: no pair"
334b3e9ea3e0
Handle 'find_qt_asm' exception. Now all inj_repabs_goals should be solved automatically.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
+ − 810
| NONE => error "find_qt_asm: no assumption"
480
7fbbb2690bc5
Removed the use of 'rty' from APPLY_RSP, finally LF proofs go automatically.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
+ − 811
end
7fbbb2690bc5
Removed the use of 'rty' from APPLY_RSP, finally LF proofs go automatically.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
+ − 812
*}
7fbbb2690bc5
Removed the use of 'rty' from APPLY_RSP, finally LF proofs go automatically.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
+ − 813
398
+ − 814
(*
+ − 815
To prove that the regularised theorem implies the abs/rep injected,
+ − 816
we try:
+ − 817
+ − 818
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>
diff
changeset
+ − 819
2) remove lambdas from both sides: lambda_rsp_tac
398
+ − 820
3) remove Ball/Bex from the right hand side
+ − 821
4) use user-supplied RSP theorems
+ − 822
5) remove rep_abs from the right side
+ − 823
6) reflexivity of equality
+ − 824
7) split applications of lifted type (apply_rsp)
+ − 825
8) split applications of non-lifted type (cong_tac)
+ − 826
9) apply extentionality
423
2f0ad33f0241
annotated a proof with all steps and simplified LAMBDA_RES_TAC
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 827
A) reflexivity of the relation
2f0ad33f0241
annotated a proof with all steps and simplified LAMBDA_RES_TAC
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 828
B) assumption
398
+ − 829
(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>
diff
changeset
+ − 830
C) proving obvious higher order equalities by simplifying fun_rel
398
+ − 831
(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>
diff
changeset
+ − 832
D) unfolding lambda on one side
2f0ad33f0241
annotated a proof with all steps and simplified LAMBDA_RES_TAC
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 833
E) simplifying (= ===> =) for simpler respectfulness
398
+ − 834
+ − 835
*)
+ − 836
469
+ − 837
lemma quot_true_dests:
+ − 838
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>
diff
changeset
+ − 839
and QT_ex: "QUOT_TRUE (Ex P) \<Longrightarrow> QUOT_TRUE P"
469
+ − 840
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>
diff
changeset
+ − 841
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>
diff
changeset
+ − 842
apply(simp_all add: QUOT_TRUE_def ext)
469
+ − 843
done
+ − 844
476
325d6e9a7515
Added tactic for dealing with QUOT_TRUE and introducing QUOT_TRUE.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
+ − 845
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>
diff
changeset
+ − 846
by (simp add: QUOT_TRUE_def)
fc16faef5dfa
Transformation of QUOT_TRUE assumption by any given function
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
+ − 847
479
+ − 848
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>
diff
changeset
+ − 849
by (simp add: QUOT_TRUE_def)
fc16faef5dfa
Transformation of QUOT_TRUE assumption by any given function
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
+ − 850
fc16faef5dfa
Transformation of QUOT_TRUE assumption by any given function
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
+ − 851
ML {*
479
+ − 852
fun quot_true_conv1 ctxt fnctn ctrm =
+ − 853
case (term_of ctrm) of
+ − 854
(Const (@{const_name QUOT_TRUE}, _) $ x) =>
+ − 855
let
+ − 856
val fx = fnctn x;
+ − 857
val thy = ProofContext.theory_of ctxt;
+ − 858
val cx = cterm_of thy x;
+ − 859
val cfx = cterm_of thy fx;
+ − 860
val cxt = ctyp_of thy (fastype_of x);
+ − 861
val cfxt = ctyp_of thy (fastype_of fx);
+ − 862
val thm = Drule.instantiate' [SOME cxt, SOME cfxt] [SOME cx, SOME cfx] @{thm QUOT_TRUE_imp}
+ − 863
in
+ − 864
Conv.rewr_conv thm ctrm
+ − 865
end
470
fc16faef5dfa
Transformation of QUOT_TRUE assumption by any given function
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
+ − 866
*}
469
+ − 867
479
+ − 868
ML {*
+ − 869
fun quot_true_conv ctxt fnctn ctrm =
+ − 870
case (term_of ctrm) of
+ − 871
(Const (@{const_name QUOT_TRUE}, _) $ _) =>
+ − 872
quot_true_conv1 ctxt fnctn ctrm
+ − 873
| _ $ _ => Conv.comb_conv (quot_true_conv ctxt fnctn) ctrm
+ − 874
| Abs _ => Conv.abs_conv (fn (_, ctxt) => quot_true_conv ctxt fnctn) ctxt ctrm
+ − 875
| _ => Conv.all_conv ctrm
+ − 876
*}
+ − 877
+ − 878
ML {*
493
+ − 879
fun quot_true_tac ctxt fnctn = CONVERSION
+ − 880
((Conv.params_conv ~1 (fn ctxt =>
+ − 881
(Conv.prems_conv ~1 (quot_true_conv ctxt fnctn)))) ctxt)
479
+ − 882
*}
476
325d6e9a7515
Added tactic for dealing with QUOT_TRUE and introducing QUOT_TRUE.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
+ − 883
325d6e9a7515
Added tactic for dealing with QUOT_TRUE and introducing QUOT_TRUE.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
+ − 884
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>
diff
changeset
+ − 885
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>
diff
changeset
+ − 886
(* TODO: Can this be done easier? *)
7f97c52021c9
Fixed unlam for non-abstractions and updated list_induct_part proof.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
+ − 887
ML {*
7f97c52021c9
Fixed unlam for non-abstractions and updated list_induct_part proof.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
+ − 888
fun unlam t =
7f97c52021c9
Fixed unlam for non-abstractions and updated list_induct_part proof.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
+ − 889
case t of
7f97c52021c9
Fixed unlam for non-abstractions and updated list_induct_part proof.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
+ − 890
(Abs a) => snd (Term.dest_abs a)
525
+ − 891
| _ => unlam (Abs("", domain_type (fastype_of t), (incr_boundvars 1 t) $ (Bound 0)))
398
+ − 892
*}
+ − 893
522
6b77cfd508e9
rep_abs_rsp_tac to replace the last use of instantiate_tac with matching and unification.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
+ − 894
ML {*
6b77cfd508e9
rep_abs_rsp_tac to replace the last use of instantiate_tac with matching and unification.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
+ − 895
fun dest_fun_type (Type("fun", [T, S])) = (T, S)
6b77cfd508e9
rep_abs_rsp_tac to replace the last use of instantiate_tac with matching and unification.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
+ − 896
| dest_fun_type _ = error "dest_fun_type"
6b77cfd508e9
rep_abs_rsp_tac to replace the last use of instantiate_tac with matching and unification.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
+ − 897
*}
6b77cfd508e9
rep_abs_rsp_tac to replace the last use of instantiate_tac with matching and unification.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
+ − 898
6b77cfd508e9
rep_abs_rsp_tac to replace the last use of instantiate_tac with matching and unification.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
+ − 899
ML {*
551
+ − 900
val bare_concl = HOLogic.dest_Trueprop o Logic.strip_assums_concl
+ − 901
*}
+ − 902
+ − 903
ML {*
576
+ − 904
val apply_rsp_tac =
+ − 905
Subgoal.FOCUS (fn {concl, asms, context,...} =>
+ − 906
case ((HOLogic.dest_Trueprop (term_of concl))) of
+ − 907
((R2 $ (f $ x) $ (g $ y))) =>
+ − 908
(let
+ − 909
val (asmf, asma) = find_qt_asm (map term_of asms);
+ − 910
in
+ − 911
if (fastype_of asmf) = (fastype_of f) then no_tac else let
+ − 912
val ty_a = fastype_of x;
+ − 913
val ty_b = fastype_of asma;
+ − 914
val ty_c = range_type (type_of f);
+ − 915
val thy = ProofContext.theory_of context;
+ − 916
val ty_inst = map (SOME o (ctyp_of thy)) [ty_a, ty_b, ty_c];
+ − 917
val thm = Drule.instantiate' ty_inst [] @{thm apply_rsp}
+ − 918
val te = solve_quotient_assums context thm
+ − 919
val t_inst = map (SOME o (cterm_of thy)) [R2, f, g, x, y];
+ − 920
val thm = Drule.instantiate' [] t_inst te
+ − 921
in
+ − 922
compose_tac (false, thm, 2) 1
+ − 923
end
+ − 924
end
+ − 925
handle ERROR "find_qt_asm: no pair" => no_tac)
+ − 926
| _ => no_tac)
+ − 927
*}
+ − 928
ML {*
+ − 929
fun SOLVES' tac = tac THEN_ALL_NEW (fn _ => no_tac)
+ − 930
*}
+ − 931
+ − 932
ML {*
548
9fb773ec083c
Changed FOCUS to SUBGOAL in rep_abs_rsp_tac; another 20% speedup :)
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
+ − 933
fun rep_abs_rsp_tac ctxt =
9fb773ec083c
Changed FOCUS to SUBGOAL in rep_abs_rsp_tac; another 20% speedup :)
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
+ − 934
SUBGOAL (fn (goal, i) =>
551
+ − 935
case (bare_concl goal) of
+ − 936
(rel $ _ $ (rep $ (abs $ _))) =>
+ − 937
(let
+ − 938
val thy = ProofContext.theory_of ctxt;
+ − 939
val (ty_a, ty_b) = dest_fun_type (fastype_of abs);
+ − 940
val ty_inst = map (SOME o (ctyp_of thy)) [ty_a, ty_b];
+ − 941
val t_inst = map (SOME o (cterm_of thy)) [rel, abs, rep];
+ − 942
val thm = Drule.instantiate' ty_inst t_inst @{thm rep_abs_rsp}
+ − 943
val te = solve_quotient_assums ctxt thm
+ − 944
in
+ − 945
rtac te i
+ − 946
end
+ − 947
handle _ => no_tac)
+ − 948
| _ => no_tac)
522
6b77cfd508e9
rep_abs_rsp_tac to replace the last use of instantiate_tac with matching and unification.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
+ − 949
*}
6b77cfd508e9
rep_abs_rsp_tac to replace the last use of instantiate_tac with matching and unification.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
+ − 950
512
+ − 951
ML {*
525
+ − 952
fun inj_repabs_tac_match ctxt trans2 = SUBGOAL (fn (goal, i) =>
551
+ − 953
(case (bare_concl goal) of
525
+ − 954
(* (R1 ===> R2) (\<lambda>x\<dots>) (\<lambda>y\<dots>) ----> \<lbrakk>R1 x y\<rbrakk> \<Longrightarrow> R2 (\<dots>x) (\<dots>y) *)
536
+ − 955
((Const (@{const_name fun_rel}, _) $ _ $ _) $ (Abs _) $ (Abs _))
+ − 956
=> rtac @{thm fun_rel_id} THEN' quot_true_tac ctxt unlam
525
+ − 957
(* (op =) (Ball\<dots>) (Ball\<dots>) ----> (op =) (\<dots>) (\<dots>) *)
512
+ − 958
| (Const (@{const_name "op ="},_) $
+ − 959
(Const(@{const_name Ball},_) $ (Const (@{const_name Respects}, _) $ _) $ _) $
+ − 960
(Const(@{const_name Ball},_) $ (Const (@{const_name Respects}, _) $ _) $ _))
+ − 961
=> rtac @{thm ball_rsp} THEN' dtac @{thm QT_all}
525
+ − 962
(* (R1 ===> op =) (Ball\<dots>) (Ball\<dots>) ----> \<lbrakk>R1 x y\<rbrakk> \<Longrightarrow> (Ball\<dots>x) = (Ball\<dots>y) *)
536
+ − 963
| (Const (@{const_name fun_rel}, _) $ _ $ _) $
512
+ − 964
(Const(@{const_name Ball},_) $ (Const (@{const_name Respects}, _) $ _) $ _) $
+ − 965
(Const(@{const_name Ball},_) $ (Const (@{const_name Respects}, _) $ _) $ _)
536
+ − 966
=> rtac @{thm fun_rel_id} THEN' quot_true_tac ctxt unlam
525
+ − 967
(* (op =) (Bex\<dots>) (Bex\<dots>) ----> (op =) (\<dots>) (\<dots>) *)
512
+ − 968
| Const (@{const_name "op ="},_) $
+ − 969
(Const(@{const_name Bex},_) $ (Const (@{const_name Respects}, _) $ _) $ _) $
+ − 970
(Const(@{const_name Bex},_) $ (Const (@{const_name Respects}, _) $ _) $ _)
+ − 971
=> rtac @{thm bex_rsp} THEN' dtac @{thm QT_ex}
525
+ − 972
(* (R1 ===> op =) (Bex\<dots>) (Bex\<dots>) ----> \<lbrakk>R1 x y\<rbrakk> \<Longrightarrow> (Bex\<dots>x) = (Bex\<dots>y) *)
536
+ − 973
| (Const (@{const_name fun_rel}, _) $ _ $ _) $
512
+ − 974
(Const(@{const_name Bex},_) $ (Const (@{const_name Respects}, _) $ _) $ _) $
+ − 975
(Const(@{const_name Bex},_) $ (Const (@{const_name Respects}, _) $ _) $ _)
536
+ − 976
=> rtac @{thm fun_rel_id} THEN' quot_true_tac ctxt unlam
512
+ − 977
| Const (@{const_name "op ="},_) $ _ $ _ =>
525
+ − 978
(* reflexivity of operators arising from Cong_tac *)
512
+ − 979
rtac @{thm refl} ORELSE'
+ − 980
(resolve_tac trans2 THEN' RANGE [
+ − 981
quot_true_tac ctxt (fst o dest_bcomb), quot_true_tac ctxt (snd o dest_bcomb)])
561
41500cd131dc
Added nil_rsp and cons_rsp to quotient_rsp; simplified IntEx.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
+ − 982
| (Const (@{const_name fun_rel}, _) $ _ $ _) $
41500cd131dc
Added nil_rsp and cons_rsp to quotient_rsp; simplified IntEx.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
+ − 983
(Const (@{const_name fun_rel}, _) $ _ $ _) $
41500cd131dc
Added nil_rsp and cons_rsp to quotient_rsp; simplified IntEx.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
+ − 984
(Const (@{const_name fun_rel}, _) $ _ $ _)
41500cd131dc
Added nil_rsp and cons_rsp to quotient_rsp; simplified IntEx.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
+ − 985
=> rtac @{thm quot_rel_rsp} THEN_ALL_NEW quotient_tac ctxt
41500cd131dc
Added nil_rsp and cons_rsp to quotient_rsp; simplified IntEx.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
+ − 986
| _ $ (Const _) $ (Const _) => (* fun_rel, list_rel, etc but not equality *)
41500cd131dc
Added nil_rsp and cons_rsp to quotient_rsp; simplified IntEx.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
+ − 987
(* respectfulness of constants; in particular of a simple relation *)
41500cd131dc
Added nil_rsp and cons_rsp to quotient_rsp; simplified IntEx.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
+ − 988
resolve_tac (rsp_rules_get ctxt) THEN_ALL_NEW quotient_tac ctxt
512
+ − 989
| _ $ _ $ _ =>
525
+ − 990
(* R (\<dots>) (Rep (Abs \<dots>)) ----> R (\<dots>) (\<dots>) *)
+ − 991
(* observe ---> *)
522
6b77cfd508e9
rep_abs_rsp_tac to replace the last use of instantiate_tac with matching and unification.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
+ − 992
rep_abs_rsp_tac ctxt
6b77cfd508e9
rep_abs_rsp_tac to replace the last use of instantiate_tac with matching and unification.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
+ − 993
| _ => error "inj_repabs_tac not a relation"
512
+ − 994
) i)
+ − 995
*}
+ − 996
+ − 997
ML {*
525
+ − 998
fun inj_repabs_tac ctxt rel_refl trans2 =
512
+ − 999
(FIRST' [
525
+ − 1000
inj_repabs_tac_match ctxt trans2,
527
+ − 1001
(* R (t $ \<dots>) (t' $ \<dots>) ----> apply_rsp provided type of t needs lifting *)
+ − 1002
NDT ctxt "A" (apply_rsp_tac ctxt THEN'
517
ede7f9622a54
Got to about 5 seconds for the longest proof. APPLY_RSP_TAC' solves the quotient internally without instantiation resulting in a faster proof.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
+ − 1003
(RANGE [quot_true_tac ctxt (fst o dest_comb), quot_true_tac ctxt (snd o dest_comb)])),
525
+ − 1004
(* (op =) (t $ \<dots>) (t' $ \<dots>) ----> Cong provided type of t does not need lifting *)
+ − 1005
(* merge with previous tactic *)
512
+ − 1006
NDT ctxt "B" (Cong_Tac.cong_tac @{thm cong} THEN'
+ − 1007
(RANGE [quot_true_tac ctxt (fst o dest_comb), quot_true_tac ctxt (snd o dest_comb)])),
525
+ − 1008
(* (op =) (\<lambda>x\<dots>) (\<lambda>x\<dots>) ----> (op =) (\<dots>) (\<dots>) *)
512
+ − 1009
NDT ctxt "C" (rtac @{thm ext} THEN' quot_true_tac ctxt unlam),
525
+ − 1010
(* resolving with R x y assumptions *)
512
+ − 1011
NDT ctxt "E" (atac),
525
+ − 1012
(* reflexivity of the basic relations *)
+ − 1013
(* R \<dots> \<dots> *)
555
b460565dbb58
Handling of respects in the fast inj_repabs_tac; includes respects with quotient assumptions.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
+ − 1014
NDT ctxt "D" (resolve_tac rel_refl)
515
+ − 1015
])
512
+ − 1016
*}
+ − 1017
+ − 1018
ML {*
525
+ − 1019
fun all_inj_repabs_tac ctxt rel_refl trans2 =
+ − 1020
REPEAT_ALL_NEW (inj_repabs_tac ctxt rel_refl trans2)
512
+ − 1021
*}
+ − 1022
399
+ − 1023
section {* Cleaning of the theorem *}
387
+ − 1024
+ − 1025
ML {*
440
+ − 1026
fun make_inst lhs t =
+ − 1027
let
+ − 1028
val _ $ (Abs (_, _, (f as Var (_, Type ("fun", [T, _]))) $ u)) = lhs;
+ − 1029
val _ $ (Abs (_, _, g)) = t;
+ − 1030
fun mk_abs i t =
+ − 1031
if incr_boundvars i u aconv t then Bound i
+ − 1032
else (case t of
+ − 1033
t1 $ t2 => mk_abs i t1 $ mk_abs i t2
469
+ − 1034
| Abs (s, T, t') => Abs (s, T, mk_abs (i + 1) t')
440
+ − 1035
| Bound j => if i = j then error "make_inst" else t
+ − 1036
| _ => t);
+ − 1037
in (f, Abs ("x", T, mk_abs 0 g)) end;
490
+ − 1038
*}
440
+ − 1039
492
+ − 1040
ML {*
571
+ − 1041
fun lambda_prs_simple_conv ctxt ctrm =
492
+ − 1042
case (term_of ctrm) of
572
a68c51dd85b3
working on lambda_prs with examples; polished code of clean_tac
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 1043
((Const (@{const_name fun_map}, _) $ r1 $ a2) $ (Abs _)) =>
a68c51dd85b3
working on lambda_prs with examples; polished code of clean_tac
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 1044
let
a68c51dd85b3
working on lambda_prs with examples; polished code of clean_tac
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 1045
val thy = ProofContext.theory_of ctxt
a68c51dd85b3
working on lambda_prs with examples; polished code of clean_tac
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 1046
val (ty_b, ty_a) = dest_fun_type (fastype_of r1)
a68c51dd85b3
working on lambda_prs with examples; polished code of clean_tac
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 1047
val (ty_c, ty_d) = dest_fun_type (fastype_of a2)
a68c51dd85b3
working on lambda_prs with examples; polished code of clean_tac
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 1048
val tyinst = map (SOME o (ctyp_of thy)) [ty_a, ty_b, ty_c, ty_d]
a68c51dd85b3
working on lambda_prs with examples; polished code of clean_tac
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 1049
val tinst = [NONE, NONE, SOME (cterm_of thy r1), NONE, SOME (cterm_of thy a2)]
a68c51dd85b3
working on lambda_prs with examples; polished code of clean_tac
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 1050
val lpi = Drule.instantiate' tyinst tinst @{thm lambda_prs}
a68c51dd85b3
working on lambda_prs with examples; polished code of clean_tac
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 1051
val te = @{thm eq_reflection} OF [solve_quotient_assums ctxt (solve_quotient_assums ctxt lpi)]
a68c51dd85b3
working on lambda_prs with examples; polished code of clean_tac
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 1052
val ts = MetaSimplifier.rewrite_rule @{thms id_simps} te
a68c51dd85b3
working on lambda_prs with examples; polished code of clean_tac
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 1053
val tl = Thm.lhs_of ts
a68c51dd85b3
working on lambda_prs with examples; polished code of clean_tac
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 1054
val (insp, inst) = make_inst (term_of tl) (term_of ctrm)
a68c51dd85b3
working on lambda_prs with examples; polished code of clean_tac
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 1055
val ti = Drule.instantiate ([], [(cterm_of thy insp, cterm_of thy inst)]) ts
a68c51dd85b3
working on lambda_prs with examples; polished code of clean_tac
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 1056
(*val _ = tracing "lambda_prs"
a68c51dd85b3
working on lambda_prs with examples; polished code of clean_tac
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 1057
val _ = tracing ("redex:\n" ^ (Syntax.string_of_term ctxt (term_of ctrm)))
a68c51dd85b3
working on lambda_prs with examples; polished code of clean_tac
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 1058
val _ = tracing ("instantiated rule:\n" ^ (Syntax.string_of_term ctxt (prop_of ti)))*)
a68c51dd85b3
working on lambda_prs with examples; polished code of clean_tac
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 1059
in
a68c51dd85b3
working on lambda_prs with examples; polished code of clean_tac
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 1060
Conv.rewr_conv ti ctrm
a68c51dd85b3
working on lambda_prs with examples; polished code of clean_tac
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 1061
end
490
+ − 1062
| _ => Conv.all_conv ctrm
387
+ − 1063
*}
+ − 1064
+ − 1065
ML {*
571
+ − 1066
val lambda_prs_conv =
+ − 1067
More_Conv.top_conv lambda_prs_simple_conv
387
+ − 1068
571
+ − 1069
fun lambda_prs_tac ctxt = CONVERSION (lambda_prs_conv ctxt)
387
+ − 1070
*}
+ − 1071
457
+ − 1072
(*
572
a68c51dd85b3
working on lambda_prs with examples; polished code of clean_tac
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 1073
Cleaning the theorem consists of three rewriting steps.
465
+ − 1074
The first two need to be done before fun_map is unfolded
457
+ − 1075
572
a68c51dd85b3
working on lambda_prs with examples; polished code of clean_tac
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 1076
1) lambda_prs:
469
+ − 1077
(Rep1 ---> Abs2) (\<lambda>x. Rep2 (f (Abs1 x))) ----> f
+ − 1078
572
a68c51dd85b3
working on lambda_prs with examples; polished code of clean_tac
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 1079
Implemented as conversion since it is not a pattern.
469
+ − 1080
572
a68c51dd85b3
working on lambda_prs with examples; polished code of clean_tac
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 1081
2) all_prs (the same for exists):
a68c51dd85b3
working on lambda_prs with examples; polished code of clean_tac
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 1082
Ball (Respects R) ((abs ---> id) f) ----> All f
469
+ − 1083
572
a68c51dd85b3
working on lambda_prs with examples; polished code of clean_tac
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 1084
Rewriting with definitions from the argument defs
a68c51dd85b3
working on lambda_prs with examples; polished code of clean_tac
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 1085
(rep ---> abs) oldConst ----> newconst
469
+ − 1086
572
a68c51dd85b3
working on lambda_prs with examples; polished code of clean_tac
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 1087
3) Quotient_rel_rep:
a68c51dd85b3
working on lambda_prs with examples; polished code of clean_tac
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 1088
Rel (Rep x) (Rep y) ----> x = y
469
+ − 1089
572
a68c51dd85b3
working on lambda_prs with examples; polished code of clean_tac
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 1090
Quotient_abs_rep:
a68c51dd85b3
working on lambda_prs with examples; polished code of clean_tac
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 1091
Abs (Rep x) ----> x
457
+ − 1092
572
a68c51dd85b3
working on lambda_prs with examples; polished code of clean_tac
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 1093
id_simps; fun_map.simps
457
+ − 1094
*)
469
+ − 1095
556
+ − 1096
ML {*
506
+ − 1097
fun clean_tac lthy =
387
+ − 1098
let
498
+ − 1099
val thy = ProofContext.theory_of lthy;
566
+ − 1100
val defs = map (Thm.varifyT o symmetric o #def) (qconsts_dest thy)
572
a68c51dd85b3
working on lambda_prs with examples; polished code of clean_tac
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 1101
(* FIXME: shouldn't the definitions already be varified? *)
567
+ − 1102
val thms1 = @{thms all_prs ex_prs} @ defs
564
96c241932603
moved all_prs and ex_prs out from the conversion into the simplifier
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 1103
val thms2 = @{thms eq_reflection[OF fun_map.simps]}
96c241932603
moved all_prs and ex_prs out from the conversion into the simplifier
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 1104
@ @{thms id_simps Quotient_abs_rep Quotient_rel_rep}
572
a68c51dd85b3
working on lambda_prs with examples; polished code of clean_tac
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 1105
fun simps thms = HOL_basic_ss addsimps thms addSolver quotient_solver
a68c51dd85b3
working on lambda_prs with examples; polished code of clean_tac
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 1106
(* FIXME: use of someting smaller than HOL_basic_ss *)
387
+ − 1107
in
572
a68c51dd85b3
working on lambda_prs with examples; polished code of clean_tac
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 1108
EVERY' [lambda_prs_tac lthy,
a68c51dd85b3
working on lambda_prs with examples; polished code of clean_tac
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 1109
simp_tac (simps thms1),
a68c51dd85b3
working on lambda_prs with examples; polished code of clean_tac
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 1110
simp_tac (simps thms2),
a68c51dd85b3
working on lambda_prs with examples; polished code of clean_tac
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 1111
TRY o rtac refl]
387
+ − 1112
end
+ − 1113
*}
381
+ − 1114
404
+ − 1115
section {* Genralisation of free variables in a goal *}
347
+ − 1116
+ − 1117
ML {*
374
980fdf92a834
fixed the problem with generalising variables; at the moment it is quite a hack
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 1118
fun inst_spec ctrm =
411
c10e314761fa
simplified gen_frees_tac and properly named abstracted variables
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 1119
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>
diff
changeset
+ − 1120
980fdf92a834
fixed the problem with generalising variables; at the moment it is quite a hack
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 1121
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>
diff
changeset
+ − 1122
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>
diff
changeset
+ − 1123
412
+ − 1124
fun all_list xs trm =
411
c10e314761fa
simplified gen_frees_tac and properly named abstracted variables
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 1125
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>
diff
changeset
+ − 1126
c10e314761fa
simplified gen_frees_tac and properly named abstracted variables
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 1127
fun apply_under_Trueprop f =
c10e314761fa
simplified gen_frees_tac and properly named abstracted variables
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 1128
HOLogic.dest_Trueprop #> f #> HOLogic.mk_Trueprop
362
+ − 1129
374
980fdf92a834
fixed the problem with generalising variables; at the moment it is quite a hack
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 1130
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>
diff
changeset
+ − 1131
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>
diff
changeset
+ − 1132
let
980fdf92a834
fixed the problem with generalising variables; at the moment it is quite a hack
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 1133
val thy = ProofContext.theory_of ctxt
411
c10e314761fa
simplified gen_frees_tac and properly named abstracted variables
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 1134
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>
diff
changeset
+ − 1135
val cvrs = map (cterm_of thy o Free) vrs
412
+ − 1136
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>
diff
changeset
+ − 1137
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>
diff
changeset
+ − 1138
val rule = Goal.prove ctxt [] [] goal
411
c10e314761fa
simplified gen_frees_tac and properly named abstracted variables
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 1139
(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>
diff
changeset
+ − 1140
in
980fdf92a834
fixed the problem with generalising variables; at the moment it is quite a hack
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 1141
rtac rule i
980fdf92a834
fixed the problem with generalising variables; at the moment it is quite a hack
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 1142
end)
362
+ − 1143
*}
+ − 1144
402
+ − 1145
section {* General outline of the lifting procedure *}
+ − 1146
383
+ − 1147
(* - A is the original raw theorem *)
+ − 1148
(* - B is the regularized theorem *)
+ − 1149
(* - C is the rep/abs injected version of B *)
+ − 1150
(* - D is the lifted theorem *)
+ − 1151
(* *)
+ − 1152
(* - b is the regularization step *)
+ − 1153
(* - c is the rep/abs injection step *)
+ − 1154
(* - d is the cleaning part *)
+ − 1155
413
+ − 1156
lemma lifting_procedure:
360
+ − 1157
assumes a: "A"
+ − 1158
and b: "A \<Longrightarrow> B"
+ − 1159
and c: "B = C"
+ − 1160
and d: "C = D"
+ − 1161
shows "D"
+ − 1162
using a b c d
+ − 1163
by simp
+ − 1164
374
980fdf92a834
fixed the problem with generalising variables; at the moment it is quite a hack
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 1165
ML {*
412
+ − 1166
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>
diff
changeset
+ − 1167
let
980fdf92a834
fixed the problem with generalising variables; at the moment it is quite a hack
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 1168
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>
diff
changeset
+ − 1169
val qtrm_str = Syntax.string_of_term ctxt qtrm
388
+ − 1170
val msg = [enclose "[" "]" fun_str, "The quotient theorem\n", qtrm_str,
+ − 1171
"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>
diff
changeset
+ − 1172
in
980fdf92a834
fixed the problem with generalising variables; at the moment it is quite a hack
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 1173
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>
diff
changeset
+ − 1174
end
980fdf92a834
fixed the problem with generalising variables; at the moment it is quite a hack
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 1175
*}
980fdf92a834
fixed the problem with generalising variables; at the moment it is quite a hack
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 1176
360
+ − 1177
ML {*
+ − 1178
fun procedure_inst ctxt rtrm qtrm =
+ − 1179
let
+ − 1180
val thy = ProofContext.theory_of ctxt
+ − 1181
val rtrm' = HOLogic.dest_Trueprop rtrm
+ − 1182
val qtrm' = HOLogic.dest_Trueprop qtrm
383
+ − 1183
val reg_goal =
405
+ − 1184
Syntax.check_term ctxt (regularize_trm ctxt rtrm' qtrm')
412
+ − 1185
handle (LIFT_MATCH s) => lift_match_error ctxt s rtrm qtrm
564
96c241932603
moved all_prs and ex_prs out from the conversion into the simplifier
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 1186
val _ = warning "Regularization done."
383
+ − 1187
val inj_goal =
408
+ − 1188
Syntax.check_term ctxt (inj_repabs_trm ctxt (reg_goal, qtrm'))
412
+ − 1189
handle (LIFT_MATCH s) => lift_match_error ctxt s rtrm qtrm
564
96c241932603
moved all_prs and ex_prs out from the conversion into the simplifier
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 1190
val _ = warning "RepAbs Injection done."
360
+ − 1191
in
+ − 1192
Drule.instantiate' []
+ − 1193
[SOME (cterm_of thy rtrm'),
+ − 1194
SOME (cterm_of thy reg_goal),
413
+ − 1195
SOME (cterm_of thy inj_goal)] @{thm lifting_procedure}
360
+ − 1196
end
362
+ − 1197
*}
389
+ − 1198
+ − 1199
(* Left for debugging *)
362
+ − 1200
ML {*
547
+ − 1201
fun procedure_tac ctxt rthm =
389
+ − 1202
ObjectLogic.full_atomize_tac
547
+ − 1203
THEN' gen_frees_tac ctxt
+ − 1204
THEN' CSUBGOAL (fn (gl, i) =>
389
+ − 1205
let
+ − 1206
val rthm' = atomize_thm rthm
547
+ − 1207
val rule = procedure_inst ctxt (prop_of rthm') (term_of gl)
+ − 1208
val thm = Drule.instantiate' [] [SOME (snd (Thm.dest_comb gl))] @{thm QUOT_TRUE_i}
389
+ − 1209
in
547
+ − 1210
(rtac rule THEN' RANGE [rtac rthm', (fn _ => all_tac), rtac thm]) i
+ − 1211
end)
360
+ − 1212
*}
+ − 1213
361
+ − 1214
ML {*
413
+ − 1215
(* FIXME/TODO should only get as arguments the rthm like procedure_tac *)
489
+ − 1216
547
+ − 1217
fun lift_tac ctxt rthm rel_eqv =
389
+ − 1218
ObjectLogic.full_atomize_tac
547
+ − 1219
THEN' gen_frees_tac ctxt
+ − 1220
THEN' CSUBGOAL (fn (gl, i) =>
389
+ − 1221
let
+ − 1222
val rthm' = atomize_thm rthm
547
+ − 1223
val rule = procedure_inst ctxt (prop_of rthm') (term_of gl)
529
+ − 1224
val rel_refl = map (fn x => @{thm equivp_reflp} OF [x]) rel_eqv
547
+ − 1225
val quotients = quotient_rules_get ctxt
527
+ − 1226
val trans2 = map (fn x => @{thm equals_rsp} OF [x]) quotients
547
+ − 1227
val thm = Drule.instantiate' [] [SOME (snd (Thm.dest_comb gl))] @{thm QUOT_TRUE_i}
389
+ − 1228
in
547
+ − 1229
(rtac rule THEN'
+ − 1230
RANGE [rtac rthm',
+ − 1231
regularize_tac ctxt rel_eqv,
+ − 1232
rtac thm THEN' all_inj_repabs_tac ctxt rel_refl trans2,
+ − 1233
clean_tac ctxt]) i
+ − 1234
end)
361
+ − 1235
*}
+ − 1236
198
+ − 1237
end
239
+ − 1238