open Function_Lib open Function_Common open Nominal_Function_Common
type qgar = string * (string * typ) list * term list * term list * term
datatype mutual_part = MutualPart of
{i : int,
i' : int,
fvar : string * typ,
cargTs: typ list,
f_def: term,
f: term option,
f_defthm : thm option}
datatype mutual_info = Mutual of
{n : int,
n' : int,
fsum_var : string * typ,
ST: typ,
RST: typ,
parts: mutual_part list,
fqgars: qgar list,
qglrs: ((string * typ) list * term list * term * term) list,
fsum : term option}
fun mutual_induct_Pnames n = if n < 5then fst (chop n ["P","Q","R","S"]) elsemap (fn i => "P" ^ string_of_int i) (1 upto n)
fun get_part fname =
the o find_first (fn (MutualPart {fvar=(n,_), ...}) => n = fname)
(* FIXME *) fun mk_prod_abs e (t1, t2) = let val bTs = rev (map snd e) val T1 = fastype_of1 (bTs, t1) val T2 = fastype_of1 (bTs, t2) in
HOLogic.pair_const T1 T2 $ t1 $ t2 end
fun analyze_eqs ctxt defname fs eqs = let val num = length fs val fqgars = map (split_def ctxt (K true)) eqs val arity_of = map (fn (fname,_,_,args,_) => (fname, length args)) fqgars
|> AList.lookup (op =) #> the
fun curried_types (fname, fT) = let val (caTs, uaTs) = chop (arity_of fname) (binder_types fT) in
(caTs, uaTs ---> body_type fT) end
val (caTss, resultTs) = split_list (map curried_types fs) val argTs = map (foldr1 HOLogic.mk_prodT) caTss
val dresultTs = distinct (op =) resultTs val n' = length dresultTs
val RST = Balanced_Tree.make (uncurry Sum_Tree.mk_sumT) dresultTs val ST = Balanced_Tree.make (uncurry Sum_Tree.mk_sumT) argTs
val fsum_type = ST --> RST
val ([fsum_var_name], _) = Variable.add_fixes [ defname ^ "_sum" ] ctxt val fsum_var = (fsum_var_name, fsum_type)
fun define (fvar as (n, _)) caTs resultT i = let val vars = map_index (fn (j,T) => Free ("x" ^ string_of_int j, T)) caTs (* FIXME: Bind xs properly *) val i' = find_index (fn Ta => Ta = resultT) dresultTs + 1
val f_exp = Sum_Tree.mk_proj RST n' i' (Free fsum_var $ Sum_Tree.mk_inj ST num i (foldr1 HOLogic.mk_prod vars)) val def = Term.abstract_over (Free fsum_var, fold_rev lambda vars f_exp)
val rew = (n, fold_rev lambda vars f_exp) in
(MutualPart {i=i, i'=i', fvar=fvar,cargTs=caTs,f_def=def,f=NONE,f_defthm=NONE}, rew) end
fun convert_eqs (f, qs, gs, args, rhs) = let val MutualPart {i, i', ...} = get_part f parts val rhs' = rhs
|> map_aterms (fn t as Free (n, _) => the_default t (AList.lookup (op =) rews n) | t => t) in
(qs, gs, Sum_Tree.mk_inj ST num i (foldr1 (mk_prod_abs qs) args),
Envir.beta_norm (Sum_Tree.mk_inj RST n' i' rhs')) end
val qglrs = map convert_eqs fqgars in
Mutual {n=num, n'=n', fsum_var=fsum_var, ST=ST, RST=RST,
parts=parts, fqgars=fqgars, qglrs=qglrs, fsum=NONE} end
fun define_projections fixes mutual fsum lthy = let fun def ((MutualPart {i=i, i'=i', fvar=(fname, fT), cargTs, f_def, ...}), (_, mixfix)) lthy = let val ((f, (_, f_defthm)), lthy') =
Local_Theory.define
((Binding.name fname, mixfix),
((Binding.concealed (Binding.name (fname ^ "_def")), []),
Term.subst_bound (fsum, f_def))) lthy in
(MutualPart {i=i, i'=i', fvar=(fname, fT), cargTs=cargTs, f_def=f_def,
f=SOME f, f_defthm=SOME f_defthm },
lthy') end
val Mutual { n, n', fsum_var, ST, RST, parts, fqgars, qglrs, ... } = mutual val (parts', lthy') = fold_map def (parts ~~ fixes) lthy in
(Mutual { n=n, n'=n', fsum_var=fsum_var, ST=ST, RST=RST, parts=parts',
fqgars=fqgars, qglrs=qglrs, fsum=SOME fsum },
lthy') end
fun in_context ctxt (f, pre_qs, pre_gs, pre_args, pre_rhs) F = let val oqnames = map fst pre_qs val (qs, _) = Variable.variant_fixes oqnames ctxt
|>> map2 (fn (_, T) => fn n => Free (n, T)) pre_qs
fun inst t = subst_bounds (rev qs, t) val gs = map inst pre_gs val args = map inst pre_args val rhs = inst pre_rhs
val cqs = map (Thm.cterm_of ctxt) qs val (ags, ctxt') = fold_map Thm.assume_hyps (map (Thm.cterm_of ctxt) gs) ctxt
val import = fold Thm.forall_elim cqs
#> fold Thm.elim_implies ags
val export = fold_rev (Thm.implies_intr o Thm.cprop_of) ags
#> fold_rev forall_intr_rename (oqnames ~~ cqs) in
F ctxt' (f, qs, gs, args, rhs) import export end
fun recover_mutual_psimp all_orig_fdefs parts ctxt (fname, _, _, args, rhs)
import (export : thm -> thm) sum_psimp_eq = let val (MutualPart {f=SOME f, ...}) = get_part fname parts
val psimp = import sum_psimp_eq val ((simp, restore_cond), ctxt') = case Thm.cprems_of psimp of
[] => ((psimp, I), ctxt)
| [cond] => letval (asm, ctxt') = Thm.assume_hyps cond ctxt in ((Thm.implies_elim psimp asm, Thm.implies_intr cond), ctxt') end
| _ => raise General.Fail "Too many conditions" in
Goal.prove ctxt' [] []
(HOLogic.Trueprop $ HOLogic.mk_eq (list_comb (f, args), rhs))
(fn {context = goal_ctxt, ...} =>
(Local_Defs.unfold_tac goal_ctxt all_orig_fdefs) THEN EqSubst.eqsubst_tac goal_ctxt [0] [simp] 1 THEN (simp_tac goal_ctxt) 1)
|> restore_cond
|> export end
val inl_perm = @{lemma "x = Inl y ==> projl (permute p x) = permute p (projl x)" by simp} val inr_perm = @{lemma "x = Inr y ==> projr (permute p x) = permute p (projr x)" by simp}
fun recover_mutual_eqvt eqvt_thm all_orig_fdefs parts ctxt (fname, _, _, args, _)
import (export : thm -> thm) sum_psimp_eq = let val (MutualPart {f=SOME f, ...}) = get_part fname parts
val psimp = import sum_psimp_eq val ((cond, simp, restore_cond), ctxt') = case Thm.cprems_of psimp of
[] => (([], psimp, I), ctxt)
| [cond] => letval (asm, ctxt') = Thm.assume_hyps cond ctxt in (([asm], Thm.implies_elim psimp asm, Thm.implies_intr cond), ctxt') end
| _ => raise General.Fail "Too many conditions"
val ([p], ctxt'') = ctxt'
|> fold Variable.declare_term args
|> Variable.variant_fixes ["p"] val p = Free (p, \<^Type>\<open>perm\<close>)
fun mk_applied_form ctxt caTs thm = let val xs = map_index (fn (i,T) => Thm.cterm_of ctxt (Free ("x" ^ string_of_int i, T))) caTs (* FIXME: Bind xs properly *) in
fold (fn x => fn thm => Thm.combination thm (Thm.reflexive x)) xs thm
|> Conv.fconv_rule (Thm.beta_conversion true)
|> fold_rev Thm.forall_intr xs
|> Thm.forall_elim_vars 0 end
fun mutual_induct_rules ctxt induct all_f_defs (Mutual {n, ST, parts, ...}) = let val cert = Thm.cterm_of ctxt val newPs =
map2 (fn Pname => fn MutualPart {cargTs, ...} =>
Free (Pname, cargTs ---> HOLogic.boolT))
(mutual_induct_Pnames (length parts)) parts
fun mk_P (MutualPart {cargTs, ...}) P = let val avars = map_index (fn (i,T) => Var (("a", i), T)) cargTs val atup = foldr1 HOLogic.mk_prod avars in
HOLogic.tupled_lambda atup (list_comb (P, avars)) end
val Ps = map2 mk_P parts newPs val case_exp = Sum_Tree.mk_sumcases HOLogic.boolT Ps
fun project rule (MutualPart {cargTs, i, ...}) k = let val afs = map_index (fn (j,T) => Free ("a" ^ string_of_int (j + k), T)) cargTs (* FIXME! *) val inj = Sum_Tree.mk_inj ST n i (foldr1 HOLogic.mk_prod afs) in
(rule
|> Thm.forall_elim (cert inj)
|> full_simplify (put_simpset Sum_Tree.sumcase_split_ss ctxt)
|> fold_rev (Thm.forall_intr o cert) (afs @ newPs),
k + length cargTs) end in
fst (fold_map (project induct_inst) parts 0) end
fun forall_elim s \<^Const_>\<open>Pure.all _ for \<open>Abs (_, _, t)\<close>\<close> = subst_bound (s, t)
| forall_elim _ t = t
fun prove_eqvt ctxt fs argTss eqvts_thms induct_thms = let fun aux argTs s = argTs
|> map (pair s)
|> Variable.variant_names (fold Variable.declare_names fs ctxt) val argss' = map2 aux argTss (Name.invent (Variable.names_of ctxt) "" (length fs)) val argss = (map o map) Free argss' val arg_namess = (map o map) fst argss' val insts = (map o map) SOME arg_namess
val ([p_name], ctxt') = Variable.variant_fixes ["p"] ctxt val p = Free (p_name, \<^Type>\<open>perm\<close>)
(* extracting the acc-premises from the induction theorems *) val acc_prems = map Thm.prop_of induct_thms
|> map2 forall_elim_list argss
|> map (strip_qnt_body @{const_name Pure.all})
|> map (curry Logic.nth_prem 1)
|> map HOLogic.dest_Trueprop
fun mk_goal acc_prem (f, args) = let val goal_lhs = mk_perm p (list_comb (f, args)) val goal_rhs = list_comb (f, map (mk_perm p) args) in
HOLogic.mk_imp (acc_prem, HOLogic.mk_eq (goal_lhs, goal_rhs)) end
val (mutual' as Mutual {n', parts, ST, RST, ...}, lthy2) = define_projections fixes mutual fsum lthy1
(* defining the auxiliary graph *) fun mk_cases (MutualPart {i', fvar as (n, T), ...}) = let val (tys, ty) = strip_type T val fun_var = Free (n ^ "_aux", HOLogic.mk_tupleT tys --> ty) val inj_fun = absdummy dummyT (Sum_Tree.mk_inj RST n' i' (Bound 0)) in
Syntax.check_term lthy2 (mk_comp_dummy inj_fun fun_var) end
val case_sum_exp = map mk_cases parts
|> Sum_Tree.mk_sumcases RST
val (G_name, G_type) = dest_Free G val G_name_aux = G_name ^ "_aux" val subst = [(G, Free (G_name_aux, G_type))] val GIntros_aux = GIntro_thms
|> map Thm.prop_of
|> map (Term.subst_free subst)
|> map (subst_all case_sum_exp)
fun mutual_cont ctxt = mk_partial_rules_mutual lthy3 (cont ctxt) mutual'
(* proof of equivalence between graph and auxiliary graph *) val x = Var(("x", 0), ST) val y = Var(("y", 1), RST) val G_aux_prem = HOLogic.mk_Trueprop (G_aux $ x $ y) val G_prem = HOLogic.mk_Trueprop (G $ x $ y)
fun mk_inj_goal (MutualPart {i', ...}) = let val injs = Sum_Tree.mk_inj ST n' i' (Bound 0) val projs = y
|> Sum_Tree.mk_proj RST n' i'
|> Sum_Tree.mk_inj RST n' i' in Const (@{const_name "All"}, dummyT) $ absdummy dummyT
(HOLogic.mk_imp (HOLogic.mk_eq(x, injs), HOLogic.mk_eq(projs, y))) end
val goal_inj = Logic.mk_implies (G_aux_prem,
HOLogic.mk_Trueprop (fold_conj (map mk_inj_goal parts)))
|> all x |> all y
|> Syntax.check_term lthy3 val goal_iff1 = Logic.mk_implies (G_aux_prem, G_prem)
|> all x |> all y val goal_iff2 = Logic.mk_implies (G_prem, G_aux_prem)
|> all x |> all y
val simp_thms = @{thms sum.sel sum.inject sum.case sum.distinct o_apply} fun simpset0 goal_ctxt = put_simpset HOL_basic_ss goal_ctxt addsimps simp_thms fun simpset1 goal_ctxt = put_simpset HOL_ss goal_ctxt addsimps simp_thms
val tac = HEADGOAL (simp_tac (put_simpset HOL_basic_ss lthy3 addsimps [iff_thm])) val goalstate' = case (SINGLE tac) goalstate of
NONE => error "auxiliary equivalence proof failed"
| SOME st => st in
((goalstate', mutual_cont), lthy3) end
end
Messung V0.5 in Prozent
¤ Dauer der Verarbeitung: 0.1 Sekunden
(vorverarbeitet am 2026-06-10)
¤
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 und die Messung sind noch experimentell.