src/HOL/Tools/Function/function_lib.ML
author wenzelm
Wed, 04 Mar 2015 19:53:18 +0100
changeset 59582 0fbed69ff081
parent 59498 50b60f501b05
child 59618 e6939796717e
permissions -rw-r--r--
tuned signature -- prefer qualified names;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
37744
3daaf23b9ab4 tuned titles
haftmann
parents: 37391
diff changeset
     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
b223fa19af3c added signature;
krauss
parents: 40722
diff changeset
     4
Ad-hoc collection of function waiting to be eliminated, generalized,
b223fa19af3c added signature;
krauss
parents: 40722
diff changeset
     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
b223fa19af3c added signature;
krauss
parents: 40722
diff changeset
     8
signature FUNCTION_LIB =
b223fa19af3c added signature;
krauss
parents: 40722
diff changeset
     9
sig
b223fa19af3c added signature;
krauss
parents: 40722
diff changeset
    10
  val plural: string -> string -> 'a list -> string
b223fa19af3c added signature;
krauss
parents: 40722
diff changeset
    11
b223fa19af3c added signature;
krauss
parents: 40722
diff changeset
    12
  val dest_all_all: term -> term list * term
b223fa19af3c added signature;
krauss
parents: 40722
diff changeset
    13
b223fa19af3c added signature;
krauss
parents: 40722
diff changeset
    14
  val unordered_pairs: 'a list -> ('a * 'a) list
b223fa19af3c added signature;
krauss
parents: 40722
diff changeset
    15
b223fa19af3c added signature;
krauss
parents: 40722
diff changeset
    16
  val rename_bound: string -> term -> term
b223fa19af3c added signature;
krauss
parents: 40722
diff changeset
    17
  val mk_forall_rename: (string * term) -> term -> term
b223fa19af3c added signature;
krauss
parents: 40722
diff changeset
    18
  val forall_intr_rename: (string * cterm) -> thm -> thm
b223fa19af3c added signature;
krauss
parents: 40722
diff changeset
    19
b223fa19af3c added signature;
krauss
parents: 40722
diff changeset
    20
  datatype proof_attempt = Solved of thm | Stuck of thm | Fail
b223fa19af3c added signature;
krauss
parents: 40722
diff changeset
    21
  val try_proof: cterm -> tactic -> proof_attempt
b223fa19af3c added signature;
krauss
parents: 40722
diff changeset
    22
b223fa19af3c added signature;
krauss
parents: 40722
diff changeset
    23
  val dest_binop_list: string -> term -> term list
b223fa19af3c added signature;
krauss
parents: 40722
diff changeset
    24
  val regroup_conv: string -> string -> thm list -> int list -> conv
b223fa19af3c added signature;
krauss
parents: 40722
diff changeset
    25
  val regroup_union_conv: int list -> conv
54406
a2d18fea844a undid copy-paste
blanchet
parents: 45156
diff changeset
    26
54407
e95831757903 ported part of function package to new 'Ctr_Sugar' abstraction
blanchet
parents: 54406
diff changeset
    27
  val inst_constrs_of: Proof.context -> typ -> term list
41113
b223fa19af3c added signature;
krauss
parents: 40722
diff changeset
    28
end
b223fa19af3c added signature;
krauss
parents: 40722
diff changeset
    29
b223fa19af3c added signature;
krauss
parents: 40722
diff changeset
    30
structure Function_Lib: FUNCTION_LIB =
33099
b8cdd3d73022 function package: more standard names for structures and files
krauss
parents:
diff changeset
    31
struct
b8cdd3d73022 function package: more standard names for structures and files
krauss
parents:
diff changeset
    32
40076
6f012a209dac some cleanup in Function_Lib
krauss
parents: 39756
diff changeset
    33
(* "The variable" ^ plural " is" "s are" vs *)
33099
b8cdd3d73022 function package: more standard names for structures and files
krauss
parents:
diff changeset
    34
