src/HOL/Tools/simpdata.ML
author wenzelm
Fri, 30 Apr 2010 23:53:37 +0200
changeset 36603 d5d6111761a6
parent 36543 0e7fc5bf38de
child 37743 3daaf23b9ab4
permissions -rw-r--r--
renamed Variable.thm_context to Variable.global_thm_context to emphasize that this is not the real thing;
haftmann@21163
     1
(*  Title:      HOL/simpdata.ML
haftmann@21163
     2
    Author:     Tobias Nipkow
haftmann@21163
     3
    Copyright   1991  University of Cambridge
haftmann@21163
     4
haftmann@21163
     5
Instantiation of the generic simplifier for HOL.
haftmann@21163
     6
*)
haftmann@21163
     7
haftmann@21163
     8
(** tools setup **)
haftmann@21163
     9
haftmann@21163
    10
structure Quantifier1 = Quantifier1Fun
haftmann@21163
    11
(struct
haftmann@21163
    12
  (*abstract syntax*)
wenzelm@35364
    13
  fun dest_eq ((c as Const(@{const_name "op ="},_)) $ s $ t) = SOME (c, s, t)
haftmann@21163
    14
    | dest_eq _ = NONE;
wenzelm@35364
    15
  fun dest_conj ((c as Const(@{const_name "op &"},_)) $ s $ t) = SOME (c, s, t)
haftmann@21163
    16
    | dest_conj _ = NONE;
wenzelm@35364
    17
  fun dest_imp ((c as Const(@{const_name "op -->"},_)) $ s $ t) = SOME (c, s, t)
haftmann@21163
    18
    | dest_imp _ = NONE;
haftmann@21163
    19
  val conj = HOLogic.conj
haftmann@21163
    20
  val imp  = HOLogic.imp
haftmann@21163
    21
  (*rules*)
wenzelm@22147
    22
  val iff_reflection = @{thm eq_reflection}
wenzelm@22147
    23
  val iffI = @{thm iffI}
wenzelm@22147
    24
  val iff_trans = @{thm trans}
wenzelm@22147
    25
  val conjI= @{thm conjI}
wenzelm@22147
    26
  val conjE= @{thm conjE}
wenzelm@22147
    27
  val impI = @{thm impI}
wenzelm@22147
    28
  val mp   = @{thm mp}
wenzelm@22147
    29
  val uncurry = @{thm uncurry}
wenzelm@22147
    30
  val exI  = @{thm exI}
wenzelm@22147
    31
  val exE  = @{thm exE}
wenzelm@22147
    32
  val iff_allI = @{thm iff_allI}
wenzelm@22147
    33
  val iff_exI = @{thm iff_exI}
wenzelm@22147
    34
  val all_comm = @{thm all_comm}
wenzelm@22147
    35
  val ex_comm = @{thm ex_comm}
haftmann@21163
    36
end);
haftmann@21163
    37
haftmann@21551
    38
structure Simpdata =
haftmann@21163
    39
struct
haftmann@21163
    40
wenzelm@22147
    41
fun mk_meta_eq r = r RS @{thm eq_reflection};
haftmann@21163
    42
fun safe_mk_meta_eq r = mk_meta_eq r handle Thm.THM _ => r;
haftmann@21163
    43
wenzelm@22147
    44
fun mk_eq th = case concl_of th
haftmann@21163
    45
  (*expects Trueprop if not == *)
wenzelm@35364
    46
  of Const (@{const_name "=="},_) $ _ $ _ => th
wenzelm@35364
    47
   | _ $ (Const (@{const_name "op ="}, _) $ _ $ _) => mk_meta_eq th
wenzelm@35364
    48
   | _ $ (Const (@{const_name "Not"}, _) $ _) => th RS @{thm Eq_FalseI}
wenzelm@22147
    49
   | _ => th RS @{thm Eq_TrueI}
haftmann@21163
    50
wenzelm@36543
    51
fun mk_eq_True (_: simpset) r =
wenzelm@22147
    52
  SOME (r RS @{thm meta_eq_to_obj_eq} RS @{thm Eq_TrueI}) handle Thm.THM _ => NONE;
haftmann@21163
    53
haftmann@21163
    54
(* Produce theorems of the form
haftmann@21163
    55
  (P1 =simp=> ... =simp=> Pn => x == y) ==> (P1 =simp=> ... =simp=> Pn => x = y)
haftmann@21163
    56
*)
haftmann@22838
    57
wenzelm@22147
    58
fun lift_meta_eq_to_obj_eq i st =
haftmann@21163
    59
  let
wenzelm@35364
    60
    fun count_imp (Const (@{const_name HOL.simp_implies}, _) $ P $ Q) = 1 + count_imp Q
haftmann@21163
    61
      | count_imp _ = 0;
haftmann@21163
    62
    val j = count_imp (Logic.strip_assums_concl (List.nth (prems_of st, i - 1)))
