597
+ − 1
theory QuotMain
648
830b58c2fa94
decoupled QuotProd from QuotMain and also started new cleaning strategy
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 2
imports QuotScript Prove
597
+ − 3
uses ("quotient_info.ML")
725
+ − 4
("quotient_typ.ML")
597
+ − 5
("quotient_def.ML")
+ − 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 equivp: "equivp 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)"
+ − 17
begin
+ − 18
+ − 19
definition
719
+ − 20
abs::"'a \<Rightarrow> 'b"
597
+ − 21
where
719
+ − 22
"abs x \<equiv> Abs (R x)"
597
+ − 23
+ − 24
definition
719
+ − 25
rep::"'b \<Rightarrow> 'a"
597
+ − 26
where
719
+ − 27
"rep a = Eps (Rep a)"
597
+ − 28
+ − 29
lemma lem9:
+ − 30
shows "R (Eps (R x)) = R x"
+ − 31
proof -
+ − 32
have a: "R x x" using equivp by (simp add: equivp_reflp_symp_transp reflp_def)
+ − 33
then have "R x (Eps (R x))" by (rule someI)
+ − 34
then show "R (Eps (R x)) = R x"
+ − 35
using equivp unfolding equivp_def by simp
+ − 36
qed
+ − 37
+ − 38
theorem thm10:
719
+ − 39
shows "abs (rep a) \<equiv> a"
597
+ − 40
apply (rule eq_reflection)
719
+ − 41
unfolding abs_def rep_def
597
+ − 42
proof -
+ − 43
from rep_prop
+ − 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
719
+ − 53
lemma rep_refl:
+ − 54
shows "R (rep a) (rep a)"
+ − 55
unfolding rep_def
597
+ − 56
by (simp add: equivp[simplified equivp_def])
+ − 57
+ − 58
lemma lem7:
+ − 59
shows "(R x = R y) = (Abs (R x) = Abs (R y))"
+ − 60
apply(rule iffI)
+ − 61
apply(simp)
+ − 62
apply(drule rep_inject[THEN iffD2])
+ − 63
apply(simp add: abs_inverse)
+ − 64
done
+ − 65
+ − 66
theorem thm11:
719
+ − 67
shows "R r r' = (abs r = abs r')"
+ − 68
unfolding abs_def
597
+ − 69
by (simp only: equivp[simplified equivp_def] lem7)
+ − 70
+ − 71
719
+ − 72
lemma rep_abs_rsp:
+ − 73
shows "R f (rep (abs g)) = R f g"
+ − 74
and "R (rep (abs g)) f = R g f"
597
+ − 75
by (simp_all add: thm10 thm11)
+ − 76
+ − 77
lemma Quotient:
719
+ − 78
"Quotient R abs rep"
597
+ − 79
apply(unfold Quotient_def)
+ − 80
apply(simp add: thm10)
719
+ − 81
apply(simp add: rep_refl)
597
+ − 82
apply(subst thm11[symmetric])
+ − 83
apply(simp add: equivp[simplified equivp_def])
+ − 84
done
+ − 85
+ − 86
end
+ − 87
+ − 88
section {* type definition for the quotient type *}
+ − 89
+ − 90
(* the auxiliary data for the quotient types *)
+ − 91
use "quotient_info.ML"
+ − 92
699
+ − 93
ML {* print_mapsinfo @{context} *}
+ − 94
597
+ − 95
declare [[map "fun" = (fun_map, fun_rel)]]
615
386a6b1a5203
the lift_tac produces a warning message if one of the three automatic proofs fails
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 96
648
830b58c2fa94
decoupled QuotProd from QuotMain and also started new cleaning strategy
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 97
lemmas [quot_thm] = fun_quotient
597
+ − 98
648
830b58c2fa94
decoupled QuotProd from QuotMain and also started new cleaning strategy
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 99
lemmas [quot_respect] = quot_rel_rsp
597
+ − 100
+ − 101
(* fun_map is not here since equivp is not true *)
648
830b58c2fa94
decoupled QuotProd from QuotMain and also started new cleaning strategy
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 102
lemmas [quot_equiv] = identity_equivp
597
+ − 103
+ − 104
(* definition of the quotient types *)
725
+ − 105
use "quotient_typ.ML"
597
+ − 106
+ − 107
(* lifting of constants *)
+ − 108
use "quotient_def.ML"
+ − 109
+ − 110
section {* Simset setup *}
+ − 111
614
+ − 112
(* Since HOL_basic_ss is too "big" for us, *)
+ − 113
(* we set up our own minimal simpset. *)
597
+ − 114
ML {*
+ − 115
fun mk_minimal_ss ctxt =
+ − 116
Simplifier.context ctxt empty_ss
+ − 117
setsubgoaler asm_simp_tac
+ − 118
setmksimps (mksimps [])
+ − 119
*}
+ − 120
605
120e479ed367
first attempt to deal with Babs in regularise and cleaning (not yet working)
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 121
ML {*
610
2bee5ca44ef5
removed "global" data and lookup functions; had to move a tactic out from the inj_repabs_match tactic since apply_rsp interferes with a trans2 rule for ===>
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 122
fun OF1 thm1 thm2 = thm2 RS thm1
605
120e479ed367
first attempt to deal with Babs in regularise and cleaning (not yet working)
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 123
*}
120e479ed367
first attempt to deal with Babs in regularise and cleaning (not yet working)
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 124
614
+ − 125
section {* Atomize Infrastructure *}
597
+ − 126
+ − 127
lemma atomize_eqv[atomize]:
+ − 128
shows "(Trueprop A \<equiv> Trueprop B) \<equiv> (A \<equiv> B)"
+ − 129
proof
+ − 130
assume "A \<equiv> B"
+ − 131
then show "Trueprop A \<equiv> Trueprop B" by unfold
+ − 132
next
+ − 133
assume *: "Trueprop A \<equiv> Trueprop B"
+ − 134
have "A = B"
+ − 135
proof (cases A)
+ − 136
case True
+ − 137
have "A" by fact
+ − 138
then show "A = B" using * by simp
+ − 139
next
+ − 140
case False
+ − 141
have "\<not>A" by fact
+ − 142
then show "A = B" using * by auto
+ − 143
qed
+ − 144
then show "A \<equiv> B" by (rule eq_reflection)
+ − 145
qed
+ − 146
+ − 147
ML {*
+ − 148
fun atomize_thm thm =
+ − 149
let
+ − 150
val thm' = Thm.freezeT (forall_intr_vars thm)
+ − 151
val thm'' = ObjectLogic.atomize (cprop_of thm')
+ − 152
in
+ − 153
@{thm equal_elim_rule1} OF [thm'', thm']
+ − 154
end
+ − 155
*}
+ − 156
614
+ − 157
section {* Infrastructure about id *}
+ − 158
668
+ − 159
lemmas [id_simps] =
597
+ − 160
fun_map_id[THEN eq_reflection]
+ − 161
id_apply[THEN eq_reflection]
+ − 162
id_def[THEN eq_reflection,symmetric]
+ − 163
612
+ − 164
section {* Computation of the Regularize Goal *}
597
+ − 165
+ − 166
(*
+ − 167
Regularizing an rtrm means:
+ − 168
- quantifiers over a type that needs lifting are replaced by
+ − 169
bounded quantifiers, for example:
+ − 170
\<forall>x. P \<Longrightarrow> \<forall>x \<in> (Respects R). P / All (Respects R) P
+ − 171
+ − 172
the relation R is given by the rty and qty;
+ − 173
+ − 174
- abstractions over a type that needs lifting are replaced
+ − 175
by bounded abstractions:
+ − 176
\<lambda>x. P \<Longrightarrow> Ball (Respects R) (\<lambda>x. P)
+ − 177
+ − 178
- equalities over the type being lifted are replaced by
+ − 179
corresponding relations:
+ − 180
A = B \<Longrightarrow> A \<approx> B
+ − 181
+ − 182
example with more complicated types of A, B:
+ − 183
A = B \<Longrightarrow> (op = \<Longrightarrow> op \<approx>) A B
+ − 184
*)
+ − 185
+ − 186
ML {*
+ − 187
(* builds the relation that is the argument of respects *)
+ − 188
fun mk_resp_arg lthy (rty, qty) =
+ − 189
let
+ − 190
val thy = ProofContext.theory_of lthy
+ − 191
in
+ − 192
if rty = qty
+ − 193
then HOLogic.eq_const rty
+ − 194
else
+ − 195
case (rty, qty) of
+ − 196
(Type (s, tys), Type (s', tys')) =>
+ − 197
if s = s'
+ − 198
then let
+ − 199
val SOME map_info = maps_lookup thy s
+ − 200
val args = map (mk_resp_arg lthy) (tys ~~ tys')
+ − 201
in
+ − 202
list_comb (Const (#relfun map_info, dummyT), args)
+ − 203
end
+ − 204
else let
+ − 205
val SOME qinfo = quotdata_lookup_thy thy s'
+ − 206
(* FIXME: check in this case that the rty and qty *)
+ − 207
(* FIXME: correspond to each other *)
+ − 208
val (s, _) = dest_Const (#rel qinfo)
+ − 209
(* FIXME: the relation should only be the string *)
+ − 210
(* FIXME: and the type needs to be calculated as below; *)
+ − 211
(* FIXME: maybe one should actually have a term *)
+ − 212
(* FIXME: and one needs to force it to have this type *)
+ − 213
in
+ − 214
Const (s, rty --> rty --> @{typ bool})
+ − 215
end
+ − 216
| _ => HOLogic.eq_const dummyT
+ − 217
(* FIXME: check that the types correspond to each other? *)
+ − 218
end
+ − 219
*}
+ − 220
+ − 221
ML {*
+ − 222
val mk_babs = Const (@{const_name Babs}, dummyT)
+ − 223
val mk_ball = Const (@{const_name Ball}, dummyT)
+ − 224
val mk_bex = Const (@{const_name Bex}, dummyT)
+ − 225
val mk_resp = Const (@{const_name Respects}, dummyT)
+ − 226
*}
+ − 227
+ − 228
ML {*
+ − 229
(* - applies f to the subterm of an abstraction, *)
+ − 230
(* otherwise to the given term, *)
+ − 231
(* - used by regularize, therefore abstracted *)
+ − 232
(* variables do not have to be treated specially *)
+ − 233
+ − 234
fun apply_subt f trm1 trm2 =
+ − 235
case (trm1, trm2) of
+ − 236
(Abs (x, T, t), Abs (x', T', t')) => Abs (x, T, f t t')
+ − 237
| _ => f trm1 trm2
+ − 238
+ − 239
(* the major type of All and Ex quantifiers *)
+ − 240
fun qnt_typ ty = domain_type (domain_type ty)
+ − 241
*}
+ − 242
+ − 243
ML {*
632
+ − 244
(* produces a regularized version of rtrm *)
+ − 245
(* - the result is contains dummyT *)
597
+ − 246
(* - does not need any special treatment of *)
+ − 247
(* bound variables *)
+ − 248
+ − 249
fun regularize_trm lthy rtrm qtrm =
+ − 250
case (rtrm, qtrm) of
+ − 251
(Abs (x, ty, t), Abs (x', ty', t')) =>
+ − 252
let
+ − 253
val subtrm = Abs(x, ty, regularize_trm lthy t t')
+ − 254
in
632
+ − 255
if ty = ty' then subtrm
597
+ − 256
else mk_babs $ (mk_resp $ mk_resp_arg lthy (ty, ty')) $ subtrm
+ − 257
end
+ − 258
+ − 259
| (Const (@{const_name "All"}, ty) $ t, Const (@{const_name "All"}, ty') $ t') =>
+ − 260
let
+ − 261
val subtrm = apply_subt (regularize_trm lthy) t t'
+ − 262
in
655
+ − 263
if ty = ty' then Const (@{const_name "All"}, ty) $ subtrm
597
+ − 264
else mk_ball $ (mk_resp $ mk_resp_arg lthy (qnt_typ ty, qnt_typ ty')) $ subtrm
+ − 265
end
+ − 266
+ − 267
| (Const (@{const_name "Ex"}, ty) $ t, Const (@{const_name "Ex"}, ty') $ t') =>
+ − 268
let
+ − 269
val subtrm = apply_subt (regularize_trm lthy) t t'
+ − 270
in
655
+ − 271
if ty = ty' then Const (@{const_name "Ex"}, ty) $ subtrm
597
+ − 272
else mk_bex $ (mk_resp $ mk_resp_arg lthy (qnt_typ ty, qnt_typ ty')) $ subtrm
+ − 273
end
+ − 274
+ − 275
| (* equalities need to be replaced by appropriate equivalence relations *)
+ − 276
(Const (@{const_name "op ="}, ty), Const (@{const_name "op ="}, ty')) =>
632
+ − 277
if ty = ty' then rtrm
597
+ − 278
else mk_resp_arg lthy (domain_type ty, domain_type ty')
+ − 279
+ − 280
| (* in this case we check whether the given equivalence relation is correct *)
+ − 281
(rel, Const (@{const_name "op ="}, ty')) =>
+ − 282
let
+ − 283
val exc = LIFT_MATCH "regularise (relation mismatch)"
+ − 284
val rel_ty = (fastype_of rel) handle TERM _ => raise exc
+ − 285
val rel' = mk_resp_arg lthy (domain_type rel_ty, domain_type ty')
+ − 286
in
655
+ − 287
if rel' = rel then rtrm else raise exc
597
+ − 288
end
663
0dd10a900cae
Different syntax for definitions that allows overloading and retrieving of definitions by matching whole constants.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
+ − 289
| (_, Const (s, Type(st, _))) =>
597
+ − 290
let
+ − 291
fun same_name (Const (s, _)) (Const (s', _)) = (s = s')
+ − 292
| same_name _ _ = false
+ − 293
in
663
0dd10a900cae
Different syntax for definitions that allows overloading and retrieving of definitions by matching whole constants.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
+ − 294
(* TODO/FIXME: This test is not enough *)
0dd10a900cae
Different syntax for definitions that allows overloading and retrieving of definitions by matching whole constants.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
+ − 295
if same_name rtrm qtrm then rtrm
597
+ − 296
else
+ − 297
let
663
0dd10a900cae
Different syntax for definitions that allows overloading and retrieving of definitions by matching whole constants.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
+ − 298
val exc1 = LIFT_MATCH ("regularize (constant " ^ s ^ "(" ^ st ^ ") not found)")
0dd10a900cae
Different syntax for definitions that allows overloading and retrieving of definitions by matching whole constants.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
+ − 299
val exc2 = LIFT_MATCH ("regularize (constant " ^ s ^ "(" ^ st ^ ") mismatch)")
597
+ − 300
val thy = ProofContext.theory_of lthy
663
0dd10a900cae
Different syntax for definitions that allows overloading and retrieving of definitions by matching whole constants.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
+ − 301
val rtrm' = (#rconst (qconsts_lookup thy qtrm)) handle NotFound => raise exc1
597
+ − 302
in
717
337dd914e1cb
deleted struct_match by Pattern.match (fixes a problem in LarryInt)
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 303
if Pattern.matches thy (rtrm', rtrm) then rtrm else
663
0dd10a900cae
Different syntax for definitions that allows overloading and retrieving of definitions by matching whole constants.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
+ − 304
let
717
337dd914e1cb
deleted struct_match by Pattern.match (fixes a problem in LarryInt)
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 305
val _ = tracing ("rtrm := " ^ Syntax.string_of_term @{context} rtrm);
337dd914e1cb
deleted struct_match by Pattern.match (fixes a problem in LarryInt)
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 306
val _ = tracing ("rtrm':= " ^ Syntax.string_of_term @{context} rtrm');
663
0dd10a900cae
Different syntax for definitions that allows overloading and retrieving of definitions by matching whole constants.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
+ − 307
in raise exc2 end
597
+ − 308
end
+ − 309
end
+ − 310
+ − 311
| (t1 $ t2, t1' $ t2') =>
+ − 312
(regularize_trm lthy t1 t1') $ (regularize_trm lthy t2 t2')
+ − 313
+ − 314
| (Free (x, ty), Free (x', ty')) =>
+ − 315
(* this case cannot arrise as we start with two fully atomized terms *)
+ − 316
raise (LIFT_MATCH "regularize (frees)")
+ − 317
+ − 318
| (Bound i, Bound i') =>
632
+ − 319
if i = i' then rtrm
597
+ − 320
else raise (LIFT_MATCH "regularize (bounds mismatch)")
+ − 321
+ − 322
| (rt, qt) =>
695
+ − 323
let val (rts, qts) = (Syntax.string_of_term lthy rt, Syntax.string_of_term lthy qt) in
+ − 324
raise (LIFT_MATCH ("regularize failed (default: " ^ rts ^ "," ^ qts ^ ")"))
+ − 325
end
597
+ − 326
*}
+ − 327
612
+ − 328
section {* Regularize Tactic *}
+ − 329
597
+ − 330
ML {*
+ − 331
fun equiv_tac ctxt =
605
120e479ed367
first attempt to deal with Babs in regularise and cleaning (not yet working)
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 332
REPEAT_ALL_NEW (resolve_tac (equiv_rules_get ctxt))
597
+ − 333
+ − 334
fun equiv_solver_tac ss = equiv_tac (Simplifier.the_context ss)
+ − 335
val equiv_solver = Simplifier.mk_solver' "Equivalence goal solver" equiv_solver_tac
+ − 336
*}
+ − 337
+ − 338
ML {*
+ − 339
fun prep_trm thy (x, (T, t)) =
+ − 340
(cterm_of thy (Var (x, T)), cterm_of thy t)
+ − 341
+ − 342
fun prep_ty thy (x, (S, ty)) =
+ − 343
(ctyp_of thy (TVar (x, S)), ctyp_of thy ty)
+ − 344
*}
+ − 345
+ − 346
ML {*
+ − 347
fun matching_prs thy pat trm =
+ − 348
let
+ − 349
val univ = Unify.matchers thy [(pat, trm)]
+ − 350
val SOME (env, _) = Seq.pull univ
+ − 351
val tenv = Vartab.dest (Envir.term_env env)
+ − 352
val tyenv = Vartab.dest (Envir.type_env env)
+ − 353
in
+ − 354
(map (prep_ty thy) tyenv, map (prep_trm thy) tenv)
+ − 355
end
+ − 356
*}
+ − 357
+ − 358
ML {*
+ − 359
fun calculate_instance ctxt thm redex R1 R2 =
+ − 360
let
+ − 361
val thy = ProofContext.theory_of ctxt
+ − 362
val goal = Const (@{const_name "equivp"}, dummyT) $ R2
+ − 363
|> Syntax.check_term ctxt
+ − 364
|> HOLogic.mk_Trueprop
+ − 365
val eqv_prem = Goal.prove ctxt [] [] goal (fn {context,...} => equiv_tac context 1)
+ − 366
val thm = (@{thm eq_reflection} OF [thm OF [eqv_prem]])
+ − 367
val R1c = cterm_of thy R1
+ − 368
val thmi = Drule.instantiate' [] [SOME R1c] thm
+ − 369
val inst = matching_prs thy (term_of (Thm.lhs_of thmi)) redex
+ − 370
val thm2 = Drule.eta_contraction_rule (Drule.instantiate inst thmi)
+ − 371
in
+ − 372
SOME thm2
+ − 373
end
+ − 374
handle _ => NONE
615
386a6b1a5203
the lift_tac produces a warning message if one of the three automatic proofs fails
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 375
(* FIXME/TODO: what is the place where the exception is raised: matching_prs? *)
597
+ − 376
*}
+ − 377
+ − 378
ML {*
+ − 379
fun ball_bex_range_simproc ss redex =
+ − 380
let
+ − 381
val ctxt = Simplifier.the_context ss
+ − 382
in
+ − 383
case redex of
+ − 384
(Const (@{const_name "Ball"}, _) $ (Const (@{const_name "Respects"}, _) $
+ − 385
(Const (@{const_name "fun_rel"}, _) $ R1 $ R2)) $ _) =>
+ − 386
calculate_instance ctxt @{thm ball_reg_eqv_range} redex R1 R2
+ − 387
| (Const (@{const_name "Bex"}, _) $ (Const (@{const_name "Respects"}, _) $
+ − 388
(Const (@{const_name "fun_rel"}, _) $ R1 $ R2)) $ _) =>
+ − 389
calculate_instance ctxt @{thm bex_reg_eqv_range} redex R1 R2
+ − 390
| _ => NONE
+ − 391
end
+ − 392
*}
+ − 393
+ − 394
lemma eq_imp_rel:
+ − 395
shows "equivp R \<Longrightarrow> a = b \<longrightarrow> R a b"
+ − 396
by (simp add: equivp_reflp)
+ − 397
612
+ − 398
(* Regularize Tactic *)
597
+ − 399
612
+ − 400
(* 0. preliminary simplification step according to *)
+ − 401
thm ball_reg_eqv bex_reg_eqv babs_reg_eqv (* the latter of no use *)
+ − 402
ball_reg_eqv_range bex_reg_eqv_range
+ − 403
(* 1. eliminating simple Ball/Bex instances*)
+ − 404
thm ball_reg_right bex_reg_left
+ − 405
(* 2. monos *)
+ − 406
(* 3. commutation rules for ball and bex *)
+ − 407
thm ball_all_comm bex_ex_comm
+ − 408
(* 4. then rel-equality (which need to be instantiated to avoid loops *)
+ − 409
thm eq_imp_rel
+ − 410
(* 5. then simplification like 0 *)
+ − 411
(* finally jump back to 1 *)
597
+ − 412
697
+ − 413
ML {*
+ − 414
fun quotient_tac ctxt =
+ − 415
REPEAT_ALL_NEW (FIRST'
+ − 416
[rtac @{thm identity_quotient},
+ − 417
resolve_tac (quotient_rules_get ctxt)])
+ − 418
+ − 419
fun quotient_solver_tac ss = quotient_tac (Simplifier.the_context ss)
+ − 420
val quotient_solver = Simplifier.mk_solver' "Quotient goal solver" quotient_solver_tac
+ − 421
*}
612
+ − 422
597
+ − 423
ML {*
+ − 424
fun regularize_tac ctxt =
+ − 425
let
+ − 426
val thy = ProofContext.theory_of ctxt
+ − 427
val pat_ball = @{term "Ball (Respects (R1 ===> R2)) P"}
+ − 428
val pat_bex = @{term "Bex (Respects (R1 ===> R2)) P"}
+ − 429
val simproc = Simplifier.simproc_i thy "" [pat_ball, pat_bex] (K (ball_bex_range_simproc))
+ − 430
val simpset = (mk_minimal_ss ctxt)
697
+ − 431
addsimps @{thms ball_reg_eqv bex_reg_eqv babs_reg_eqv babs_simp}
+ − 432
addsimprocs [simproc] addSolver equiv_solver addSolver quotient_solver
597
+ − 433
(* TODO: Make sure that there are no list_rel, pair_rel etc involved *)
605
120e479ed367
first attempt to deal with Babs in regularise and cleaning (not yet working)
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 434
(* can this cause loops in equiv_tac ? *)
612
+ − 435
val eq_eqvs = map (OF1 @{thm eq_imp_rel}) (equiv_rules_get ctxt)
597
+ − 436
in
+ − 437
simp_tac simpset THEN'
605
120e479ed367
first attempt to deal with Babs in regularise and cleaning (not yet working)
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 438
REPEAT_ALL_NEW (CHANGED o FIRST' [
612
+ − 439
resolve_tac @{thms ball_reg_right bex_reg_left},
597
+ − 440
resolve_tac (Inductive.get_monos ctxt),
612
+ − 441
resolve_tac @{thms ball_all_comm bex_ex_comm},
605
120e479ed367
first attempt to deal with Babs in regularise and cleaning (not yet working)
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 442
resolve_tac eq_eqvs,
597
+ − 443
simp_tac simpset])
+ − 444
end
+ − 445
*}
+ − 446
612
+ − 447
section {* Calculation of the Injected Goal *}
597
+ − 448
+ − 449
(*
+ − 450
Injecting repabs means:
+ − 451
+ − 452
For abstractions:
+ − 453
* If the type of the abstraction doesn't need lifting we recurse.
+ − 454
* If it does we add RepAbs around the whole term and check if the
+ − 455
variable needs lifting.
+ − 456
* If it doesn't then we recurse
+ − 457
* If it does we recurse and put 'RepAbs' around all occurences
+ − 458
of the variable in the obtained subterm. This in combination
+ − 459
with the RepAbs above will let us change the type of the
+ − 460
abstraction with rewriting.
+ − 461
For applications:
+ − 462
* If the term is 'Respects' applied to anything we leave it unchanged
+ − 463
* If the term needs lifting and the head is a constant that we know
+ − 464
how to lift, we put a RepAbs and recurse
+ − 465
* If the term needs lifting and the head is a free applied to subterms
+ − 466
(if it is not applied we treated it in Abs branch) then we
+ − 467
put RepAbs and recurse
+ − 468
* Otherwise just recurse.
+ − 469
*)
+ − 470
+ − 471
ML {*
+ − 472
fun mk_repabs lthy (T, T') trm =
+ − 473
Quotient_Def.get_fun repF lthy (T, T')
+ − 474
$ (Quotient_Def.get_fun absF lthy (T, T') $ trm)
+ − 475
*}
+ − 476
+ − 477
ML {*
+ − 478
(* bound variables need to be treated properly, *)
+ − 479
(* as the type of subterms need to be calculated *)
+ − 480
(* in the abstraction case *)
+ − 481
+ − 482
fun inj_repabs_trm lthy (rtrm, qtrm) =
+ − 483
case (rtrm, qtrm) of
+ − 484
(Const (@{const_name "Ball"}, T) $ r $ t, Const (@{const_name "All"}, _) $ t') =>
+ − 485
Const (@{const_name "Ball"}, T) $ r $ (inj_repabs_trm lthy (t, t'))
+ − 486
+ − 487
| (Const (@{const_name "Bex"}, T) $ r $ t, Const (@{const_name "Ex"}, _) $ t') =>
+ − 488
Const (@{const_name "Bex"}, T) $ r $ (inj_repabs_trm lthy (t, t'))
+ − 489
+ − 490
| (Const (@{const_name "Babs"}, T) $ r $ t, t' as (Abs _)) =>
621
c10a46fa0de9
Added a 'rep_abs' in inj_repabs_trm of babs; and proved two lam examples.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
+ − 491
let
c10a46fa0de9
Added a 'rep_abs' in inj_repabs_trm of babs; and proved two lam examples.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
+ − 492
val rty = fastype_of rtrm
c10a46fa0de9
Added a 'rep_abs' in inj_repabs_trm of babs; and proved two lam examples.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
+ − 493
val qty = fastype_of qtrm
c10a46fa0de9
Added a 'rep_abs' in inj_repabs_trm of babs; and proved two lam examples.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
+ − 494
in
c10a46fa0de9
Added a 'rep_abs' in inj_repabs_trm of babs; and proved two lam examples.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
+ − 495
mk_repabs lthy (rty, qty) (Const (@{const_name "Babs"}, T) $ r $ (inj_repabs_trm lthy (t, t')))
c10a46fa0de9
Added a 'rep_abs' in inj_repabs_trm of babs; and proved two lam examples.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
+ − 496
end
597
+ − 497
+ − 498
| (Abs (x, T, t), Abs (x', T', t')) =>
+ − 499
let
+ − 500
val rty = fastype_of rtrm
+ − 501
val qty = fastype_of qtrm
+ − 502
val (y, s) = Term.dest_abs (x, T, t)
+ − 503
val (_, s') = Term.dest_abs (x', T', t')
+ − 504
val yvar = Free (y, T)
+ − 505
val result = Term.lambda_name (y, yvar) (inj_repabs_trm lthy (s, s'))
+ − 506
in
615
386a6b1a5203
the lift_tac produces a warning message if one of the three automatic proofs fails
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 507
if rty = qty then result
597
+ − 508
else mk_repabs lthy (rty, qty) result
+ − 509
end
+ − 510
+ − 511
| (t $ s, t' $ s') =>
+ − 512
(inj_repabs_trm lthy (t, t')) $ (inj_repabs_trm lthy (s, s'))
+ − 513
+ − 514
| (Free (_, T), Free (_, T')) =>
615
386a6b1a5203
the lift_tac produces a warning message if one of the three automatic proofs fails
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 515
if T = T' then rtrm
597
+ − 516
else mk_repabs lthy (T, T') rtrm
+ − 517
+ − 518
| (_, Const (@{const_name "op ="}, _)) => rtrm
+ − 519
+ − 520
(* FIXME: check here that rtrm is the corresponding definition for the const *)
663
0dd10a900cae
Different syntax for definitions that allows overloading and retrieving of definitions by matching whole constants.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
+ − 521
(* Hasn't it already been checked in regularize? *)
597
+ − 522
| (_, Const (_, T')) =>
+ − 523
let
+ − 524
val rty = fastype_of rtrm
+ − 525
in
615
386a6b1a5203
the lift_tac produces a warning message if one of the three automatic proofs fails
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 526
if rty = T' then rtrm
597
+ − 527
else mk_repabs lthy (rty, T') rtrm
+ − 528
end
+ − 529
+ − 530
| _ => raise (LIFT_MATCH "injection")
+ − 531
*}
+ − 532
612
+ − 533
section {* Injection Tactic *}
597
+ − 534
+ − 535
ML {*
+ − 536
fun solve_quotient_assums ctxt thm =
610
2bee5ca44ef5
removed "global" data and lookup functions; had to move a tactic out from the inj_repabs_match tactic since apply_rsp interferes with a trans2 rule for ===>
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 537
let
2bee5ca44ef5
removed "global" data and lookup functions; had to move a tactic out from the inj_repabs_match tactic since apply_rsp interferes with a trans2 rule for ===>
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 538
val goal = hd (Drule.strip_imp_prems (cprop_of thm))
2bee5ca44ef5
removed "global" data and lookup functions; had to move a tactic out from the inj_repabs_match tactic since apply_rsp interferes with a trans2 rule for ===>
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 539
in
2bee5ca44ef5
removed "global" data and lookup functions; had to move a tactic out from the inj_repabs_match tactic since apply_rsp interferes with a trans2 rule for ===>
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 540
thm OF [Goal.prove_internal [] goal (fn _ => quotient_tac ctxt 1)]
2bee5ca44ef5
removed "global" data and lookup functions; had to move a tactic out from the inj_repabs_match tactic since apply_rsp interferes with a trans2 rule for ===>
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 541
end
2bee5ca44ef5
removed "global" data and lookup functions; had to move a tactic out from the inj_repabs_match tactic since apply_rsp interferes with a trans2 rule for ===>
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 542
handle _ => error "solve_quotient_assums failed. Maybe a quotient_thm is missing"
597
+ − 543
*}
+ − 544
+ − 545
definition
+ − 546
"QUOT_TRUE x \<equiv> True"
+ − 547
+ − 548
ML {*
+ − 549
fun find_qt_asm asms =
+ − 550
let
+ − 551
fun find_fun trm =
+ − 552
case trm of
+ − 553
(Const(@{const_name Trueprop}, _) $ (Const (@{const_name QUOT_TRUE}, _) $ _)) => true
+ − 554
| _ => false
+ − 555
in
+ − 556
case find_first find_fun asms of
+ − 557
SOME (_ $ (_ $ (f $ a))) => (f, a)
+ − 558
| SOME _ => error "find_qt_asm: no pair"
+ − 559
| NONE => error "find_qt_asm: no assumption"
+ − 560
end
+ − 561
*}
+ − 562
+ − 563
(*
+ − 564
To prove that the regularised theorem implies the abs/rep injected,
+ − 565
we try:
+ − 566
+ − 567
1) theorems 'trans2' from the appropriate QUOT_TYPE
+ − 568
2) remove lambdas from both sides: lambda_rsp_tac
+ − 569
3) remove Ball/Bex from the right hand side
+ − 570
4) use user-supplied RSP theorems
+ − 571
5) remove rep_abs from the right side
+ − 572
6) reflexivity of equality
+ − 573
7) split applications of lifted type (apply_rsp)
+ − 574
8) split applications of non-lifted type (cong_tac)
+ − 575
9) apply extentionality
+ − 576
A) reflexivity of the relation
+ − 577
B) assumption
+ − 578
(Lambdas under respects may have left us some assumptions)
+ − 579
C) proving obvious higher order equalities by simplifying fun_rel
+ − 580
(not sure if it is still needed?)
+ − 581
D) unfolding lambda on one side
+ − 582
E) simplifying (= ===> =) for simpler respectfulness
+ − 583
+ − 584
*)
+ − 585
+ − 586
lemma quot_true_dests:
+ − 587
shows QT_all: "QUOT_TRUE (All P) \<Longrightarrow> QUOT_TRUE P"
+ − 588
and QT_ex: "QUOT_TRUE (Ex P) \<Longrightarrow> QUOT_TRUE P"
+ − 589
and QT_lam: "QUOT_TRUE (\<lambda>x. P x) \<Longrightarrow> (\<And>x. QUOT_TRUE (P x))"
+ − 590
and QT_ext: "(\<And>x. QUOT_TRUE (a x) \<Longrightarrow> f x = g x) \<Longrightarrow> (QUOT_TRUE a \<Longrightarrow> f = g)"
655
+ − 591
by (simp_all add: QUOT_TRUE_def ext)
597
+ − 592
+ − 593
lemma QUOT_TRUE_imp: "QUOT_TRUE a \<equiv> QUOT_TRUE b"
+ − 594
by (simp add: QUOT_TRUE_def)
+ − 595
697
+ − 596
lemma regularize_to_injection: "(QUOT_TRUE l \<Longrightarrow> y) \<Longrightarrow> (l = r) \<longrightarrow> y"
+ − 597
by(auto simp add: QUOT_TRUE_def)
+ − 598
597
+ − 599
ML {*
+ − 600
fun quot_true_conv1 ctxt fnctn ctrm =
+ − 601
case (term_of ctrm) of
+ − 602
(Const (@{const_name QUOT_TRUE}, _) $ x) =>
+ − 603
let
+ − 604
val fx = fnctn x;
+ − 605
val thy = ProofContext.theory_of ctxt;
+ − 606
val cx = cterm_of thy x;
+ − 607
val cfx = cterm_of thy fx;
+ − 608
val cxt = ctyp_of thy (fastype_of x);
+ − 609
val cfxt = ctyp_of thy (fastype_of fx);
+ − 610
val thm = Drule.instantiate' [SOME cxt, SOME cfxt] [SOME cx, SOME cfx] @{thm QUOT_TRUE_imp}
+ − 611
in
+ − 612
Conv.rewr_conv thm ctrm
+ − 613
end
+ − 614
*}
+ − 615
+ − 616
ML {*
+ − 617
fun quot_true_conv ctxt fnctn ctrm =
+ − 618
case (term_of ctrm) of
+ − 619
(Const (@{const_name QUOT_TRUE}, _) $ _) =>
+ − 620
quot_true_conv1 ctxt fnctn ctrm
+ − 621
| _ $ _ => Conv.comb_conv (quot_true_conv ctxt fnctn) ctrm
+ − 622
| Abs _ => Conv.abs_conv (fn (_, ctxt) => quot_true_conv ctxt fnctn) ctxt ctrm
+ − 623
| _ => Conv.all_conv ctrm
+ − 624
*}
+ − 625
+ − 626
ML {*
+ − 627
fun quot_true_tac ctxt fnctn = CONVERSION
+ − 628
((Conv.params_conv ~1 (fn ctxt =>
+ − 629
(Conv.prems_conv ~1 (quot_true_conv ctxt fnctn)))) ctxt)
+ − 630
*}
+ − 631
+ − 632
ML {* fun dest_comb (f $ a) = (f, a) *}
+ − 633
ML {* fun dest_bcomb ((_ $ l) $ r) = (l, r) *}
+ − 634
(* TODO: Can this be done easier? *)
+ − 635
ML {*
+ − 636
fun unlam t =
+ − 637
case t of
+ − 638
(Abs a) => snd (Term.dest_abs a)
+ − 639
| _ => unlam (Abs("", domain_type (fastype_of t), (incr_boundvars 1 t) $ (Bound 0)))
+ − 640
*}
+ − 641
+ − 642
ML {*
+ − 643
fun dest_fun_type (Type("fun", [T, S])) = (T, S)
+ − 644
| dest_fun_type _ = error "dest_fun_type"
+ − 645
*}
+ − 646
+ − 647
ML {*
+ − 648
val bare_concl = HOLogic.dest_Trueprop o Logic.strip_assums_concl
+ − 649
*}
+ − 650
+ − 651
ML {*
+ − 652
val apply_rsp_tac =
+ − 653
Subgoal.FOCUS (fn {concl, asms, context,...} =>
+ − 654
case ((HOLogic.dest_Trueprop (term_of concl))) of
+ − 655
((R2 $ (f $ x) $ (g $ y))) =>
+ − 656
(let
+ − 657
val (asmf, asma) = find_qt_asm (map term_of asms);
+ − 658
in
+ − 659
if (fastype_of asmf) = (fastype_of f) then no_tac else let
+ − 660
val ty_a = fastype_of x;
+ − 661
val ty_b = fastype_of asma;
+ − 662
val ty_c = range_type (type_of f);
+ − 663
val thy = ProofContext.theory_of context;
+ − 664
val ty_inst = map (SOME o (ctyp_of thy)) [ty_a, ty_b, ty_c];
+ − 665
val thm = Drule.instantiate' ty_inst [] @{thm apply_rsp}
+ − 666
val te = solve_quotient_assums context thm
+ − 667
val t_inst = map (SOME o (cterm_of thy)) [R2, f, g, x, y];
+ − 668
val thm = Drule.instantiate' [] t_inst te
+ − 669
in
+ − 670
compose_tac (false, thm, 2) 1
+ − 671
end
+ − 672
end
+ − 673
handle ERROR "find_qt_asm: no pair" => no_tac)
+ − 674
| _ => no_tac)
+ − 675
*}
+ − 676
+ − 677
ML {*
629
+ − 678
fun equals_rsp_tac R ctxt =
+ − 679
let
690
+ − 680
val ty = domain_type (fastype_of R);
629
+ − 681
val thy = ProofContext.theory_of ctxt
690
+ − 682
val thm = Drule.instantiate'
+ − 683
[SOME (ctyp_of thy ty)] [SOME (cterm_of thy R)] @{thm equals_rsp}
629
+ − 684
in
690
+ − 685
rtac thm THEN' quotient_tac ctxt
629
+ − 686
end
690
+ − 687
handle THM _ => K no_tac
+ − 688
| TYPE _ => K no_tac
+ − 689
| TERM _ => K no_tac
629
+ − 690
*}
+ − 691
+ − 692
ML {*
597
+ − 693
fun rep_abs_rsp_tac ctxt =
+ − 694
SUBGOAL (fn (goal, i) =>
+ − 695
case (bare_concl goal) of
+ − 696
(rel $ _ $ (rep $ (abs $ _))) =>
+ − 697
(let
+ − 698
val thy = ProofContext.theory_of ctxt;
+ − 699
val (ty_a, ty_b) = dest_fun_type (fastype_of abs);
+ − 700
val ty_inst = map (SOME o (ctyp_of thy)) [ty_a, ty_b];
+ − 701
val t_inst = map (SOME o (cterm_of thy)) [rel, abs, rep];
+ − 702
val thm = Drule.instantiate' ty_inst t_inst @{thm rep_abs_rsp}
+ − 703
val te = solve_quotient_assums ctxt thm
+ − 704
in
+ − 705
rtac te i
+ − 706
end
+ − 707
handle _ => no_tac)
+ − 708
| _ => no_tac)
+ − 709
*}
+ − 710
+ − 711
ML {*
629
+ − 712
fun inj_repabs_tac_match ctxt = SUBGOAL (fn (goal, i) =>
597
+ − 713
(case (bare_concl goal) of
+ − 714
(* (R1 ===> R2) (\<lambda>x\<dots>) (\<lambda>y\<dots>) ----> \<lbrakk>R1 x y\<rbrakk> \<Longrightarrow> R2 (\<dots>x) (\<dots>y) *)
+ − 715
((Const (@{const_name fun_rel}, _) $ _ $ _) $ (Abs _) $ (Abs _))
+ − 716
=> rtac @{thm fun_rel_id} THEN' quot_true_tac ctxt unlam
+ − 717
+ − 718
(* (op =) (Ball\<dots>) (Ball\<dots>) ----> (op =) (\<dots>) (\<dots>) *)
+ − 719
| (Const (@{const_name "op ="},_) $
+ − 720
(Const(@{const_name Ball},_) $ (Const (@{const_name Respects}, _) $ _) $ _) $
+ − 721
(Const(@{const_name Ball},_) $ (Const (@{const_name Respects}, _) $ _) $ _))
+ − 722
=> rtac @{thm ball_rsp} THEN' dtac @{thm QT_all}
+ − 723
+ − 724
(* (R1 ===> op =) (Ball\<dots>) (Ball\<dots>) ----> \<lbrakk>R1 x y\<rbrakk> \<Longrightarrow> (Ball\<dots>x) = (Ball\<dots>y) *)
+ − 725
| (Const (@{const_name fun_rel}, _) $ _ $ _) $
+ − 726
(Const(@{const_name Ball},_) $ (Const (@{const_name Respects}, _) $ _) $ _) $
+ − 727
(Const(@{const_name Ball},_) $ (Const (@{const_name Respects}, _) $ _) $ _)
+ − 728
=> rtac @{thm fun_rel_id} THEN' quot_true_tac ctxt unlam
+ − 729
+ − 730
(* (op =) (Bex\<dots>) (Bex\<dots>) ----> (op =) (\<dots>) (\<dots>) *)
+ − 731
| Const (@{const_name "op ="},_) $
+ − 732
(Const(@{const_name Bex},_) $ (Const (@{const_name Respects}, _) $ _) $ _) $
+ − 733
(Const(@{const_name Bex},_) $ (Const (@{const_name Respects}, _) $ _) $ _)
+ − 734
=> rtac @{thm bex_rsp} THEN' dtac @{thm QT_ex}
+ − 735
+ − 736
(* (R1 ===> op =) (Bex\<dots>) (Bex\<dots>) ----> \<lbrakk>R1 x y\<rbrakk> \<Longrightarrow> (Bex\<dots>x) = (Bex\<dots>y) *)
+ − 737
| (Const (@{const_name fun_rel}, _) $ _ $ _) $
+ − 738
(Const(@{const_name Bex},_) $ (Const (@{const_name Respects}, _) $ _) $ _) $
+ − 739
(Const(@{const_name Bex},_) $ (Const (@{const_name Respects}, _) $ _) $ _)
+ − 740
=> rtac @{thm fun_rel_id} THEN' quot_true_tac ctxt unlam
+ − 741
+ − 742
| (_ $
+ − 743
(Const(@{const_name Babs},_) $ (Const (@{const_name Respects}, _) $ _) $ _) $
+ − 744
(Const(@{const_name Babs},_) $ (Const (@{const_name Respects}, _) $ _) $ _))
+ − 745
=> rtac @{thm babs_rsp} THEN' RANGE [quotient_tac ctxt]
+ − 746
629
+ − 747
| Const (@{const_name "op ="},_) $ (R $ _ $ _) $ (_ $ _ $ _) => (rtac @{thm refl} ORELSE'
+ − 748
(equals_rsp_tac R ctxt THEN' RANGE [
+ − 749
quot_true_tac ctxt (fst o dest_bcomb), quot_true_tac ctxt (snd o dest_bcomb)]))
+ − 750
597
+ − 751
(* reflexivity of operators arising from Cong_tac *)
629
+ − 752
| Const (@{const_name "op ="},_) $ _ $ _ => rtac @{thm refl}
597
+ − 753
+ − 754
(* respectfulness of constants; in particular of a simple relation *)
+ − 755
| _ $ (Const _) $ (Const _) (* fun_rel, list_rel, etc but not equality *)
+ − 756
=> resolve_tac (rsp_rules_get ctxt) THEN_ALL_NEW quotient_tac ctxt
+ − 757
+ − 758
(* R (\<dots>) (Rep (Abs \<dots>)) ----> R (\<dots>) (\<dots>) *)
+ − 759
(* observe ---> *)
624
c4299ce27e46
Removed pattern from quot_rel_rsp, since list_rel and all used introduced ones cannot be patterned
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
+ − 760
| _ $ _ $ _
c4299ce27e46
Removed pattern from quot_rel_rsp, since list_rel and all used introduced ones cannot be patterned
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
+ − 761
=> (rtac @{thm quot_rel_rsp} THEN_ALL_NEW quotient_tac ctxt) ORELSE' rep_abs_rsp_tac ctxt
597
+ − 762
+ − 763
| _ => error "inj_repabs_tac not a relation"
+ − 764
) i)
+ − 765
*}
+ − 766
+ − 767
ML {*
629
+ − 768
fun inj_repabs_step_tac ctxt rel_refl =
597
+ − 769
(FIRST' [
686
+ − 770
inj_repabs_tac_match ctxt,
597
+ − 771
(* R (t $ \<dots>) (t' $ \<dots>) ----> apply_rsp provided type of t needs lifting *)
610
2bee5ca44ef5
removed "global" data and lookup functions; had to move a tactic out from the inj_repabs_match tactic since apply_rsp interferes with a trans2 rule for ===>
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 772
686
+ − 773
apply_rsp_tac ctxt THEN'
+ − 774
RANGE [quot_true_tac ctxt (fst o dest_comb), quot_true_tac ctxt (snd o dest_comb)],
610
2bee5ca44ef5
removed "global" data and lookup functions; had to move a tactic out from the inj_repabs_match tactic since apply_rsp interferes with a trans2 rule for ===>
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 775
597
+ − 776
(* (op =) (t $ \<dots>) (t' $ \<dots>) ----> Cong provided type of t does not need lifting *)
+ − 777
(* merge with previous tactic *)
686
+ − 778
Cong_Tac.cong_tac @{thm cong} THEN'
+ − 779
RANGE [quot_true_tac ctxt (fst o dest_comb), quot_true_tac ctxt (snd o dest_comb)],
610
2bee5ca44ef5
removed "global" data and lookup functions; had to move a tactic out from the inj_repabs_match tactic since apply_rsp interferes with a trans2 rule for ===>
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 780
597
+ − 781
(* (op =) (\<lambda>x\<dots>) (\<lambda>x\<dots>) ----> (op =) (\<dots>) (\<dots>) *)
686
+ − 782
rtac @{thm ext} THEN' quot_true_tac ctxt unlam,
610
2bee5ca44ef5
removed "global" data and lookup functions; had to move a tactic out from the inj_repabs_match tactic since apply_rsp interferes with a trans2 rule for ===>
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 783
597
+ − 784
(* resolving with R x y assumptions *)
686
+ − 785
atac,
610
2bee5ca44ef5
removed "global" data and lookup functions; had to move a tactic out from the inj_repabs_match tactic since apply_rsp interferes with a trans2 rule for ===>
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 786
597
+ − 787
(* reflexivity of the basic relations *)
+ − 788
(* R \<dots> \<dots> *)
686
+ − 789
resolve_tac rel_refl])
597
+ − 790
*}
+ − 791
+ − 792
ML {*
610
2bee5ca44ef5
removed "global" data and lookup functions; had to move a tactic out from the inj_repabs_match tactic since apply_rsp interferes with a trans2 rule for ===>
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 793
fun inj_repabs_tac ctxt =
2bee5ca44ef5
removed "global" data and lookup functions; had to move a tactic out from the inj_repabs_match tactic since apply_rsp interferes with a trans2 rule for ===>
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 794
let
612
+ − 795
val rel_refl = map (OF1 @{thm equivp_reflp}) (equiv_rules_get ctxt)
610
2bee5ca44ef5
removed "global" data and lookup functions; had to move a tactic out from the inj_repabs_match tactic since apply_rsp interferes with a trans2 rule for ===>
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 796
in
629
+ − 797
inj_repabs_step_tac ctxt rel_refl
610
2bee5ca44ef5
removed "global" data and lookup functions; had to move a tactic out from the inj_repabs_match tactic since apply_rsp interferes with a trans2 rule for ===>
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 798
end
2bee5ca44ef5
removed "global" data and lookup functions; had to move a tactic out from the inj_repabs_match tactic since apply_rsp interferes with a trans2 rule for ===>
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 799
2bee5ca44ef5
removed "global" data and lookup functions; had to move a tactic out from the inj_repabs_match tactic since apply_rsp interferes with a trans2 rule for ===>
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 800
fun all_inj_repabs_tac ctxt =
2bee5ca44ef5
removed "global" data and lookup functions; had to move a tactic out from the inj_repabs_match tactic since apply_rsp interferes with a trans2 rule for ===>
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 801
REPEAT_ALL_NEW (inj_repabs_tac ctxt)
597
+ − 802
*}
+ − 803
615
386a6b1a5203
the lift_tac produces a warning message if one of the three automatic proofs fails
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 804
section {* Cleaning of the Theorem *}
597
+ − 805
659
+ − 806
ML {*
+ − 807
fun fun_map_simple_conv xs ctxt ctrm =
+ − 808
case (term_of ctrm) of
+ − 809
((Const (@{const_name "fun_map"}, _) $ _ $ _) $ h $ _) =>
+ − 810
if (member (op=) xs h)
+ − 811
then Conv.all_conv ctrm
+ − 812
else Conv.rewr_conv @{thm fun_map.simps[THEN eq_reflection]} ctrm
+ − 813
| _ => Conv.all_conv ctrm
+ − 814
+ − 815
fun fun_map_conv xs ctxt ctrm =
+ − 816
case (term_of ctrm) of
+ − 817
_ $ _ => (Conv.comb_conv (fun_map_conv xs ctxt) then_conv
+ − 818
fun_map_simple_conv xs ctxt) ctrm
+ − 819
| Abs _ => Conv.abs_conv (fn (x, ctxt) => fun_map_conv ((term_of x)::xs) ctxt) ctxt ctrm
+ − 820
| _ => Conv.all_conv ctrm
+ − 821
+ − 822
fun fun_map_tac ctxt = CONVERSION (fun_map_conv [] ctxt)
+ − 823
*}
+ − 824
694
+ − 825
(* Since the patterns for the lhs are different; there are 2 different make-insts *)
631
+ − 826
(* 1: does ? \<rightarrow> id *)
694
+ − 827
(* 2: does ? \<rightarrow> non-id *)
597
+ − 828
ML {*
+ − 829
fun make_inst lhs t =
+ − 830
let
+ − 831
val _ $ (Abs (_, _, (f as Var (_, Type ("fun", [T, _]))) $ u)) = lhs;
+ − 832
val _ $ (Abs (_, _, g)) = t;
+ − 833
fun mk_abs i t =
+ − 834
if incr_boundvars i u aconv t then Bound i
+ − 835
else (case t of
+ − 836
t1 $ t2 => mk_abs i t1 $ mk_abs i t2
+ − 837
| Abs (s, T, t') => Abs (s, T, mk_abs (i + 1) t')
+ − 838
| Bound j => if i = j then error "make_inst" else t
+ − 839
| _ => t);
+ − 840
in (f, Abs ("x", T, mk_abs 0 g)) end;
+ − 841
*}
+ − 842
602
e56eeb9fedb3
make_inst for lambda_prs where the second quotient is not identity.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
+ − 843
ML {*
e56eeb9fedb3
make_inst for lambda_prs where the second quotient is not identity.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
+ − 844
fun make_inst2 lhs t =
e56eeb9fedb3
make_inst for lambda_prs where the second quotient is not identity.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
+ − 845
let
e56eeb9fedb3
make_inst for lambda_prs where the second quotient is not identity.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
+ − 846
val _ $ (Abs (_, _, (_ $ ((f as Var (_, Type ("fun", [T, _]))) $ u)))) = lhs;
631
+ − 847
val _ $ (Abs (_, _, (_ $ g))) = t;
+ − 848
fun mk_abs i t =
+ − 849
if incr_boundvars i u aconv t then Bound i
+ − 850
else (case t of
+ − 851
t1 $ t2 => mk_abs i t1 $ mk_abs i t2
+ − 852
| Abs (s, T, t') => Abs (s, T, mk_abs (i + 1) t')
+ − 853
| Bound j => if i = j then error "make_inst" else t
+ − 854
| _ => t);
+ − 855
in (f, Abs ("x", T, mk_abs 0 g)) end;
+ − 856
*}
+ − 857
+ − 858
ML {*
597
+ − 859
fun lambda_prs_simple_conv ctxt ctrm =
+ − 860
case (term_of ctrm) of
602
e56eeb9fedb3
make_inst for lambda_prs where the second quotient is not identity.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
+ − 861
((Const (@{const_name fun_map}, _) $ r1 $ a2) $ (Abs _)) =>
608
+ − 862
(let
597
+ − 863
val thy = ProofContext.theory_of ctxt
+ − 864
val (ty_b, ty_a) = dest_fun_type (fastype_of r1)
+ − 865
val (ty_c, ty_d) = dest_fun_type (fastype_of a2)
+ − 866
val tyinst = map (SOME o (ctyp_of thy)) [ty_a, ty_b, ty_c, ty_d]
+ − 867
val tinst = [NONE, NONE, SOME (cterm_of thy r1), NONE, SOME (cterm_of thy a2)]
+ − 868
val lpi = Drule.instantiate' tyinst tinst @{thm lambda_prs}
+ − 869
val te = @{thm eq_reflection} OF [solve_quotient_assums ctxt (solve_quotient_assums ctxt lpi)]
602
e56eeb9fedb3
make_inst for lambda_prs where the second quotient is not identity.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
+ − 870
val ti =
e56eeb9fedb3
make_inst for lambda_prs where the second quotient is not identity.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
+ − 871
(let
614
+ − 872
val ts = MetaSimplifier.rewrite_rule (id_simps_get ctxt) te
602
e56eeb9fedb3
make_inst for lambda_prs where the second quotient is not identity.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
+ − 873
val (insp, inst) = make_inst (term_of (Thm.lhs_of ts)) (term_of ctrm)
e56eeb9fedb3
make_inst for lambda_prs where the second quotient is not identity.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
+ − 874
in
e56eeb9fedb3
make_inst for lambda_prs where the second quotient is not identity.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
+ − 875
Drule.instantiate ([], [(cterm_of thy insp, cterm_of thy inst)]) ts
608
+ − 876
end handle _ => (* TODO handle only Bind | Error "make_inst" *)
602
e56eeb9fedb3
make_inst for lambda_prs where the second quotient is not identity.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
+ − 877
let
631
+ − 878
val ts = MetaSimplifier.rewrite_rule (id_simps_get ctxt) te
+ − 879
val _ = tracing ("ts rule:\n" ^ (Syntax.string_of_term ctxt (prop_of ts)));
+ − 880
val _ = tracing ("redex:\n" ^ (Syntax.string_of_term ctxt (term_of ctrm)));
+ − 881
val (insp, inst) = make_inst2 (term_of (Thm.lhs_of ts)) (term_of ctrm)
+ − 882
in
+ − 883
Drule.instantiate ([], [(cterm_of thy insp, cterm_of thy inst)]) ts
+ − 884
end handle _ => (* TODO handle only Bind | Error "make_inst" *)
+ − 885
let
662
+ − 886
val (insp, inst) = make_inst2 (term_of (Thm.lhs_of te)) (term_of ctrm)
602
e56eeb9fedb3
make_inst for lambda_prs where the second quotient is not identity.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
+ − 887
val td = Drule.instantiate ([], [(cterm_of thy insp, cterm_of thy inst)]) te
e56eeb9fedb3
make_inst for lambda_prs where the second quotient is not identity.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
+ − 888
in
614
+ − 889
MetaSimplifier.rewrite_rule (id_simps_get ctxt) td
602
e56eeb9fedb3
make_inst for lambda_prs where the second quotient is not identity.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
+ − 890
end);
e56eeb9fedb3
make_inst for lambda_prs where the second quotient is not identity.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
+ − 891
val _ = if not (Term.is_Const a2 andalso fst (dest_Const a2) = @{const_name "id"}) then
597
+ − 892
(tracing "lambda_prs";
+ − 893
tracing ("redex:\n" ^ (Syntax.string_of_term ctxt (term_of ctrm)));
+ − 894
tracing ("lpi rule:\n" ^ (Syntax.string_of_term ctxt (prop_of lpi)));
+ − 895
tracing ("te rule:\n" ^ (Syntax.string_of_term ctxt (prop_of te)));
602
e56eeb9fedb3
make_inst for lambda_prs where the second quotient is not identity.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
+ − 896
tracing ("ti rule:\n" ^ (Syntax.string_of_term ctxt (prop_of ti))))
597
+ − 897
else ()
631
+ − 898
597
+ − 899
in
+ − 900
Conv.rewr_conv ti ctrm
+ − 901
end
608
+ − 902
handle _ => Conv.all_conv ctrm)
597
+ − 903
| _ => Conv.all_conv ctrm
+ − 904
*}
+ − 905
+ − 906
ML {*
+ − 907
val lambda_prs_conv =
+ − 908
More_Conv.top_conv lambda_prs_simple_conv
+ − 909
+ − 910
fun lambda_prs_tac ctxt = CONVERSION (lambda_prs_conv ctxt)
+ − 911
*}
+ − 912
659
+ − 913
(* 1. folding of definitions and preservation lemmas; *)
+ − 914
(* and simplification with *)
+ − 915
thm babs_prs all_prs ex_prs
+ − 916
(* 2. unfolding of ---> in front of everything, except *)
+ − 917
(* bound variables *)
660
+ − 918
thm fun_map.simps
615
386a6b1a5203
the lift_tac produces a warning message if one of the three automatic proofs fails
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 919
(* 3. simplification with *)
661
+ − 920
thm lambda_prs
660
+ − 921
(* 4. simplification with *)
659
+ − 922
thm Quotient_abs_rep Quotient_rel_rep id_simps
660
+ − 923
(* 5. Test for refl *)
597
+ − 924
652
d8f07b5bcfae
implemented cleaning strategy with fun_map.simps on non-bounded variables; still a few rough edges
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 925
ML {*
597
+ − 926
fun clean_tac lthy =
+ − 927
let
+ − 928
val thy = ProofContext.theory_of lthy;
+ − 929
val defs = map (Thm.varifyT o symmetric o #def) (qconsts_dest thy)
615
386a6b1a5203
the lift_tac produces a warning message if one of the three automatic proofs fails
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 930
(* FIXME: why is the Thm.varifyT needed: example where it fails is LamEx *)
658
+ − 931
656
c86a47d4966e
Temporarily repeated fun_map_tac 4 times. Cleaning for all examples work.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
+ − 932
val thms1 = defs @ (prs_rules_get lthy) @ @{thms babs_prs all_prs ex_prs}
658
+ − 933
val thms2 = @{thms Quotient_abs_rep Quotient_rel_rep} @ (id_simps_get lthy)
597
+ − 934
fun simps thms = (mk_minimal_ss lthy) addsimps thms addSolver quotient_solver
+ − 935
in
648
830b58c2fa94
decoupled QuotProd from QuotMain and also started new cleaning strategy
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 936
EVERY' [simp_tac (simps thms1),
658
+ − 937
fun_map_tac lthy,
648
830b58c2fa94
decoupled QuotProd from QuotMain and also started new cleaning strategy
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 938
lambda_prs_tac lthy,
597
+ − 939
simp_tac (simps thms2),
+ − 940
TRY o rtac refl]
+ − 941
end
+ − 942
*}
+ − 943
689
+ − 944
section {* Tactic for Genralisation of Free Variables in a Goal *}
597
+ − 945
+ − 946
ML {*
+ − 947
fun inst_spec ctrm =
+ − 948
Drule.instantiate' [SOME (ctyp_of_term ctrm)] [NONE, SOME ctrm] @{thm spec}
+ − 949
+ − 950
fun inst_spec_tac ctrms =
+ − 951
EVERY' (map (dtac o inst_spec) ctrms)
+ − 952
+ − 953
fun all_list xs trm =
+ − 954
fold (fn (x, T) => fn t' => HOLogic.mk_all (x, T, t')) xs trm
+ − 955
+ − 956
fun apply_under_Trueprop f =
+ − 957
HOLogic.dest_Trueprop #> f #> HOLogic.mk_Trueprop
+ − 958
+ − 959
fun gen_frees_tac ctxt =
+ − 960
SUBGOAL (fn (concl, i) =>
+ − 961
let
+ − 962
val thy = ProofContext.theory_of ctxt
+ − 963
val vrs = Term.add_frees concl []
+ − 964
val cvrs = map (cterm_of thy o Free) vrs
+ − 965
val concl' = apply_under_Trueprop (all_list vrs) concl
+ − 966
val goal = Logic.mk_implies (concl', concl)
+ − 967
val rule = Goal.prove ctxt [] [] goal
+ − 968
(K (EVERY1 [inst_spec_tac (rev cvrs), atac]))
+ − 969
in
+ − 970
rtac rule i
+ − 971
end)
+ − 972
*}
+ − 973
699
+ − 974
section {* The General Shape of the Lifting Procedure *}
597
+ − 975
699
+ − 976
(* - A is the original raw theorem *)
+ − 977
(* - B is the regularized theorem *)
703
8b2c46e11674
reformulated the lemma lifting_procedure as ML value; gave better warning message for injection case
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 978
(* - C is the rep/abs injected version of B *)
699
+ − 979
(* - D is the lifted theorem *)
+ − 980
(* *)
703
8b2c46e11674
reformulated the lemma lifting_procedure as ML value; gave better warning message for injection case
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 981
(* - 1st prem is the regularization step *)
8b2c46e11674
reformulated the lemma lifting_procedure as ML value; gave better warning message for injection case
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 982
(* - 2nd prem is the rep/abs injection step *)
8b2c46e11674
reformulated the lemma lifting_procedure as ML value; gave better warning message for injection case
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 983
(* - 3rd prem is the cleaning part *)
699
+ − 984
(* *)
703
8b2c46e11674
reformulated the lemma lifting_procedure as ML value; gave better warning message for injection case
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 985
(* the QUOT_TRUE premise in 2 records the lifted theorem *)
597
+ − 986
703
8b2c46e11674
reformulated the lemma lifting_procedure as ML value; gave better warning message for injection case
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 987
ML {*
8b2c46e11674
reformulated the lemma lifting_procedure as ML value; gave better warning message for injection case
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 988
val lifting_procedure =
8b2c46e11674
reformulated the lemma lifting_procedure as ML value; gave better warning message for injection case
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 989
@{lemma "\<lbrakk>A; A \<longrightarrow> B; QUOT_TRUE D \<Longrightarrow> B = C; C = D\<rbrakk> \<Longrightarrow> D" by (simp add: QUOT_TRUE_def)}
8b2c46e11674
reformulated the lemma lifting_procedure as ML value; gave better warning message for injection case
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 990
*}
597
+ − 991
+ − 992
ML {*
+ − 993
fun lift_match_error ctxt fun_str rtrm qtrm =
+ − 994
let
+ − 995
val rtrm_str = Syntax.string_of_term ctxt rtrm
+ − 996
val qtrm_str = Syntax.string_of_term ctxt qtrm
704
+ − 997
val msg = cat_lines [enclose "[" "]" fun_str, "The quotient theorem", qtrm_str,
+ − 998
"", "does not match with original theorem", rtrm_str]
597
+ − 999
in
704
+ − 1000
error msg
597
+ − 1001
end
+ − 1002
*}
+ − 1003
+ − 1004
ML {*
+ − 1005
fun procedure_inst ctxt rtrm qtrm =
+ − 1006
let
+ − 1007
val thy = ProofContext.theory_of ctxt
+ − 1008
val rtrm' = HOLogic.dest_Trueprop rtrm
+ − 1009
val qtrm' = HOLogic.dest_Trueprop qtrm
+ − 1010
val reg_goal =
+ − 1011
Syntax.check_term ctxt (regularize_trm ctxt rtrm' qtrm')
+ − 1012
handle (LIFT_MATCH s) => lift_match_error ctxt s rtrm qtrm
+ − 1013
val inj_goal =
+ − 1014
Syntax.check_term ctxt (inj_repabs_trm ctxt (reg_goal, qtrm'))
+ − 1015
handle (LIFT_MATCH s) => lift_match_error ctxt s rtrm qtrm
+ − 1016
in
+ − 1017
Drule.instantiate' []
+ − 1018
[SOME (cterm_of thy rtrm'),
+ − 1019
SOME (cterm_of thy reg_goal),
688
+ − 1020
NONE,
703
8b2c46e11674
reformulated the lemma lifting_procedure as ML value; gave better warning message for injection case
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 1021
SOME (cterm_of thy inj_goal)] lifting_procedure
597
+ − 1022
end
+ − 1023
*}
+ − 1024
+ − 1025
ML {*
616
+ − 1026
(* the tactic leaves three subgoals to be proved *)
597
+ − 1027
fun procedure_tac ctxt rthm =
+ − 1028
ObjectLogic.full_atomize_tac
+ − 1029
THEN' gen_frees_tac ctxt
610
2bee5ca44ef5
removed "global" data and lookup functions; had to move a tactic out from the inj_repabs_match tactic since apply_rsp interferes with a trans2 rule for ===>
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 1030
THEN' CSUBGOAL (fn (goal, i) =>
597
+ − 1031
let
+ − 1032
val rthm' = atomize_thm rthm
610
2bee5ca44ef5
removed "global" data and lookup functions; had to move a tactic out from the inj_repabs_match tactic since apply_rsp interferes with a trans2 rule for ===>
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 1033
val rule = procedure_inst ctxt (prop_of rthm') (term_of goal)
597
+ − 1034
in
688
+ − 1035
(rtac rule THEN' rtac rthm') i
597
+ − 1036
end)
+ − 1037
*}
+ − 1038
689
+ − 1039
section {* Automatic Proofs *}
+ − 1040
612
+ − 1041
ML {*
616
+ − 1042
fun SOLVES' tac = tac THEN_ALL_NEW (K no_tac)
615
386a6b1a5203
the lift_tac produces a warning message if one of the three automatic proofs fails
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 1043
703
8b2c46e11674
reformulated the lemma lifting_procedure as ML value; gave better warning message for injection case
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 1044
(* prints warning, if goal is unsolved *)
615
386a6b1a5203
the lift_tac produces a warning message if one of the three automatic proofs fails
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 1045
fun WARN (tac, msg) i st =
386a6b1a5203
the lift_tac produces a warning message if one of the three automatic proofs fails
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 1046
case Seq.pull ((SOLVES' tac) i st) of
386a6b1a5203
the lift_tac produces a warning message if one of the three automatic proofs fails
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 1047
NONE => (warning msg; Seq.single st)
386a6b1a5203
the lift_tac produces a warning message if one of the three automatic proofs fails
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 1048
| seqcell => Seq.make (fn () => seqcell)
386a6b1a5203
the lift_tac produces a warning message if one of the three automatic proofs fails
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 1049
386a6b1a5203
the lift_tac produces a warning message if one of the three automatic proofs fails
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 1050
fun RANGE_WARN xs = RANGE (map WARN xs)
386a6b1a5203
the lift_tac produces a warning message if one of the three automatic proofs fails
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 1051
*}
386a6b1a5203
the lift_tac produces a warning message if one of the three automatic proofs fails
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 1052
386a6b1a5203
the lift_tac produces a warning message if one of the three automatic proofs fails
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 1053
ML {*
703
8b2c46e11674
reformulated the lemma lifting_procedure as ML value; gave better warning message for injection case
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 1054
local
8b2c46e11674
reformulated the lemma lifting_procedure as ML value; gave better warning message for injection case
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 1055
8b2c46e11674
reformulated the lemma lifting_procedure as ML value; gave better warning message for injection case
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 1056
val msg1 = "Regularize proof failed."
8b2c46e11674
reformulated the lemma lifting_procedure as ML value; gave better warning message for injection case
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 1057
val msg2 = cat_lines ["Injection proof failed.",
8b2c46e11674
reformulated the lemma lifting_procedure as ML value; gave better warning message for injection case
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 1058
"This is probably due to missing respects lemmas.",
715
+ − 1059
"Try invoking the injection method manually to see",
703
8b2c46e11674
reformulated the lemma lifting_procedure as ML value; gave better warning message for injection case
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 1060
"which lemmas are missing."]
8b2c46e11674
reformulated the lemma lifting_procedure as ML value; gave better warning message for injection case
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 1061
val msg3 = "Cleaning proof failed."
8b2c46e11674
reformulated the lemma lifting_procedure as ML value; gave better warning message for injection case
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 1062
8b2c46e11674
reformulated the lemma lifting_procedure as ML value; gave better warning message for injection case
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 1063
in
8b2c46e11674
reformulated the lemma lifting_procedure as ML value; gave better warning message for injection case
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 1064
612
+ − 1065
fun lift_tac ctxt rthm =
+ − 1066
procedure_tac ctxt rthm
688
+ − 1067
THEN' RANGE_WARN
703
8b2c46e11674
reformulated the lemma lifting_procedure as ML value; gave better warning message for injection case
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 1068
[(regularize_tac ctxt, msg1),
8b2c46e11674
reformulated the lemma lifting_procedure as ML value; gave better warning message for injection case
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 1069
(all_inj_repabs_tac ctxt, msg2),
8b2c46e11674
reformulated the lemma lifting_procedure as ML value; gave better warning message for injection case
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 1070
(clean_tac ctxt, msg3)]
8b2c46e11674
reformulated the lemma lifting_procedure as ML value; gave better warning message for injection case
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 1071
8b2c46e11674
reformulated the lemma lifting_procedure as ML value; gave better warning message for injection case
Christian Urban <urbanc@in.tum.de>
diff
changeset
+ − 1072
end
612
+ − 1073
*}
+ − 1074
689
+ − 1075
section {* Methods / Interface *}
+ − 1076
632
+ − 1077
ML {*
+ − 1078
fun mk_method1 tac thm ctxt =
+ − 1079
SIMPLE_METHOD (HEADGOAL (tac ctxt thm))
+ − 1080
+ − 1081
fun mk_method2 tac ctxt =
+ − 1082
SIMPLE_METHOD (HEADGOAL (tac ctxt))
+ − 1083
*}
+ − 1084
+ − 1085
method_setup lifting =
637
+ − 1086
{* Attrib.thm >> (mk_method1 lift_tac) *}
632
+ − 1087
{* Lifting of theorems to quotient types. *}
+ − 1088
+ − 1089
method_setup lifting_setup =
637
+ − 1090
{* Attrib.thm >> (mk_method1 procedure_tac) *}
632
+ − 1091
{* Sets up the three goals for the lifting procedure. *}
+ − 1092
+ − 1093
method_setup regularize =
+ − 1094
{* Scan.succeed (mk_method2 regularize_tac) *}
+ − 1095
{* Proves automatically the regularization goals from the lifting procedure. *}
+ − 1096
+ − 1097
method_setup injection =
+ − 1098
{* Scan.succeed (mk_method2 all_inj_repabs_tac) *}
+ − 1099
{* Proves automatically the rep/abs injection goals from the lifting procedure. *}
+ − 1100
+ − 1101
method_setup cleaning =
+ − 1102
{* Scan.succeed (mk_method2 clean_tac) *}
+ − 1103
{* Proves automatically the cleaning goals from the lifting procedure. *}
+ − 1104
597
+ − 1105
end
+ − 1106