| author | wenzelm | 
| Tue, 08 Sep 2015 13:52:13 +0200 | |
| changeset 61133 | c6d62d092246 | 
| parent 61121 | efe8b18306b7 | 
| child 62093 | bd73a2279fcd | 
| permissions | -rw-r--r-- | 
| 37744 | 1 | (* Title: HOL/Tools/Function/function_lib.ML | 
| 33099 
b8cdd3d73022
function package: more standard names for structures and files
 krauss parents: diff
changeset | 2 | Author: Alexander Krauss, TU Muenchen | 
| 
b8cdd3d73022
function package: more standard names for structures and files
 krauss parents: diff
changeset | 3 | |
| 41113 | 4 | Ad-hoc collection of function waiting to be eliminated, generalized, | 
| 5 | moved elsewhere or otherwise cleaned up. | |
| 33099 
b8cdd3d73022
function package: more standard names for structures and files
 krauss parents: diff
changeset | 6 | *) | 
| 
b8cdd3d73022
function package: more standard names for structures and files
 krauss parents: diff
changeset | 7 | |
| 41113 | 8 | signature FUNCTION_LIB = | 
| 9 | sig | |
| 61121 
efe8b18306b7
do not expose low-level "_def" facts of 'function' definitions, to avoid potential confusion with the situation of plain 'definition';
 wenzelm parents: 
60328diff
changeset | 10 | val function_defs: bool Config.T | 
| 
efe8b18306b7
do not expose low-level "_def" facts of 'function' definitions, to avoid potential confusion with the situation of plain 'definition';
 wenzelm parents: 
60328diff
changeset | 11 | |
| 41113 | 12 | val plural: string -> string -> 'a list -> string | 
| 13 | ||
| 14 | val dest_all_all: term -> term list * term | |
| 15 | ||
| 16 |   val unordered_pairs: 'a list -> ('a * 'a) list
 | |
| 17 | ||
| 18 | val rename_bound: string -> term -> term | |
| 19 | val mk_forall_rename: (string * term) -> term -> term | |
| 20 | val forall_intr_rename: (string * cterm) -> thm -> thm | |
| 21 | ||
| 22 | datatype proof_attempt = Solved of thm | Stuck of thm | Fail | |
| 60328 | 23 | val try_proof: Proof.context -> cterm -> tactic -> proof_attempt | 
| 41113 | 24 | |
| 25 | val dest_binop_list: string -> term -> term list | |
| 59625 | 26 | val regroup_conv: Proof.context -> string -> string -> thm list -> int list -> conv | 
| 27 | val regroup_union_conv: Proof.context -> int list -> conv | |
| 54406 | 28 | |
| 54407 
e95831757903
ported part of function package to new 'Ctr_Sugar' abstraction
 blanchet parents: 
54406diff
changeset | 29 | val inst_constrs_of: Proof.context -> typ -> term list | 
| 41113 | 30 | end | 
| 31 | ||
| 32 | structure Function_Lib: FUNCTION_LIB = | |
| 33099 
b8cdd3d73022
function package: more standard names for structures and files
 krauss parents: diff
changeset | 33 | struct | 
| 
b8cdd3d73022
function package: more standard names for structures and files
 krauss parents: diff
changeset | 34 | |
| 61121 
efe8b18306b7
do not expose low-level "_def" facts of 'function' definitions, to avoid potential confusion with the situation of plain 'definition';
 wenzelm parents: 
60328diff
changeset | 35 | val function_defs = Attrib.setup_config_bool @{binding function_defs} (K false)
 | 
| 
efe8b18306b7
do not expose low-level "_def" facts of 'function' definitions, to avoid potential confusion with the situation of plain 'definition';
 wenzelm parents: 
60328diff
changeset | 36 | |
| 
efe8b18306b7
do not expose low-level "_def" facts of 'function' definitions, to avoid potential confusion with the situation of plain 'definition';
 wenzelm parents: 
60328diff
changeset | 37 | |
| 40076 | 38 | (* "The variable" ^ plural " is" "s are" vs *) | 
| 33099 
b8cdd3d73022
function package: more standard names for structures and files
 krauss parents: diff
changeset | 39 | fun plural sg pl [x] = sg | 
| 
b8cdd3d73022
function package: more standard names for structures and files
 krauss parents: diff
changeset | 40 | | plural sg pl _ = pl | 
| 
b8cdd3d73022
function package: more standard names for structures and files
 krauss parents: diff