wenzelm@22147
    63
  in if j = 0 then @{thm meta_eq_to_obj_eq}
haftmann@21163
    64
    else
haftmann@21163
    65
      let
haftmann@21163
    66
        val Ps = map (fn k => Free ("P" ^ string_of_int k, propT)) (1 upto j);
wenzelm@33346
    67
        fun mk_simp_implies Q = fold_rev (fn R => fn S =>
wenzelm@35364
    68
          Const (@{const_name HOL.simp_implies}, propT --> propT --> propT) $ R $ S) Ps Q
haftmann@21163
    69
        val aT = TFree ("'a", HOLogic.typeS);
haftmann@21163
    70
        val x = Free ("x", aT);
haftmann@21163
    71
        val y = Free ("y", aT)
haftmann@21163
    72
      in Goal.prove_global (Thm.theory_of_thm st) []
haftmann@21163
    73
        [mk_simp_implies (Logic.mk_equals (x, y))]
haftmann@21163
    74
        (mk_simp_implies (HOLogic.mk_Trueprop (HOLogic.mk_eq (x, y))))
wenzelm@26711
    75
        (fn {prems, ...} => EVERY
wenzelm@22147
    76
         [rewrite_goals_tac @{thms simp_implies_def},
wenzelm@22147
    77
          REPEAT (ares_tac (@{thm meta_eq_to_obj_eq} ::
wenzelm@22147
    78
            map (rewrite_rule @{thms simp_implies_def}) prems) 1)])
haftmann@21163
    79
      end
haftmann@21163
    80
  end;
haftmann@21163
    81
haftmann@21163
    82
(*Congruence rules for = (instead of ==)*)
wenzelm@36543
    83
fun mk_meta_cong (_: simpset) rl = zero_var_indexes
haftmann@21163
    84
  (let val rl' = Seq.hd (TRYALL (fn i => fn st =>
haftmann@21163
    85
     rtac (lift_meta_eq_to_obj_eq i st) i st) rl)
haftmann@21163
    86
   in mk_meta_eq rl' handle THM _ =>
haftmann@21163
    87
     if can Logic.dest_equals (concl_of rl') then rl'
haftmann@21163
    88
     else error "Conclusion of congruence rules must be =-equality"
haftmann@21163
    89
   end);
haftmann@21163
    90
haftmann@21163
    91
fun mk_atomize pairs =
haftmann@21163
    92
  let
wenzelm@21313
    93
    fun atoms thm =
wenzelm@21313
    94
      let
wenzelm@21313
    95
        fun res th = map (fn rl => th RS rl);   (*exception THM*)
wenzelm@21313
    96
        fun res_fixed rls =
wenzelm@21313
    97
          if Thm.maxidx_of (Thm.adjust_maxidx_thm ~1 thm) = ~1 then res thm rls
wenzelm@36603
    98
          else Variable.trade (K (fn [thm'] => res thm' rls)) (Variable.global_thm_context thm) [thm];
wenzelm@21313
    99
      in
wenzelm@21313
   100
        case concl_of thm
wenzelm@35364
   101
          of Const (@{const_name Trueprop}, _) $ p => (case head_of p
wenzelm@21313
   102
            of Const (a, _) => (case AList.lookup (op =) pairs a
wenzelm@21313
   103
              of SOME rls => (maps atoms (res_fixed rls) handle THM _ => [thm])
wenzelm@21313
   104
              | NONE => [thm])
wenzelm@21313
   105
            | _ => [thm])
wenzelm@21313
   106
          | _ => [thm]
wenzelm@21313
   107
      end;
haftmann@21163
   108
  in atoms end;
haftmann@21163
   109
wenzelm@36543
   110
fun mksimps pairs (_: simpset) =
wenzelm@21313
   111
  map_filter (try mk_eq) o mk_atomize pairs o gen_all;
haftmann@21163
   112
wenzelm@22147
   113
fun unsafe_solver_tac prems =
wenzelm@22147
   114
  (fn i => REPEAT_DETERM (match_tac @{thms simp_impliesI} i)) THEN'
wenzelm@22147
   115
  FIRST' [resolve_tac (reflexive_thm :: @{thm TrueI} :: @{thm refl} :: prems), atac,
wenzelm@22147
   116
    etac @{thm FalseE}];
wenzelm@22147
   117
haftmann@21163
   118
val unsafe_solver = mk_solver "HOL unsafe" unsafe_solver_tac;
haftmann@21163
   119
haftmann@22838
   120
haftmann@21163
   121
(*No premature instantiation of variables during simplification*)
wenzelm@22147
   122
fun safe_solver_tac prems =
wenzelm@22147
   123
  (fn i => REPEAT_DETERM (match_tac @{thms simp_impliesI} i)) THEN'
wenzelm@22147
   124
  FIRST' [match_tac (reflexive_thm :: @{thm TrueI} :: @{thm refl} :: prems),
wenzelm@22147
   125
         eq_assume_tac, ematch_tac @{thms FalseE}];
