--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/HOL/Tools/Function/fun_cases.ML Sun Sep 08 22:32:47 2013 +0200
@@ -0,0 +1,90 @@
+(* Title: HOL/Tools/Function/fun_cases.ML
+ Author: Manuel Eberl <eberlm@in.tum.de>, TU München
+
+Provides the fun_cases command for generating specialised elimination
+rules for function package functions.
+*)
+
+signature FUN_CASES =
+sig
+ val mk_fun_cases : local_theory -> term -> thm
+end;
+
+
+structure Fun_Cases : FUN_CASES =
+struct
+
+local
+ open Function_Elims;
+
+ val refl_thin = Goal.prove_global @{theory HOL} [] [] @{prop "!!P. a = a ==> P ==> P"}
+ (fn _ => assume_tac 1);
+ val elim_rls = [asm_rl, FalseE, refl_thin, conjE, exE];
+ val elim_tac = REPEAT o Tactic.eresolve_tac elim_rls;
+
+ fun simp_case_tac ctxt i =
+ EVERY' [elim_tac, TRY o asm_full_simp_tac ctxt, elim_tac, REPEAT o bound_hyp_subst_tac ctxt] i;
+in
+fun mk_fun_cases ctxt prop =
+ let val thy = Proof_Context.theory_of ctxt;
+ fun err () =
+ error (Pretty.string_of (Pretty.block
+ [Pretty.str "Proposition is not a function equation:",
+ Pretty.fbrk, Syntax.pretty_term ctxt prop]));
+ val ((f,_),_) = dest_funprop (HOLogic.dest_Trueprop prop)
+ handle TERM _ => err ();
+ val info = Function.get_info ctxt f handle Empty => err ();
+ val {elims, pelims, is_partial, ...} = info;
+ val elims = if is_partial then pelims else the elims
+ val cprop = cterm_of thy prop;
+ val tac = ALLGOALS (simp_case_tac ctxt) THEN prune_params_tac;
+ fun mk_elim rl =
+ Thm.implies_intr cprop (Tactic.rule_by_tactic ctxt tac (Thm.assume cprop RS rl))
+ |> singleton (Variable.export (Variable.auto_fixes prop ctxt) ctxt);
+ in
+ case get_first (try mk_elim) (flat elims) of
+ SOME r => r
+ | NONE => err ()
+ end;
+end;
+
+
+(* Setting up the fun_cases command *)
+local
+ (* Converts the schematic variables and type variables in a term into free
+ variables and takes care of schematic variables originating from dummy
+ patterns by renaming them to something sensible. *)
+ fun pat_to_term ctxt t =
+ let
+ fun prep_var ((x,_),T) =
+ if x = "_dummy_" then ("x",T) else (x,T);
+ val schem_vars = Term.add_vars t [];
+ val prepped_vars = map prep_var schem_vars;
+ val fresh_vars = map Free (Variable.variant_frees ctxt [t] prepped_vars);
+ val subst = ListPair.zip (map fst schem_vars, fresh_vars);
+ in fst (yield_singleton (Variable.import_terms true)
+ (subst_Vars subst t) ctxt)
+ end;
+
+ fun fun_cases args ctxt =
+ let
+ val thy = Proof_Context.theory_of ctxt
+ val thmss = map snd args
+ |> burrow (grouped 10 Par_List.map
+ (mk_fun_cases ctxt
+ o pat_to_term ctxt
+ o HOLogic.mk_Trueprop
+ o Proof_Context.read_term_pattern ctxt));
+ val facts = map2 (fn ((a,atts), _) => fn thms =>
+ ((a, map (Attrib.intern_src thy) atts), [(thms, [])])) args thmss;
+ in
+ ctxt |> Local_Theory.notes facts |>> map snd
+ end;
+in
+val _ =
+ Outer_Syntax.local_theory @{command_spec "fun_cases"}
+ "automatic derivation of simplified elimination rules for function equations"
+ (Parse.and_list1 Parse_Spec.specs >> (snd oo fun_cases));
+end;
+end;
+