fun plural sg pl [x] = sg
b8cdd3d73022 function package: more standard names for structures and files
krauss
parents:
diff changeset
    35
  | plural sg pl _ = pl
b8cdd3d73022 function package: more standard names for structures and files
krauss
parents:
diff changeset
    36
b8cdd3d73022 function package: more standard names for structures and files
krauss
parents:
diff changeset
    37
b8cdd3d73022 function package: more standard names for structures and files
krauss
parents:
diff changeset
    38
(* Removes all quantifiers from a term, replacing bound variables by frees. *)
56245
84fc7dfa3cd4 more qualified names;
wenzelm
parents: 54883
diff changeset
    39
fun dest_all_all (t as (Const (@{const_name Pure.all},_) $ _)) =
34232
36a2a3029fd3 new year's resolution: reindented code in function package
krauss
parents: 33855
diff changeset
    40
  let
40076
6f012a209dac some cleanup in Function_Lib
krauss
parents: 39756
diff changeset
    41
    val (v,b) = Logic.dest_all t |> apfst Free
34232
36a2a3029fd3 new year's resolution: reindented code in function package
krauss
parents: 33855
diff changeset
    42
    val (vs, b') = dest_all_all b
36a2a3029fd3 new year's resolution: reindented code in function package
krauss
parents: 33855
diff changeset
    43
  in
36a2a3029fd3 new year's resolution: reindented code in function package
krauss
parents: 33855
diff changeset
    44
    (v :: vs, b')
36a2a3029fd3 new year's resolution: reindented code in function package
krauss
parents: 33855
diff changeset
    45
  end
33099
b8cdd3d73022 function package: more standard names for structures and files
krauss
parents:
diff changeset
    46
  | dest_all_all t = ([],t)
33611
haftmann
parents: 33099
diff changeset
    47
33099
b8cdd3d73022 function package: more standard names for structures and files
krauss
parents:
diff changeset
    48
b8cdd3d73022 function package: more standard names for structures and files
krauss
parents:
diff changeset
    49
(* 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
    50
fun unordered_pairs [] = []
b8cdd3d73022 function package: more standard names for structures and files
krauss
parents:
diff changeset
    51
  | 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
    52
b8cdd3d73022 function package: more standard names for structures and files
krauss
parents:
diff changeset
    53
42497
89acb654d8eb inlined Function_Lib.replace_frees, which is used only once
krauss
parents: 42483
diff changeset
    54
(* renaming bound variables *)
33099
b8cdd3d73022 function package: more standard names for structures and files
krauss
parents:
diff changeset
    55
34232
36a2a3029fd3 new year's resolution: reindented code in function package
krauss
parents: 33855
diff changeset
    56
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
    57
  | rename_bound n _ = raise Match
b8cdd3d73022 function package: more standard names for structures and files
krauss
parents:
diff changeset
    58
b8cdd3d73022 function package: more standard names for structures and files
krauss
parents:
diff changeset
    59
fun mk_forall_rename (n, v) =
34232
36a2a3029fd3 new year's resolution: reindented code in function package
krauss
parents: 33855
diff changeset
    60
  rename_bound n o Logic.all v
33099
b8cdd3d73022 function package: more standard names for structures and files
krauss
parents:
diff changeset
    61
b8cdd3d73022 function package: more standard names for structures and files
krauss
parents:
diff changeset
    62
fun forall_intr_rename (n, cv) thm =
34232
36a2a3029fd3 new year's resolution: reindented code in function package
krauss
parents: 33855
diff changeset
    63
  let
36945
9bec62c10714 less pervasive names from structure Thm;
wenzelm
parents: 35402
diff changeset
    64
    val allthm = Thm.forall_intr cv thm
59582
0fbed69ff081 tuned signature -- prefer qualified names;
wenzelm
parents: 59498
diff changeset
    65
    val (_ $ abs) = Thm.prop_of allthm
45156
a9b6c2ea7bec added Term.dummy_pattern conveniences;
wenzelm
parents: 42498
diff changeset
    66
  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
    67
b8cdd3d73022 function package: more standard names for structures and files
krauss
parents:
diff changeset
    68
b8cdd3d73022 function package: more standard names for structures and files
krauss
parents:
diff changeset
    69
datatype proof_attempt = Solved of thm | Stuck of thm | Fail
b8cdd3d73022 function package: more standard names for structures and files
krauss
parents:
diff changeset
    70
34232
36a2a3029fd3 new year's resolution: reindented code in function package
krauss
parents: 33855
diff changeset
    71
fun try_proof cgoal tac =
36a2a3029fd3 new year's resolution: reindented code in function package
krauss
parents: 33855
diff changeset
    72
  case SINGLE tac (Goal.init cgoal) of
36a2a3029fd3 new year's resolution: reindented code in function package
krauss
parents: 33855
diff changeset
    73
    NONE => Fail
36a2a3029fd3 new year's resolution: reindented code in function package
krauss
parents: 33855
diff changeset
    74
  | SOME st =>
36a2a3029fd3 new year's resolution: reindented code in function package
krauss
parents: 33855
diff changeset
    75
    if Thm.no_prems st
36a2a3029fd3 new year's resolution: reindented code in function package
krauss
parents: 33855
diff changeset
    76
    then Solved (Goal.finish (Syntax.init_pretty_global (Thm.theory_of_cterm cgoal)) st)
36a2a3029fd3 new year's resolution: reindented code in function package
krauss
parents: 33855
diff changeset
    77
    else Stuck st
33099
b8cdd3d73022 function package: more standard names for structures and files
krauss
parents:
diff changeset
    78
b8cdd3d73022 function package: more standard names for structures and files
krauss
parents:
diff changeset
    79
34232
36a2a3029fd3 new year's resolution: reindented code in function package
krauss
parents: 33855
diff changeset
    80
fun dest_binop_list cn (t as (Const (n, _) $ a $ b)) =
36a2a3029fd3 new year's resolution: reindented code in function package
krauss
parents: 33855
diff changeset
    81
  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
    82
  | dest_binop_list _ t = [ t ]
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
b8cdd3d73022 function package: more standard names for structures and files
krauss
parents:
diff changeset
    85
(* separate two parts in a +-expression:
b8cdd3d73022 function package: more standard names for structures and files
krauss
parents:
diff changeset
    86
   "a + b + c + d + e" --> "(a + b + d) + (c + e)"
b8cdd3d73022 function package: more standard names for structures and files
krauss
parents:
diff changeset
    87
b8cdd3d73022 function package: more standard names for structures and files
krauss
parents:
diff changeset
    88
   Here, + can be any binary operation that is AC.
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
   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
    91
   ac - the AC rewrite rules for cn
b8cdd3d73022 function package: more standard names for structures and files
krauss
parents:
diff changeset
    92
   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
    93
        (e.g. [0,1,3] in the above example)
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
b8cdd3d73022 function package: more standard names for structures and files
krauss
parents:
diff changeset
    96
fun regroup_conv neu cn ac is ct =
b8cdd3d73022 function package: more standard names for structures and files
krauss
parents:
diff changeset
    97
 let
59582
0fbed69ff081 tuned signature -- prefer qualified names;
wenzelm
parents: 59498
diff changeset
    98
   val thy = Thm.theory_of_cterm ct
54742
7a86358a3c0b proper context for basic Simplifier operations: rewrite_rule, rewrite_goals_rule, rewrite_goals_tac etc.;
wenzelm
parents: 54407
diff changeset
    99
   val ctxt = Proof_Context.init_global thy  (* FIXME proper context!? *)
7a86358a3c0b proper context for basic Simplifier operations: rewrite_rule, rewrite_goals_rule, rewrite_goals_tac etc.;
wenzelm
parents: 54407
diff changeset
   100
33099
b8cdd3d73022 function package: more standard names for structures and files
krauss
parents:
diff changeset
   101
   val mk = HOLogic.mk_binop cn
59582
0fbed69ff081 tuned signature -- prefer qualified names;
wenzelm
parents: 59498
diff changeset
   102
   val t = Thm.term_of ct
33099
b8cdd3d73022 function package: more standard names for structures and files
krauss
parents:
diff changeset
   103
   val xs = dest_binop_list cn t
b8cdd3d73022 function package: more standard names for structures and files
krauss
parents:
diff changeset
   104
   val js = subtract (op =) is (0 upto (length xs) - 1)
b8cdd3d73022 function package: more standard names for structures and files
krauss
parents:
diff changeset
   105
   val ty = fastype_of t
b8cdd3d73022 function package: more standard names for structures and files
krauss
parents:
diff changeset
   106
 in
54883
dd04a8b654fc proper context for norm_hhf and derived operations;
wenzelm
parents: 54742
diff changeset
   107
   Goal.prove_internal ctxt []
59582
0fbed69ff081 tuned signature -- prefer qualified names;
wenzelm
parents: 59498
diff changeset
   108
     (Thm.cterm_of thy
33099
b8cdd3d73022 function package: more standard names for structures and files
krauss
parents:
diff changeset
   109
       (Logic.mk_equals (t,
33611
haftmann
parents: 33099
diff changeset
   110
          if null is
33099
b8cdd3d73022 function package: more standard names for structures and files
krauss
parents:
diff changeset
   111
          then mk (Const (neu, ty), foldr1 mk (map (nth xs) js))
33611
haftmann
parents: 33099
diff changeset
   112
          else if null js
33099
b8cdd3d73022 function package: more standard names for structures and files
krauss
parents:
diff changeset
   113
            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
   114
            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: 54407
diff changeset
   115
     (K (rewrite_goals_tac ctxt ac
59498
50b60f501b05 proper context for resolve_tac, eresolve_tac, dresolve_tac, forward_tac etc.;
wenzelm
parents: 58839
diff changeset
   116
         THEN resolve_tac ctxt [Drule.reflexive_thm] 1))
33099
b8cdd3d73022 function package: more standard names for structures and files
krauss
parents:
diff changeset
   117
 end
b8cdd3d73022 function package: more standard names for structures and files
krauss
parents:
diff changeset
   118
b8cdd3d73022 function package: more standard names for structures and files
krauss
parents:
diff changeset
   119
(* instance for unions *)
34232
36a2a3029fd3 new year's resolution: reindented code in function package
krauss
parents: 33855
diff changeset
   120
val regroup_union_conv =
35402
115a5a95710a clarified @{const_name} vs. @{const_abbrev};
wenzelm
parents: 34232
diff changeset
   121
  regroup_conv @{const_abbrev Set.empty} @{const_name Lattices.sup}
34232
36a2a3029fd3 new year's resolution: reindented code in function package
krauss
parents: 33855
diff changeset
   122
    (map (fn t => t RS eq_reflection)
36a2a3029fd3 new year's resolution: reindented code in function package
krauss
parents: 33855
diff changeset
   123
      (@{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
   124
b8cdd3d73022 function package: more standard names for structures and files
krauss
parents:
diff changeset
   125
54407
e95831757903 ported part of function package to new 'Ctr_Sugar' abstraction
blanchet
parents: 54406
diff changeset
   126
fun inst_constrs_of ctxt (Type (name, Ts)) =
e95831757903 ported part of function package to new 'Ctr_Sugar' abstraction
blanchet
parents: 54406
diff changeset
   127
    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: 54406
diff changeset
   128
  | inst_constrs_of _ _ = raise Match
54406
a2d18fea844a undid copy-paste
blanchet
parents: 45156
diff changeset
   129
33099
b8cdd3d73022 function package: more standard names for structures and files
krauss
parents:
diff changeset
   130
end