wenzelm@22147
   126
haftmann@21163
   127
val safe_solver = mk_solver "HOL safe" safe_solver_tac;
haftmann@21163
   128
wenzelm@32177
   129
structure Splitter = Splitter
wenzelm@32177
   130
(
wenzelm@32177
   131
  val thy = @{theory}
wenzelm@32177
   132
  val mk_eq = mk_eq
wenzelm@32177
   133
  val meta_eq_to_iff = @{thm meta_eq_to_obj_eq}
wenzelm@32177
   134
  val iffD = @{thm iffD2}
wenzelm@32177
   135
  val disjE = @{thm disjE}
wenzelm@32177
   136
  val conjE = @{thm conjE}
wenzelm@32177
   137
  val exE = @{thm exE}
wenzelm@32177
   138
  val contrapos = @{thm contrapos_nn}
wenzelm@32177
   139
  val contrapos2 = @{thm contrapos_pp}
wenzelm@32177
   140
  val notnotD = @{thm notnotD}
wenzelm@32177
   141
);
haftmann@21163
   142
wenzelm@32177
   143
val split_tac = Splitter.split_tac;
wenzelm@21674
   144
val split_inside_tac = Splitter.split_inside_tac;
wenzelm@21674
   145
wenzelm@32177
   146
val op addsplits = Splitter.addsplits;
wenzelm@32177
   147
val op delsplits = Splitter.delsplits;
wenzelm@21674
   148
wenzelm@21674
   149
haftmann@21163
   150
(* integration of simplifier with classical reasoner *)
haftmann@21163
   151
haftmann@21163
   152
structure Clasimp = ClasimpFun
haftmann@21163
   153
 (structure Simplifier = Simplifier and Splitter = Splitter
haftmann@21163
   154
  and Classical  = Classical and Blast = Blast
wenzelm@22147
   155
  val iffD1 = @{thm iffD1} val iffD2 = @{thm iffD2} val notE = @{thm notE});
wenzelm@21674
   156
open Clasimp;
haftmann@21163
   157
wenzelm@27338
   158
val _ = ML_Antiquote.value "clasimpset"
wenzelm@32149
   159
  (Scan.succeed "Clasimp.clasimpset_of (ML_Context.the_local_context ())");
wenzelm@22128
   160
haftmann@21163
   161
val mksimps_pairs =
wenzelm@35364
   162
 [(@{const_name "op -->"}, [@{thm mp}]),
wenzelm@35364
   163
  (@{const_name "op &"}, [@{thm conjunct1}, @{thm conjunct2}]),
wenzelm@35364
   164
  (@{const_name All}, [@{thm spec}]),
wenzelm@35364
   165
  (@{const_name True}, []),
wenzelm@35364
   166
  (@{const_name False}, []),
wenzelm@35364
   167
  (@{const_name If}, [@{thm if_bool_eq_conj} RS @{thm iffD1}])];
haftmann@21163
   168
wenzelm@21674
   169
val HOL_basic_ss =
wenzelm@35232
   170
  Simplifier.global_context @{theory} empty_ss
haftmann@21163
   171
    setsubgoaler asm_simp_tac
haftmann@21163
   172
    setSSolver safe_solver
haftmann@21163
   173
    setSolver unsafe_solver
haftmann@21163
   174
    setmksimps (mksimps mksimps_pairs)
haftmann@21163
   175
    setmkeqTrue mk_eq_True
haftmann@21163
   176
    setmkcong mk_meta_cong;
haftmann@21163
   177
wenzelm@21674
   178
fun hol_simplify rews = Simplifier.full_simplify (HOL_basic_ss addsimps rews);
haftmann@21163
   179
haftmann@21163
   180
fun unfold_tac ths =
wenzelm@21674
   181
  let val ss0 = Simplifier.clear_ss HOL_basic_ss addsimps ths
haftmann@21163
   182
  in fn ss => ALLGOALS (full_simp_tac (Simplifier.inherit_context ss ss0)) end;
haftmann@21163
   183
haftmann@21163
   184
val defALL_regroup =
wenzelm@32011
   185
  Simplifier.simproc @{theory}
haftmann@21163
   186
    "defined ALL" ["ALL x. P x"] Quantifier1.rearrange_all;
haftmann@21163
   187
haftmann@21163
   188
val defEX_regroup =
wenzelm@32011
   189
  Simplifier.simproc @{theory}
haftmann@21163
   190
    "defined EX" ["EX x. P x"] Quantifier1.rearrange_ex;
haftmann@21163
   191
haftmann@21163
   192
wenzelm@24035
   193
val simpset_simprocs = HOL_basic_ss addsimprocs [defALL_regroup, defEX_regroup]
haftmann@21163
   194
wenzelm@21313
   195
end;
haftmann@21551
   196
haftmann@21551
   197
structure Splitter = Simpdata.Splitter;
haftmann@21551
   198
structure Clasimp = Simpdata.Clasimp;