changeset | 41 | |
| 
b8cdd3d73022
function package: more standard names for structures and files
 krauss parents: diff
changeset | 42 | |
| 
b8cdd3d73022
function package: more standard names for structures and files
 krauss parents: diff
changeset | 43 | (* Removes all quantifiers from a term, replacing bound variables by frees. *) | 
| 56245 | 44 | fun dest_all_all (t as (Const (@{const_name Pure.all},_) $ _)) =
 | 
| 34232 
36a2a3029fd3
new year's resolution: reindented code in function package
 krauss parents: 
33855diff
changeset | 45 | let | 
| 40076 | 46 | val (v,b) = Logic.dest_all t |> apfst Free | 
| 34232 
36a2a3029fd3
new year's resolution: reindented code in function package
 krauss parents: 
33855diff
changeset | 47 | val (vs, b') = dest_all_all b | 
| 
36a2a3029fd3
new year's resolution: reindented code in function package
 krauss parents: 
33855diff
changeset | 48 | in | 
| 
36a2a3029fd3
new year's resolution: reindented code in function package
 krauss parents: 
33855diff
changeset | 49 | (v :: vs, b') | 
| 
36a2a3029fd3
new year's resolution: reindented code in function package
 krauss parents: 
33855diff
changeset | 50 | end | 
| 33099 
b8cdd3d73022
function package: more standard names for structures and files
 krauss parents: diff
changeset | 51 | | dest_all_all t = ([],t) | 
| 33611 | 52 | |
| 33099 
b8cdd3d73022
function package: more standard names for structures and files
 krauss parents: diff
changeset | 53 | |
| 
b8cdd3d73022
function package: more standard names for structures and files
 krauss parents: diff
changeset | 54 | (* forms all "unordered pairs": [1, 2, 3] ==> [(1, 1), (1, 2), (1, 3), (2, 2), (2, 3), (3, 3)] *) | 
| 
b8cdd3d73022
function package: more standard names for structures and files
 krauss parents: diff
changeset | 55 | fun unordered_pairs [] = [] | 
| 
b8cdd3d73022
function package: more standard names for structures and files
 krauss parents: diff
changeset | 56 | | unordered_pairs (x::xs) = map (pair x) (x::xs) @ unordered_pairs xs | 
| 
b8cdd3d73022
function package: more standard names for structures and files
 krauss parents: diff
changeset | 57 | |
| 
b8cdd3d73022
function package: more standard names for structures and files
 krauss parents: diff
changeset | 58 | |
| 42497 
89acb654d8eb
inlined Function_Lib.replace_frees, which is used only once
 krauss parents: 
42483diff
changeset | 59 | (* renaming bound variables *) | 
| 33099 
b8cdd3d73022
function package: more standard names for structures and files
 krauss parents: diff
changeset | 60 | |
| 34232 
36a2a3029fd3
new year's resolution: reindented code in function package
 krauss parents: 
33855diff
changeset | 61 | fun rename_bound n (Q $ Abs (_, T, b)) = (Q $ Abs (n, T, b)) | 
| 33099 
b8cdd3d73022
function package: more standard names for structures and files
 krauss parents: diff
changeset | 62 | | rename_bound n _ = raise Match | 
| 
b8cdd3d73022
function package: more standard names for structures and files
 krauss parents: diff
changeset | 63 | |
| 
b8cdd3d73022
function package: more standard names for structures and files
 krauss parents: diff
changeset | 64 | fun mk_forall_rename (n, v) = | 
| 34232 
36a2a3029fd3
new year's resolution: reindented code in function package
 krauss parents: 
33855diff
changeset | 65 | rename_bound n o Logic.all v | 
| 33099 
b8cdd3d73022
function package: more standard names for structures and files
 krauss parents: diff
changeset | 66 | |
| 
b8cdd3d73022
function package: more standard names for structures and files
 krauss parents: diff
changeset | 67 | fun forall_intr_rename (n, cv) thm = | 
| 34232 
36a2a3029fd3
new year's resolution: reindented code in function package
 krauss parents: 
33855diff
changeset | 68 | let | 
| 36945 | 69 | val allthm = Thm.forall_intr cv thm | 
| 59582 | 70 | val (_ $ abs) = Thm.prop_of allthm | 
| 45156 | 71 | in Thm.rename_boundvars abs (Abs (n, dummyT, Term.dummy)) allthm end | 
| 33099 
b8cdd3d73022
function package: more standard names for structures and files
 krauss parents: diff
changeset | 72 | |
| 
b8cdd3d73022
function package: more standard names for structures and files
 krauss parents: diff
changeset | 73 | |
| 
b8cdd3d73022
function package: more standard names for structures and files
 krauss parents: diff
changeset | 74 | datatype proof_attempt = Solved of thm | Stuck of thm | Fail | 
| 
b8cdd3d73022
function package: more standard names for structures and files
 krauss parents: diff
changeset | 75 | |
| 60328 | 76 | fun try_proof ctxt cgoal tac = | 
| 77 | (case SINGLE tac (Goal.init cgoal) of | |
| 34232 
36a2a3029fd3
new year's resolution: reindented code in function package
 krauss parents: 
33855diff
changeset | 78 | NONE => Fail | 
| 
36a2a3029fd3
new year's resolution: reindented code in function package
 krauss parents: 
33855diff
changeset | 79 | | SOME st => | 
| 60328 | 80 | if Thm.no_prems st | 
| 81 | then Solved (Goal.finish ctxt st) | |
| 82 | else Stuck st) | |
| 33099 
b8cdd3d73022
function package: more standard names for structures and files
 krauss parents: diff
changeset | 83 | |
| 
b8cdd3d73022
function package: more standard names for structures and files
 krauss parents: diff
changeset | 84 | |
| 34232 
36a2a3029fd3
new year's resolution: reindented code in function package
 krauss parents: 
33855diff
changeset | 85 | fun dest_binop_list cn (t as (Const (n, _) $ a $ b)) = | 
| 
36a2a3029fd3
new year's resolution: reindented code in function package
 krauss parents: 
33855diff
changeset | 86 | if cn = n then dest_binop_list cn a @ dest_binop_list cn b else [ t ] | 
| 33099 
b8cdd3d73022
function package: more standard names for structures and files
 krauss parents: diff
changeset | 87 | | dest_binop_list _ t = [ t ] | 
| 
b8cdd3d73022
function package: more standard names for structures and files
 krauss parents: diff
changeset | 88 | |
| 
b8cdd3d73022
function package: more standard names for structures and files
 krauss parents: diff
changeset | 89 | |
| 
b8cdd3d73022
function package: more standard names for structures and files
 krauss parents: diff
changeset | 90 | (* separate two parts in a +-expression: | 
| 
b8cdd3d73022
function package: more standard names for structures and files
 krauss parents: diff
changeset | 91 | "a + b + c + d + e" --> "(a + b + d) + (c + e)" | 
| 
b8cdd3d73022
function package: more standard names for structures and files
 krauss parents: diff
changeset | 92 | |
| 
b8cdd3d73022
function package: more standard names for structures and files
 krauss parents: diff
changeset | 93 | Here, + can be any binary operation that is AC. | 
| 
b8cdd3d73022
function package: more standard names for structures and files
 krauss parents: diff
changeset | 94 | |
| 
b8cdd3d73022
function package: more standard names for structures and files
 krauss parents: diff
changeset | 95 |    cn - The name of the binop-constructor (e.g. @{const_name Un})
 | 
| 
b8cdd3d73022
function package: more standard names for structures and files
 krauss parents: diff
changeset | 96 | ac - the AC rewrite rules for cn | 
| 
b8cdd3d73022
function package: more standard names for structures and files
 krauss parents: diff
changeset | 97 | is - the list of indices of the expressions that should become the first part | 
| 
b8cdd3d73022
function package: more standard names for structures and files
 krauss parents: diff
changeset | 98 | (e.g. [0,1,3] in the above example) | 
| 
b8cdd3d73022
function package: more standard names for structures and files
 krauss parents: diff
changeset | 99 | *) | 
| 
b8cdd3d73022
function package: more standard names for structures and files
 krauss parents: diff
changeset | 100 | |
| 59625 | 101 | fun regroup_conv ctxt neu cn ac is ct = | 
| 33099 
b8cdd3d73022
function package: more standard names for structures and files
 krauss parents: diff
changeset | 102 | let | 
| 
b8cdd3d73022
function package: more standard names for structures and files
 krauss parents: diff
changeset | 103 | val mk = HOLogic.mk_binop cn | 
| 59582 | 104 | val t = Thm.term_of ct | 
| 33099 
b8cdd3d73022
function package: more standard names for structures and files
 krauss parents: diff
changeset | 105 | val xs = dest_binop_list cn t | 
| 
b8cdd3d73022
function package: more standard names for structures and files
 krauss parents: diff
changeset | 106 | val js = subtract (op =) is (0 upto (length xs) - 1) | 
| 
b8cdd3d73022
function package: more standard names for structures and files
 krauss parents: diff
changeset | 107 | val ty = fastype_of t | 
| 
b8cdd3d73022
function package: more standard names for structures and files
 krauss parents: diff
changeset | 108 | in | 
| 54883 
dd04a8b654fc
proper context for norm_hhf and derived operations;
 wenzelm parents: 
54742diff
changeset | 109 | Goal.prove_internal ctxt [] | 
| 59621 
291934bac95e
Thm.cterm_of and Thm.ctyp_of operate on local context;
 wenzelm parents: 
59618diff
changeset | 110 | (Thm.cterm_of ctxt | 
| 33099 
b8cdd3d73022
function package: more standard names for structures and files
 krauss parents: diff
changeset | 111 | (Logic.mk_equals (t, | 
| 33611 | 112 | if null is | 
| 33099 
b8cdd3d73022
function package: more standard names for structures and files
 krauss parents: diff
changeset | 113 | then mk (Const (neu, ty), foldr1 mk (map (nth xs) js)) | 
| 33611 | 114 | else if null js | 
| 33099 
b8cdd3d73022
function package: more standard names for structures and files
 krauss parents: diff
changeset | 115 | then mk (foldr1 mk (map (nth xs) is), Const (neu, ty)) | 
| 
b8cdd3d73022
function package: more standard names for structures and files
 krauss parents: diff
changeset | 116 | else mk (foldr1 mk (map (nth xs) is), foldr1 mk (map (nth xs) js))))) | 
| 54742 
7a86358a3c0b
proper context for basic Simplifier operations: rewrite_rule, rewrite_goals_rule, rewrite_goals_tac etc.;
 wenzelm parents: 
54407diff
changeset | 117 | (K (rewrite_goals_tac ctxt ac | 
| 59498 
50b60f501b05
proper context for resolve_tac, eresolve_tac, dresolve_tac, forward_tac etc.;
 wenzelm parents: 
58839diff
changeset | 118 | THEN resolve_tac ctxt [Drule.reflexive_thm] 1)) | 
| 33099 
b8cdd3d73022
function package: more standard names for structures and files
 krauss parents: diff
changeset | 119 | end | 
| 
b8cdd3d73022
function package: more standard names for structures and files
 krauss parents: diff
changeset | 120 | |
| 
b8cdd3d73022
function package: more standard names for structures and files
 krauss parents: diff
changeset | 121 | (* instance for unions *) | 
| 59625 | 122 | fun regroup_union_conv ctxt = | 
| 123 |   regroup_conv ctxt @{const_abbrev Set.empty} @{const_name Lattices.sup}
 | |
| 34232 
36a2a3029fd3
new year's resolution: reindented code in function package
 krauss parents: 
33855diff
changeset | 124 | (map (fn t => t RS eq_reflection) | 
| 
36a2a3029fd3
new year's resolution: reindented code in function package
 krauss parents: 
33855diff
changeset | 125 |       (@{thms Un_ac} @ @{thms Un_empty_right} @ @{thms Un_empty_left}))
 | 
| 33099 
b8cdd3d73022
function package: more standard names for structures and files
 krauss parents: diff
changeset | 126 | |
| 
b8cdd3d73022
function package: more standard names for structures and files
 krauss parents: diff
changeset | 127 | |
| 54407 
e95831757903
ported part of function package to new 'Ctr_Sugar' abstraction
 blanchet parents: 
54406diff
changeset | 128 | fun inst_constrs_of ctxt (Type (name, Ts)) = | 
| 
e95831757903
ported part of function package to new 'Ctr_Sugar' abstraction
 blanchet parents: 
54406diff
changeset | 129 | map (Ctr_Sugar.mk_ctr Ts) (#ctrs (the (Ctr_Sugar.ctr_sugar_of ctxt name))) | 
| 
e95831757903
ported part of function package to new 'Ctr_Sugar' abstraction
 blanchet parents: 
54406diff
changeset | 130 | | inst_constrs_of _ _ = raise Match | 
| 54406 | 131 | |
| 33099 
b8cdd3d73022
function package: more standard names for structures and files
 krauss parents: diff
changeset | 132 | end |