(* Title: HOL/Tools/Quotient/quotient_tacs.ML Author: Cezary Kaliszyk and Christian Urban
Tactics for solving goal arising from lifting theorems to quotient types.
*)
signature QUOTIENT_TACS = sig val regularize_tac: Proof.context -> int -> tactic val injection_tac: Proof.context -> int -> tactic val all_injection_tac: Proof.context -> int -> tactic val clean_tac: Proof.context -> int -> tactic
val descend_procedure_tac: Proof.context -> thm list -> int -> tactic val descend_tac: Proof.context -> thm list -> int -> tactic val partiality_descend_procedure_tac: Proof.context -> thm list -> int -> tactic val partiality_descend_tac: Proof.context -> thm list -> int -> tactic
val lift_procedure_tac: Proof.context -> thm list -> thm -> int -> tactic val lift_tac: Proof.context -> thm list -> thm list -> int -> tactic
val lifted: Proof.context -> typ list -> thm list -> thm -> thm val lifted_attrib: attribute end;
structure Quotient_Tacs: QUOTIENT_TACS = struct
(** various helper fuctions **)
(* Since HOL_basic_ss is too "big" for us, we *) (* need to set up our own minimal simpset. *) fun mk_minimal_simpset ctxt =
empty_simpset ctxt
|> Simplifier.set_subgoaler asm_simp_tac
|> Simplifier.set_mksimps (mksimps [])
fun atomize_thm ctxt thm = let val thm' = Thm.legacy_freezeT (Thm.forall_intr_vars thm) (* FIXME/TODO: is this proper Isar-technology? no! *) val thm'' = Object_Logic.atomize ctxt (Thm.cprop_of thm') in
@{thm equal_elim_rule1} OF [thm'', thm'] end
(*** Regularize Tactic ***)
(** solvers for equivp and quotient assumptions **)
val quotient_solver = mk_solver "Quotient goal solver" quotient_tac
fun solve_quotient_assm ctxt thm = case Seq.pull (quotient_tac ctxt 1 thm) of
SOME (t, _) => t
| _ => error "Solve_quotient_assm failed. Possibly a quotient theorem is missing."
fun get_match_inst ctxt pat trm =
(case Unify.matcher (Context.Proof ctxt) [pat] [trm] of
SOME env => let val instT =
TVars.build (Envir.type_env env |> Vartab.fold (fn (x, (S, T)) =>
TVars.add ((x, S), Thm.ctyp_of ctxt T))) val inst =
Vars.build (Envir.term_env env |> Vartab.fold (fn (x, (T, t)) =>
Vars.add ((x, T), Thm.cterm_of ctxt t))) in (instT, inst) end
| NONE => raise TERM ("Higher-order match failed", [pat, trm]));
(* Calculates the instantiations for the lemmas:
ball_reg_eqv_range and bex_reg_eqv_range
Since the left-hand-side contains a non-pattern '?P (f ?x)' we rely on unification/instantiation to check whether the theorem applies and return NONE if it doesn't.
*) fun calculate_inst ctxt ball_bex_thm redex R1 R2 = let fun get_lhs thm = fst (Logic.dest_equals (Thm.concl_of thm)) val ty_inst = map (SOME o Thm.ctyp_of ctxt) [domain_type (fastype_of R2)] val trm_inst = map (SOME o Thm.cterm_of ctxt) [R2, R1] in
(casetry (Thm.instantiate' ty_inst trm_inst) ball_bex_thm of
NONE => NONE
| SOME thm' =>
(casetry (get_match_inst ctxt (get_lhs thm')) (Thm.term_of redex) of
NONE => NONE
| SOME inst2 => try (Drule.instantiate_normalize inst2) thm')) end
fun ball_bex_range_simproc ctxt redex =
(case Thm.term_of redex of
\<^Const_>\<open>Ball _ for \<open>\<^Const_>\<open>Respects _ for \<^Const_>\<open>rel_fun _ _ _ _ for R1 R2\<close>\<close>\<close> _\<close> =>
calculate_inst ctxt @{thm ball_reg_eqv_range[THEN eq_reflection]} redex R1 R2
| \<^Const_>\<open>Bex _ for \<^Const_>\<open>Respects _ for \<^Const_>\<open>rel_fun _ _ _ _ for R1 R2\<close>\<close> _\<close> =>
calculate_inst ctxt @{thm bex_reg_eqv_range[THEN eq_reflection]} redex R1 R2
| _ => NONE)
(* Regularize works as follows:
0. preliminary simplification step according to ball_reg_eqv bex_reg_eqv babs_reg_eqv ball_reg_eqv_range bex_reg_eqv_range
fun regularize_tac ctxt = let val simpset =
mk_minimal_simpset ctxt
|> Simplifier.add_simps @{thms ball_reg_eqv bex_reg_eqv babs_reg_eqv babs_simp}
|> Simplifier.add_proc regularize_simproc
|> Simplifier.add_unsafe_solver equiv_solver
|> Simplifier.add_unsafe_solver quotient_solver val eq_eqvs = eq_imp_rel_get ctxt in
simp_tac simpset THEN' TRY o REPEAT_ALL_NEW (CHANGED o FIRST'
[resolve_tac ctxt @{thms ball_reg_right bex_reg_left bex1_bexeq_reg},
resolve_tac ctxt (Inductive.get_monos ctxt),
resolve_tac ctxt @{thms ball_all_comm bex_ex_comm},
resolve_tac ctxt eq_eqvs,
simp_tac simpset]) end
(*** Injection Tactic ***)
(* Looks for Quot_True assumptions, and in case its parameter is an application, it returns the function and the argument.
*) fun find_qt_asm asms = let fun find_fun \<^Const_>\<open>Trueprop for \<^Const_>\<open>Quot_True _ for _\<close>\<close> = true
| find_fun _ = false in
(case find_first find_fun asms of
SOME (_ $ (_ $ (f $ a))) => SOME (f, a)
| _ => NONE) end
fun quot_true_simple_conv ctxt fnctn ctrm =
(case Thm.term_of ctrm of
\<^Const_>\<open>Quot_True _ for x\<close> => let val fx = fnctn x; val cx = Thm.cterm_of ctxt x; val cfx = Thm.cterm_of ctxt fx; val cxt = Thm.ctyp_of ctxt (fastype_of x); val cfxt = Thm.ctyp_of ctxt (fastype_of fx); val thm = Thm.instantiate' [SOME cxt, SOME cfxt] [SOME cx, SOME cfx] @{thm QT_imp} in
Conv.rewr_conv thm ctrm end)
fun dest_comb (f $ a) = (f, a) fun dest_bcomb ((_ $ l) $ r) = (l, r)
fun unlam t =
(case t of
Abs _ => snd (Term.dest_abs_global t)
| _ => unlam (Abs("", domain_type (fastype_of t), (incr_boundvars 1 t) $ (Bound 0))))
val bare_concl = HOLogic.dest_Trueprop o Logic.strip_assums_concl
(* We apply apply_rsp only in case if the type needs lifting. This is the case if the type of the data in the Quot_True assumption is different from the corresponding type in the goal.
*) val apply_rsp_tac =
Subgoal.FOCUS (fn {concl, asms, context = ctxt,...} => let val bare_concl = HOLogic.dest_Trueprop (Thm.term_of concl) val qt_asm = find_qt_asm (map Thm.term_of asms) in case (bare_concl, qt_asm) of
(R2 $ (f $ x) $ (g $ y), SOME (qt_fun, qt_arg)) => if fastype_of qt_fun = fastype_of f then no_tac else let val ty_x = fastype_of x val ty_b = fastype_of qt_arg val ty_f = range_type (fastype_of f) val ty_inst = map (SOME o Thm.ctyp_of ctxt) [ty_x, ty_b, ty_f] val t_inst = map (SOME o Thm.cterm_of ctxt) [R2, f, g, x, y]; val inst_thm = Thm.instantiate' ty_inst
([NONE, NONE, NONE] @ t_inst) @{thm apply_rspQ3} in
(resolve_tac ctxt [inst_thm] THEN' SOLVED' (quotient_tac ctxt)) 1 end
| _ => no_tac end)
(* Instantiates and applies 'equals_rsp'. Since the theorem is complex we rely on instantiation to tell us if it applies
*) fun equals_rsp_tac R ctxt = casetry (Thm.cterm_of ctxt) R of(* There can be loose bounds in R *)
SOME ct => let val T = Thm.ctyp_of_cterm ct val A = try Thm.dest_ctyp0 T val try_inst = \<^try>\<open>Thm.instantiate' [SOME (the A)] [SOME ct] @{thm equals_rsp}\ in case try_inst of
SOME thm => resolve_tac ctxt [thm] THEN' quotient_tac ctxt
| NONE => K no_tac end
| _ => K no_tac
fun rep_abs_rsp_tac ctxt =
SUBGOAL (fn (goal, i) =>
(casetry bare_concl goal of
SOME (rel $ _ $ (rep $ (abs $ _))) =>
(let val (ty_a, ty_b) = dest_funT (fastype_of abs); val ty_inst = map (SOME o Thm.ctyp_of ctxt) [ty_a, ty_b]; in casetry (map (SOME o Thm.cterm_of ctxt)) [rel, abs, rep] of
SOME t_inst =>
(casetry (Thm.instantiate' ty_inst t_inst) @{thm rep_abs_rsp} of
SOME inst_thm => (resolve_tac ctxt [inst_thm] THEN' quotient_tac ctxt) i
| NONE => no_tac)
| NONE => no_tac end handle TERM _ => no_tac)
| _ => no_tac))
(* Injection means to prove that the regularized theorem implies the abs/rep injected one.
The deterministic part: - remove lambdas from both sides - prove Ball/Bex/Babs equalities using ball_rsp, bex_rsp, babs_rsp - prove Ball/Bex relations using rel_funI - reflexivity of equality - prove equality of relations using equals_rsp - use user-supplied RSP theorems - solve 'relation of relations' goals using quot_rel_rsp - remove rep_abs from the right side (Lambdas under respects may have left us some assumptions)
Then in order: - split applications of lifted type (apply_rsp) - split applications of non-lifted type (cong_tac) - apply extentionality - assumption - reflexivity of the relation
*) fun injection_match_tac ctxt = SUBGOAL (fn (goal, i) =>
(case bare_concl goal of (* (R1 ===> R2) (%x...) (%x...) ----> [|R1 x y|] ==> R2 (...x) (...y) *)
\<^Const_>\<open>rel_fun _ _ _ _ for _ _ \<open>Abs _\<close> \<open>Abs _\<close>\<close> =>
resolve_tac ctxt @{thms rel_funI} THEN' quot_true_tac ctxt unlam
(* (op =) (Ball...) (Ball...) ----> (op =) (...) (...) *)
| \<^Const_>\<open>HOL.eq _ for
\<^Const_>\<open>Ball _ for \<^Const_>\<open>Respects _ for _\<close> _\<close>\<close> $
\<^Const_>\<open>Ball _ for \<^Const_>\<open>Respects _ for _\<close> _\<close> =>
resolve_tac ctxt @{thms ball_rsp} THEN' dresolve_tac ctxt @{thms QT_all}
(* (R1 ===> op =) (Ball...) (Ball...) ----> [|R1 x y|] ==> (Ball...x) = (Ball...y) *)
| \<^Const_>\<open>rel_fun _ _ _ _ for _ _
\<^Const_>\<open>Ball _ for \<^Const_>\<open>Respects _ for _\<close> _\<close>\<close> $
\<^Const_>\<open>Ball _ for \<^Const_>\<open>Respects _ for _\<close> _\<close> =>
resolve_tac ctxt @{thms rel_funI} THEN' quot_true_tac ctxt unlam
(* (op =) (Bex...) (Bex...) ----> (op =) (...) (...) *)
| \<^Const_>\<open>HOL.eq _ for
\<^Const_>\<open>Bex _ for \<^Const_>\<open>Respects _ for _\<close> _\<close>\<close> $
\<^Const_>\<open>Bex _ for \<^Const_>\<open>Respects _ for _\<close> _\<close> =>
resolve_tac ctxt @{thms bex_rsp} THEN' dresolve_tac ctxt @{thms QT_ex}
(* (R1 ===> op =) (Bex...) (Bex...) ----> [|R1 x y|] ==> (Bex...x) = (Bex...y) *)
| \<^Const_>\<open>rel_fun _ _ _ _ for _ _
\<^Const_>\<open>Bex _ for \<^Const_>\<open>Respects _ for _\<close> _\<close>\<close> $
\<^Const_>\<open>Bex _ for \<^Const_>\<open>Respects _ for _\<close> _\<close> =>
resolve_tac ctxt @{thms rel_funI} THEN' quot_true_tac ctxt unlam
| \<^Const_>\<open>rel_fun _ _ _ _ for _ _ \<^Const_>\<open>Bex1_rel _ for _\<close> \<^Const_>\<open>Bex1_rel _ for _\<close>\<close> =>
resolve_tac ctxt @{thms bex1_rel_rsp} THEN' quotient_tac ctxt
| (_ $
\<^Const_>\<open>Babs _ _ for \<^Const_>\<open>Respects _ for _\<close> _\<close> $
\<^Const_>\<open>Babs _ _ for \<^Const_>\<open>Respects _ for _\<close> _\<close>) =>
resolve_tac ctxt @{thms babs_rsp} THEN' quotient_tac ctxt
| \<^Const_>\<open>HOL.eq _ for \<open>R $ _ $ _\<close> \<open>_ $ _ $ _\<close>\<close> =>
(resolve_tac ctxt @{thms refl} ORELSE'
(equals_rsp_tac R ctxt THEN' RANGE [
quot_true_tac ctxt (fst o dest_bcomb), quot_true_tac ctxt (snd o dest_bcomb)]))
(* reflexivity of operators arising from Cong_tac *)
| \<^Const_>\<open>HOL.eq _ for _ _\<close> => resolve_tac ctxt @{thms refl}
(* respectfulness of constants; in particular of a simple relation *)
| _ $ Const _ $ Const _ => (* rel_fun, list_rel, etc but not equality *)
resolve_tac ctxt (rev (Named_Theorems.get ctxt \<^named_theorems>\<open>quot_respect\<close>))
THEN_ALL_NEW quotient_tac ctxt
fun injection_step_tac ctxt rel_refl =
FIRST' [
injection_match_tac ctxt,
(* R (t $ ...) (t' $ ...) ----> apply_rsp provided type of t needs lifting *)
apply_rsp_tac ctxt THEN'
RANGE [quot_true_tac ctxt (fst o dest_comb), quot_true_tac ctxt (snd o dest_comb)],
(* (op =) (t $ ...) (t' $ ...) ----> Cong provided type of t does not need lifting *) (* merge with previous tactic *)
Cong_Tac.cong_tac ctxt @{thm cong} THEN'
RANGE [quot_true_tac ctxt (fst o dest_comb), quot_true_tac ctxt (snd o dest_comb)],
(* resolving with R x y assumptions *)
assume_tac ctxt,
(* reflexivity of the basic relations *) (* R ... ... *)
resolve_tac ctxt rel_refl]
fun injection_tac ctxt = let val rel_refl = reflp_get ctxt in
injection_step_tac ctxt rel_refl end
fun all_injection_tac ctxt =
REPEAT_ALL_NEW (injection_tac ctxt)
(*** Cleaning of the Theorem ***)
(* expands all map_funs, except in front of the (bound) variables listed in xs *) fun map_fun_simple_conv xs ctrm =
(case Thm.term_of ctrm of
\<^Const_>\<open>map_fun _ _ _ _ for _ _ h _\<close> => if member (op=) xs h then Conv.all_conv ctrm else Conv.rewr_conv @{thm map_fun_apply [THEN eq_reflection]} ctrm
| _ => Conv.all_conv ctrm)
fun map_fun_tac ctxt = CONVERSION (map_fun_conv [] ctxt)
(* custom matching functions *) fun mk_abs u i t = if incr_boundvars i u aconv t then Bound i else case t of
t1 $ t2 => mk_abs u i t1 $ mk_abs u i t2
| Abs (s, T, t') => Abs (s, T, mk_abs u (i + 1) t')
| Bound j => if i = j then error "make_inst"else t
| _ => t
fun make_inst lhs t = let val _ $ (Abs (_, _, (_ $ ((f as Var (_, \<^Type>\<open>fun T _\<close>)) $ u)))) = lhs; val _ $ (Abs (_, _, (_ $ g))) = t; in
(f, Abs ("x", T, mk_abs u 0 g)) end
fun make_inst_id lhs t = let val _ $ (Abs (_, _, (f as Var (_, \<^Type>\<open>fun T _\<close>)) $ u)) = lhs; val _ $ (Abs (_, _, g)) = t; in
(f, Abs ("x", T, mk_abs u 0 g)) end
(* Simplifies a redex using the 'lambda_prs' theorem. First instantiates the types and known subterms. Then solves the quotient assumptions to get Rep2 and Abs1 Finally instantiates the function f using make_inst If Rep2 is an identity then the pattern is simpler and make_inst_id is used
*) fun lambda_prs_simple_conv ctxt ctrm =
(case Thm.term_of ctrm of
\<^Const_>\<open>map_fun _ _ _ _ for r1 a2 \<open>Abs _\<close>\<close> => let val (ty_b, ty_a) = dest_funT (fastype_of r1) val (ty_c, ty_d) = dest_funT (fastype_of a2) val tyinst = map (SOME o Thm.ctyp_of ctxt) [ty_a, ty_b, ty_c, ty_d] val tinst = [NONE, NONE, SOME (Thm.cterm_of ctxt r1), NONE, SOME (Thm.cterm_of ctxt a2)] val thm1 = Thm.instantiate' tyinst tinst @{thm lambda_prs[THEN eq_reflection]} val thm2 = solve_quotient_assm ctxt (solve_quotient_assm ctxt thm1) val thm3 = rewrite_rule ctxt @{thms id_apply[THEN eq_reflection]} thm2 val (insp, inst) = if ty_c = ty_d then make_inst_id (Thm.term_of (Thm.lhs_of thm3)) (Thm.term_of ctrm) else make_inst (Thm.term_of (Thm.lhs_of thm3)) (Thm.term_of ctrm) val thm4 =
Drule.instantiate_normalize
(TVars.empty, Vars.make1 (dest_Var insp, Thm.cterm_of ctxt inst)) thm3 in
Conv.rewr_conv thm4 ctrm end
| _ => Conv.all_conv ctrm)
fun lambda_prs_conv ctxt = Conv.top_conv lambda_prs_simple_conv ctxt fun lambda_prs_tac ctxt = CONVERSION (lambda_prs_conv ctxt)
(* Cleaning consists of:
1. unfolding of ---> in front of everything, except bound variables (this prevents lambda_prs from becoming stuck)
fun apply_under_Trueprop f =
HOLogic.dest_Trueprop #> f #> HOLogic.mk_Trueprop
fun gen_frees_tac ctxt =
SUBGOAL (fn (concl, i) => let val vrs = Term.add_frees concl [] val cvrs = map (Thm.cterm_of ctxt o Free) vrs val concl' = apply_under_Trueprop (all_list vrs) concl val goal = Logic.mk_implies (concl', concl) val rule = Goal.prove ctxt [] [] goal
(K (EVERY1 [inst_spec_tac ctxt (rev cvrs), assume_tac ctxt])) in
resolve_tac ctxt [rule] i end)
(** The General Shape of the Lifting Procedure **)
(* in case of partial equivalence relations, this form of the procedure theorem results in solvable proof obligations
*)
fun lift_match_error ctxt msg rtrm qtrm = let val rtrm_str = Syntax.string_of_term ctxt rtrm val qtrm_str = Syntax.string_of_term ctxt qtrm val msg = cat_lines [enclose "[""]" msg, "The quotient theorem", qtrm_str, "", "does not match with original theorem", rtrm_str] in
error msg end
fun procedure_inst ctxt rtrm qtrm = let val rtrm' = HOLogic.dest_Trueprop rtrm val qtrm' = HOLogic.dest_Trueprop qtrm val reg_goal = Quotient_Term.regularize_trm_chk ctxt (rtrm', qtrm') handle Quotient_Term.LIFT_MATCH msg => lift_match_error ctxt msg rtrm qtrm val inj_goal = Quotient_Term.inj_repabs_trm_chk ctxt (reg_goal, qtrm') handle Quotient_Term.LIFT_MATCH msg => lift_match_error ctxt msg rtrm qtrm in (* - A is the original raw theorem - B is the regularized theorem - C is the rep/abs injected version of B - D is the lifted theorem
- 1st prem is the regularization step - 2nd prem is the rep/abs injection step - 3rd prem is the cleaning part
the Quot_True premise in 2nd records the lifted theorem
*)
\<^instantiate>\<open>
A = \<open>Thm.cterm_of ctxt rtrm'\ and
B = \<open>Thm.cterm_of ctxt reg_goal\<close> and
C = \<open>Thm.cterm_of ctxt inj_goal\<close> in
lemma (schematic) "A \ A \ B \ (Quot_True D \ B = C) \ C = D \ D"
by (simp add: Quot_True_def)\<close> end
(* Since we use Ball and Bex during the lifting and descending, we cannot deal with lemmas containing them, unless we unfold
them by default. *)
val default_unfolds = @{thms Ball_def Bex_def}
(** descending as tactic **)
fun descend_procedure_tac ctxt simps = let val simpset = mk_minimal_simpset ctxt |> Simplifier.add_simps (simps @ default_unfolds) in
full_simp_tac simpset THEN' Object_Logic.full_atomize_tac ctxt THEN' gen_frees_tac ctxt THEN' SUBGOAL (fn (goal, i) => let val qtys = map #qtyp (Quotient_Info.dest_quotients ctxt) val rtrm = Quotient_Term.derive_rtrm ctxt qtys goal val rule = procedure_inst ctxt rtrm goal in
resolve_tac ctxt [rule] i end) end
fun descend_tac ctxt simps = let val mk_tac_raw =
descend_procedure_tac ctxt simps THEN' RANGE
[Object_Logic.rulify_tac ctxt THEN' (K all_tac),
regularize_tac ctxt,
all_injection_tac ctxt,
clean_tac ctxt] in
Goal.conjunction_tac THEN_ALL_NEW mk_tac_raw end
(** descending for partial equivalence relations **)
fun partiality_procedure_inst ctxt rtrm qtrm = let val rtrm' = HOLogic.dest_Trueprop rtrm val qtrm' = HOLogic.dest_Trueprop qtrm val reg_goal = Quotient_Term.regularize_trm_chk ctxt (rtrm', qtrm') handle Quotient_Term.LIFT_MATCH msg => lift_match_error ctxt msg rtrm qtrm val inj_goal = Quotient_Term.inj_repabs_trm_chk ctxt (reg_goal, qtrm') handle Quotient_Term.LIFT_MATCH msg => lift_match_error ctxt msg rtrm qtrm in
\<^instantiate>\<open>
B = \<open>Thm.cterm_of ctxt reg_goal\<close> and
C = \<open>Thm.cterm_of ctxt inj_goal\<close> in
lemma (schematic) "B \ (Quot_True D \ B = C) \ C = D \ D"
by (simp add: Quot_True_def)\<close> end
fun partiality_descend_procedure_tac ctxt simps = let val simpset = mk_minimal_simpset ctxt |> Simplifier.add_simps (simps @ default_unfolds) in
full_simp_tac simpset THEN' Object_Logic.full_atomize_tac ctxt THEN' gen_frees_tac ctxt THEN' SUBGOAL (fn (goal, i) => let val qtys = map #qtyp (Quotient_Info.dest_quotients ctxt) val rtrm = Quotient_Term.derive_rtrm ctxt qtys goal val rule = partiality_procedure_inst ctxt rtrm goal in
resolve_tac ctxt [rule] i end) end
fun partiality_descend_tac ctxt simps = let val mk_tac_raw =
partiality_descend_procedure_tac ctxt simps THEN' RANGE
[Object_Logic.rulify_tac ctxt THEN' (K all_tac),
all_injection_tac ctxt,
clean_tac ctxt] in
Goal.conjunction_tac THEN_ALL_NEW mk_tac_raw end
(** lifting as a tactic **)
(* the tactic leaves three subgoals to be proved *) fun lift_procedure_tac ctxt simps rthm = let val simpset = mk_minimal_simpset ctxt |> Simplifier.add_simps (simps @ default_unfolds) in
full_simp_tac simpset THEN' Object_Logic.full_atomize_tac ctxt THEN' gen_frees_tac ctxt THEN' SUBGOAL (fn (goal, i) => let (* full_atomize_tac contracts eta redexes,
so we do it also in the original theorem *) val rthm' =
rthm |> full_simplify simpset
|> Drule.eta_contraction_rule
|> Thm.forall_intr_frees
|> atomize_thm ctxt
val rule = procedure_inst ctxt (Thm.prop_of rthm') goal in
(resolve_tac ctxt [rule] THEN' resolve_tac ctxt [rthm']) i end) end
fun lift_single_tac ctxt simps rthm =
lift_procedure_tac ctxt simps rthm THEN' RANGE
[ regularize_tac ctxt,
all_injection_tac ctxt,
clean_tac ctxt ]
fun lift_tac ctxt simps rthms =
Goal.conjunction_tac THEN' RANGE (map (lift_single_tac ctxt simps) rthms)
(* automated lifting with pre-simplification of the theorems;
for internal usage *) fun lifted ctxt qtys simps rthm = let val ((_, [rthm']), ctxt') = Variable.import true [rthm] ctxt val goal = Quotient_Term.derive_qtrm ctxt' qtys (Thm.prop_of rthm') in
Goal.prove ctxt' [] [] goal
(K (HEADGOAL (lift_single_tac ctxt' simps rthm')))
|> singleton (Proof_Context.export ctxt' ctxt) end
(* lifting as an attribute *)
val lifted_attrib = Thm.rule_attribute [] (fn context => let val ctxt = Context.proof_of context val qtys = map #qtyp (Quotient_Info.dest_quotients ctxt) in
lifted ctxt qtys [] end)
end; (* structure *)
¤ Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.0.30Bemerkung:
(vorverarbeitet)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.