src/HOL/Tools/simpdata.ML
author wenzelm
Tue, 10 Feb 2015 14:48:26 +0100
changeset 59498 50b60f501b05
parent 59169 ddc948e4ed09
child 59499 14095f771781
permissions -rw-r--r--
proper context for resolve_tac, eresolve_tac, dresolve_tac, forward_tac etc.; occasionally clarified use of context;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
37744
3daaf23b9ab4 tuned titles
haftmann
parents: 36603
diff changeset
     1
(*  Title:      HOL/Tools/simpdata.ML
21163
6860f161111c re-added simpdata.ML
haftmann
parents:
diff changeset
     2
    Author:     Tobias Nipkow
6860f161111c re-added simpdata.ML
haftmann
parents:
diff changeset
     3
    Copyright   1991  University of Cambridge
6860f161111c re-added simpdata.ML
haftmann
parents:
diff changeset
     4
6860f161111c re-added simpdata.ML
haftmann
parents:
diff changeset
     5
Instantiation of the generic simplifier for HOL.
6860f161111c re-added simpdata.ML
haftmann
parents:
diff changeset
     6
*)
6860f161111c re-added simpdata.ML
haftmann
parents:
diff changeset
     7
6860f161111c re-added simpdata.ML
haftmann
parents:
diff changeset
     8
(** tools setup **)
6860f161111c re-added simpdata.ML
haftmann
parents:
diff changeset
     9
42458
5dfae6d348fd misc tuning;
wenzelm
parents: 42455
diff changeset
    10
structure Quantifier1 = Quantifier1
5dfae6d348fd misc tuning;
wenzelm
parents: 42455
diff changeset
    11
(
21163
6860f161111c re-added simpdata.ML
haftmann
parents:
diff changeset
    12
  (*abstract syntax*)
42460
1805c67dc7aa simplified Data signature;
wenzelm
parents: 42458
diff changeset
    13
  fun dest_eq (Const(@{const_name HOL.eq},_) $ s $ t) = SOME (s, t)
21163
6860f161111c re-added simpdata.ML
haftmann
parents:
diff changeset
    14
    | dest_eq _ = NONE;
42460
1805c67dc7aa simplified Data signature;
wenzelm
parents: 42458
diff changeset
    15
  fun dest_conj (Const(@{const_name HOL.conj},_) $ s $ t) = SOME (s, t)
21163
6860f161111c re-added simpdata.ML
haftmann
parents:
diff changeset
    16
    | dest_conj _ = NONE;
42460
1805c67dc7aa simplified Data signature;
wenzelm
parents: 42458
diff changeset
    17
  fun dest_imp (Const(@{const_name HOL.implies},_) $ s $ t) = SOME (s, t)
21163
6860f161111c re-added simpdata.ML
haftmann
parents:
diff changeset
    18
    | dest_imp _ = NONE;
6860f161111c re-added simpdata.ML
haftmann
parents:
diff changeset
    19
  val conj = HOLogic.conj
6860f161111c re-added simpdata.ML
haftmann
parents:
diff changeset
    20
  val imp  = HOLogic.imp
6860f161111c re-added simpdata.ML
haftmann
parents:
diff changeset
    21
  (*rules*)
22147
f4ed4d940d44 simplified ML setup;
wenzelm
parents: 22128
diff changeset
    22
  val iff_reflection = @{thm eq_reflection}
f4ed4d940d44 simplified ML setup;
wenzelm
parents: 22128
diff changeset
    23
  val iffI = @{thm iffI}
f4ed4d940d44 simplified ML setup;
wenzelm
parents: 22128
diff changeset
    24
  val iff_trans = @{thm trans}
f4ed4d940d44 simplified ML setup;
wenzelm
parents: 22128
diff changeset
    25
  val conjI= @{thm conjI}
f4ed4d940d44 simplified ML setup;
wenzelm
parents: 22128
diff changeset
    26
  val conjE= @{thm conjE}
f4ed4d940d44 simplified ML setup;
wenzelm
parents: 22128
diff changeset
    27
  val impI = @{thm impI}
f4ed4d940d44 simplified ML setup;
wenzelm
parents: 22128
diff changeset
    28
  val mp   = @{thm mp}
f4ed4d940d44 simplified ML setup;
wenzelm
parents: 22128
diff changeset
    29
  val uncurry = @{thm uncurry}
f4ed4d940d44 simplified ML setup;
wenzelm
parents: 22128
diff changeset
    30
  val exI  = @{thm exI}
f4ed4d940d44 simplified ML setup;
wenzelm
parents: 22128
diff changeset
    31
  val exE  = @{thm exE}
f4ed4d940d44 simplified ML setup;
wenzelm
parents: 22128
diff changeset
    32
  val iff_allI = @{thm iff_allI}
f4ed4d940d44 simplified ML setup;
wenzelm
parents: 22128
diff changeset
    33
  val iff_exI = @{thm iff_exI}
f4ed4d940d44 simplified ML setup;
wenzelm
parents: 22128
diff changeset
    34
  val all_comm = @{thm all_comm}
f4ed4d940d44 simplified ML setup;
wenzelm
parents: 22128
diff changeset
    35
  val ex_comm = @{thm ex_comm}
42458
5dfae6d348fd misc tuning;
wenzelm
parents: 42455
diff changeset
    36
);
21163
6860f161111c re-added simpdata.ML
haftmann
parents:
diff changeset
    37
21551
d276e7d25017 introduced Simpdata structure
haftmann
parents: 21313
diff changeset
    38
structure Simpdata =
21163
6860f161111c re-added simpdata.ML
haftmann
parents:
diff changeset
    39
struct
6860f161111c re-added simpdata.ML
haftmann
parents:
diff changeset
    40
22147
f4ed4d940d44 simplified ML setup;
wenzelm
parents: 22128
diff changeset
    41
fun mk_meta_eq r = r RS @{thm eq_reflection};
21163
6860f161111c re-added simpdata.ML
haftmann
parents:
diff changeset
    42
fun safe_mk_meta_eq r = mk_meta_eq r handle Thm.THM _ => r;
6860f161111c re-added simpdata.ML
haftmann
parents:
diff changeset
    43
22147
f4ed4d940d44 simplified ML setup;
wenzelm
parents: 22128
diff changeset
    44
fun mk_eq th = case concl_of th
21163
6860f161111c re-added simpdata.ML
haftmann
parents:
diff changeset
    45
  (*expects Trueprop if not == *)
56245
84fc7dfa3cd4 more qualified names;
wenzelm
parents: 56073
diff changeset
    46
  of Const (@{const_name Pure.eq},_) $ _ $ _ => th
38864
4abe644fcea5 formerly unnamed infix equality now named HOL.eq
haftmann
parents: 38795
diff changeset
    47
   | _ $ (Const (@{const_name HOL.eq}, _) $ _ $ _) => mk_meta_eq th
38558
32ad17fe2b9c tuned quotes
haftmann
parents: 37744
diff changeset
    48
   | _ $ (Const (@{const_name Not}, _) $ _) => th RS @{thm Eq_FalseI}
22147
f4ed4d940d44 simplified ML setup;
wenzelm
parents: 22128
diff changeset
    49
   | _ => th RS @{thm Eq_TrueI}
21163
6860f161111c re-added simpdata.ML
haftmann
parents:
diff changeset
    50
51717
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 45625
diff changeset
    51
fun mk_eq_True (_: Proof.context) r =
22147
f4ed4d940d44 simplified ML setup;
wenzelm
parents: 22128
diff changeset
    52
  SOME (r RS @{thm meta_eq_to_obj_eq} RS @{thm Eq_TrueI}) handle Thm.THM _ => NONE;
21163
6860f161111c re-added simpdata.ML
haftmann
parents:
diff changeset
    53
6860f161111c re-added simpdata.ML
haftmann
parents:
diff changeset
    54
(* Produce theorems of the form
6860f161111c re-added simpdata.ML
haftmann
parents:
diff changeset
    55
  (P1 =simp=> ... =simp=> Pn => x == y) ==> (P1 =simp=> ... =simp=> Pn => x = y)
6860f161111c re-added simpdata.ML
haftmann
parents:
diff changeset
    56
*)
22838
haftmann
parents: 22147
diff changeset
    57
22147
f4ed4d940d44 simplified ML setup;
wenzelm
parents: 22128
diff changeset
    58
fun lift_meta_eq_to_obj_eq i st =
21163
6860f161111c re-added simpdata.ML
haftmann
parents:
diff changeset
    59
  let
35364
b8c62d60195c more antiquotations;
wenzelm
parents: 35232
diff changeset
    60
    fun count_imp (Const (@{const_name HOL.simp_implies}, _) $ P $ Q) = 1 + count_imp Q
21163
6860f161111c re-added simpdata.ML
haftmann
parents:
diff changeset
    61
      | count_imp _ = 0;
45622
wenzelm
parents: 45620
diff changeset
    62
    val j = count_imp (Logic.strip_assums_concl (Thm.term_of (Thm.cprem_of st i)))
42364
8c674b3b8e44 eliminated old List.nth;
wenzelm
parents: 38864
diff changeset
    63
  in
8c674b3b8e44 eliminated old List.nth;
wenzelm
parents: 38864
diff changeset
    64
    if j = 0 then @{thm meta_eq_to_obj_eq}
21163
6860f161111c re-added simpdata.ML
haftmann
parents:
diff changeset
    65
    else
6860f161111c re-added simpdata.ML
haftmann
parents:
diff changeset
    66
      let
6860f161111c re-added simpdata.ML
haftmann
parents:
diff changeset
    67
        val Ps = map (fn k => Free ("P" ^ string_of_int k, propT)) (1 upto j);
45622
wenzelm
parents: 45620
diff changeset
    68
        val mk_simp_implies = fold_rev (fn R => fn S =>
wenzelm
parents: 45620
diff changeset
    69
          Const (@{const_name HOL.simp_implies}, propT --> propT --> propT) $ R $ S) Ps;
42364
8c674b3b8e44 eliminated old List.nth;
wenzelm
parents: 38864
diff changeset
    70
      in
8c674b3b8e44 eliminated old List.nth;
wenzelm
parents: 38864
diff changeset
    71
        Goal.prove_global (Thm.theory_of_thm st) []
45622
wenzelm
parents: 45620
diff changeset
    72
          [mk_simp_implies @{prop "(x::'a) == y"}]
wenzelm
parents: 45620
diff changeset
    73
          (mk_simp_implies @{prop "(x::'a) = y"})
54742
7a86358a3c0b proper context for basic Simplifier operations: rewrite_rule, rewrite_goals_rule, rewrite_goals_tac etc.;
wenzelm
parents: 51717
diff changeset
    74
          (fn {context = ctxt, prems} => EVERY
7a86358a3c0b proper context for basic Simplifier operations: rewrite_rule, rewrite_goals_rule, rewrite_goals_tac etc.;
wenzelm
parents: 51717
diff changeset
    75
           [rewrite_goals_tac ctxt @{thms simp_implies_def},
42364
8c674b3b8e44 eliminated old List.nth;
wenzelm
parents: 38864
diff changeset
    76
            REPEAT (ares_tac (@{thm meta_eq_to_obj_eq} ::
54742
7a86358a3c0b proper context for basic Simplifier operations: rewrite_rule, rewrite_goals_rule, rewrite_goals_tac etc.;
wenzelm
parents: 51717
diff changeset
    77
              map (rewrite_rule ctxt @{thms simp_implies_def}) prems) 1)])
21163
6860f161111c re-added simpdata.ML
haftmann
parents:
diff changeset
    78
      end
6860f161111c re-added simpdata.ML
haftmann
parents:
diff changeset
    79
  end;
6860f161111c re-added simpdata.ML
haftmann
parents:
diff changeset
    80
6860f161111c re-added simpdata.ML
haftmann
parents:
diff changeset
    81
(*Congruence rules for = (instead of ==)*)
59498
50b60f501b05 proper context for resolve_tac, eresolve_tac, dresolve_tac, forward_tac etc.;
wenzelm
parents: 59169
diff changeset
    82
fun mk_meta_cong ctxt rl =
50b60f501b05 proper context for resolve_tac, eresolve_tac, dresolve_tac, forward_tac etc.;
wenzelm
parents: 59169
diff changeset
    83
  let
50b60f501b05 proper context for resolve_tac, eresolve_tac, dresolve_tac, forward_tac etc.;
wenzelm
parents: 59169
diff changeset
    84
    val rl' = Seq.hd (TRYALL (fn i => fn st =>
50b60f501b05 proper context for resolve_tac, eresolve_tac, dresolve_tac, forward_tac etc.;
wenzelm
parents: 59169
diff changeset
    85
      resolve_tac ctxt [lift_meta_eq_to_obj_eq i st] i st) rl)
50b60f501b05 proper context for resolve_tac, eresolve_tac, dresolve_tac, forward_tac etc.;
wenzelm
parents: 59169
diff changeset
    86
  in
50b60f501b05 proper context for resolve_tac, eresolve_tac, dresolve_tac, forward_tac etc.;
wenzelm
parents: 59169
diff changeset
    87
    mk_meta_eq rl' handle THM _ =>
50b60f501b05 proper context for resolve_tac, eresolve_tac, dresolve_tac, forward_tac etc.;
wenzelm
parents: 59169
diff changeset
    88
      if can Logic.dest_equals (concl_of rl') then rl'
50b60f501b05 proper context for resolve_tac, eresolve_tac, dresolve_tac, forward_tac etc.;
wenzelm
parents: 59169
diff changeset
    89
      else error "Conclusion of congruence rules must be =-equality"
50b60f501b05 proper context for resolve_tac, eresolve_tac, dresolve_tac, forward_tac etc.;
wenzelm
parents: 59169
diff changeset
    90
  end |> zero_var_indexes;
21163
6860f161111c re-added simpdata.ML
haftmann
parents:
diff changeset
    91
59169
ddc948e4ed09 proper context;
wenzelm
parents: 58963
diff changeset
    92
fun mk_atomize ctxt pairs =
21163
6860f161111c re-added simpdata.ML
haftmann
parents:
diff changeset
    93
  let
21313
26fc3a45547c mk_atomize: careful matching against rules admits overloading;
wenzelm
parents: 21163
diff changeset
    94
    fun atoms thm =
26fc3a45547c mk_atomize: careful matching against rules admits overloading;
wenzelm
parents: 21163
diff changeset
    95
      let
26fc3a45547c mk_atomize: careful matching against rules admits overloading;
wenzelm
parents: 21163
diff changeset
    96
        fun res th = map (fn rl => th RS rl);   (*exception THM*)
59169
ddc948e4ed09 proper context;
wenzelm
parents: 58963
diff changeset
    97
        val thm_ctxt = Variable.declare_thm thm ctxt;
21313
26fc3a45547c mk_atomize: careful matching against rules admits overloading;
wenzelm
parents: 21163
diff changeset
    98
        fun res_fixed rls =
26fc3a45547c mk_atomize: careful matching against rules admits overloading;
wenzelm
parents: 21163
diff changeset
    99
          if Thm.maxidx_of (Thm.adjust_maxidx_thm ~1 thm) = ~1 then res thm rls
59169
ddc948e4ed09 proper context;
wenzelm
parents: 58963
diff changeset
   100
          else Variable.trade (K (fn [thm'] => res thm' rls)) thm_ctxt [thm];
21313
26fc3a45547c mk_atomize: careful matching against rules admits overloading;
wenzelm
parents: 21163
diff changeset
   101
      in
26fc3a45547c mk_atomize: careful matching against rules admits overloading;
wenzelm
parents: 21163
diff changeset
   102
        case concl_of thm
35364
b8c62d60195c more antiquotations;
wenzelm
parents: 35232
diff changeset
   103
          of Const (@{const_name Trueprop}, _) $ p => (case head_of p
21313
26fc3a45547c mk_atomize: careful matching against rules admits overloading;
wenzelm
parents: 21163
diff changeset
   104
            of Const (a, _) => (case AList.lookup (op =) pairs a
26fc3a45547c mk_atomize: careful matching against rules admits overloading;
wenzelm
parents: 21163
diff changeset
   105
              of SOME rls => (maps atoms (res_fixed rls) handle THM _ => [thm])
26fc3a45547c mk_atomize: careful matching against rules admits overloading;
wenzelm
parents: 21163
diff changeset
   106
              | NONE => [thm])
26fc3a45547c mk_atomize: careful matching against rules admits overloading;
wenzelm
parents: 21163
diff changeset
   107
            | _ => [thm])
26fc3a45547c mk_atomize: careful matching against rules admits overloading;
wenzelm
parents: 21163
diff changeset
   108
          | _ => [thm]
26fc3a45547c mk_atomize: careful matching against rules admits overloading;
wenzelm
parents: 21163
diff changeset
   109
      end;
21163
6860f161111c re-added simpdata.ML
haftmann
parents:
diff changeset
   110
  in atoms end;
6860f161111c re-added simpdata.ML
haftmann
parents:
diff changeset
   111
59169
ddc948e4ed09 proper context;
wenzelm
parents: 58963
diff changeset
   112
fun mksimps pairs ctxt =
ddc948e4ed09 proper context;
wenzelm
parents: 58963
diff changeset
   113
  map_filter (try mk_eq) o mk_atomize ctxt pairs o gen_all;
21163
6860f161111c re-added simpdata.ML
haftmann
parents:
diff changeset
   114
56073
29e308b56d23 enhanced simplifier solver for preconditions of rewrite rule, can now deal with conjunctions
nipkow
parents: 54998
diff changeset
   115
val simp_legacy_precond =
29e308b56d23 enhanced simplifier solver for preconditions of rewrite rule, can now deal with conjunctions
nipkow
parents: 54998
diff changeset
   116
  Attrib.setup_config_bool @{binding "simp_legacy_precond"} (K false)
29e308b56d23 enhanced simplifier solver for preconditions of rewrite rule, can now deal with conjunctions
nipkow
parents: 54998
diff changeset
   117
51717
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 45625
diff changeset
   118
fun unsafe_solver_tac ctxt =
56073
29e308b56d23 enhanced simplifier solver for preconditions of rewrite rule, can now deal with conjunctions
nipkow
parents: 54998
diff changeset
   119
  let
29e308b56d23 enhanced simplifier solver for preconditions of rewrite rule, can now deal with conjunctions
nipkow
parents: 54998
diff changeset
   120
    val intros =
29e308b56d23 enhanced simplifier solver for preconditions of rewrite rule, can now deal with conjunctions
nipkow
parents: 54998
diff changeset
   121
      if Config.get ctxt simp_legacy_precond then [] else [@{thm conjI}]
29e308b56d23 enhanced simplifier solver for preconditions of rewrite rule, can now deal with conjunctions
nipkow
parents: 54998
diff changeset
   122
    val sol_thms =
29e308b56d23 enhanced simplifier solver for preconditions of rewrite rule, can now deal with conjunctions
nipkow
parents: 54998
diff changeset
   123
      reflexive_thm :: @{thm TrueI} :: @{thm refl} :: Simplifier.prems_of ctxt;
29e308b56d23 enhanced simplifier solver for preconditions of rewrite rule, can now deal with conjunctions
nipkow
parents: 54998
diff changeset
   124
    fun sol_tac i =
59498
50b60f501b05 proper context for resolve_tac, eresolve_tac, dresolve_tac, forward_tac etc.;
wenzelm
parents: 59169
diff changeset
   125
      FIRST
50b60f501b05 proper context for resolve_tac, eresolve_tac, dresolve_tac, forward_tac etc.;
wenzelm
parents: 59169
diff changeset
   126
       [resolve_tac ctxt sol_thms i,
50b60f501b05 proper context for resolve_tac, eresolve_tac, dresolve_tac, forward_tac etc.;
wenzelm
parents: 59169
diff changeset
   127
        assume_tac ctxt i,
50b60f501b05 proper context for resolve_tac, eresolve_tac, dresolve_tac, forward_tac etc.;
wenzelm
parents: 59169
diff changeset
   128
        eresolve_tac ctxt @{thms FalseE} i] ORELSE
58957
c9e744ea8a38 proper context for match_tac etc.;
wenzelm
parents: 58839
diff changeset
   129
      (match_tac ctxt intros THEN_ALL_NEW sol_tac) i
56073
29e308b56d23 enhanced simplifier solver for preconditions of rewrite rule, can now deal with conjunctions
nipkow
parents: 54998
diff changeset
   130
  in
58957
c9e744ea8a38 proper context for match_tac etc.;
wenzelm
parents: 58839
diff changeset
   131
    (fn i => REPEAT_DETERM (match_tac ctxt @{thms simp_impliesI} i)) THEN' sol_tac
56073
29e308b56d23 enhanced simplifier solver for preconditions of rewrite rule, can now deal with conjunctions
nipkow
parents: 54998
diff changeset
   132
  end;
22147
f4ed4d940d44 simplified ML setup;
wenzelm
parents: 22128
diff changeset
   133
21163
6860f161111c re-added simpdata.ML
haftmann
parents:
diff changeset
   134
val unsafe_solver = mk_solver "HOL unsafe" unsafe_solver_tac;
6860f161111c re-added simpdata.ML
haftmann
parents:
diff changeset
   135
22838
haftmann
parents: 22147
diff changeset
   136
21163
6860f161111c re-added simpdata.ML
haftmann
parents:
diff changeset
   137
(*No premature instantiation of variables during simplification*)
51717
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 45625
diff changeset
   138
fun safe_solver_tac ctxt =
58957
c9e744ea8a38 proper context for match_tac etc.;
wenzelm
parents: 58839
diff changeset
   139
  (fn i => REPEAT_DETERM (match_tac ctxt @{thms simp_impliesI} i)) THEN'
c9e744ea8a38 proper context for match_tac etc.;
wenzelm
parents: 58839
diff changeset
   140
  FIRST' [match_tac ctxt (reflexive_thm :: @{thm TrueI} :: @{thm refl} :: Simplifier.prems_of ctxt),
c9e744ea8a38 proper context for match_tac etc.;
wenzelm
parents: 58839
diff changeset
   141
    eq_assume_tac, ematch_tac ctxt @{thms FalseE}];
22147
f4ed4d940d44 simplified ML setup;
wenzelm
parents: 22128
diff changeset
   142
21163
6860f161111c re-added simpdata.ML
haftmann
parents:
diff changeset
   143
val safe_solver = mk_solver "HOL safe" safe_solver_tac;
6860f161111c re-added simpdata.ML
haftmann
parents:
diff changeset
   144
32177
bc02c5bfcb5b renamed functor SplitterFun to Splitter, require explicit theory;
wenzelm
parents: 32155
diff changeset
   145
structure Splitter = Splitter
bc02c5bfcb5b renamed functor SplitterFun to Splitter, require explicit theory;
wenzelm
parents: 32155
diff changeset
   146
(
bc02c5bfcb5b renamed functor SplitterFun to Splitter, require explicit theory;
wenzelm
parents: 32155
diff changeset
   147
  val thy = @{theory}
bc02c5bfcb5b renamed functor SplitterFun to Splitter, require explicit theory;
wenzelm
parents: 32155
diff changeset
   148
  val mk_eq = mk_eq
bc02c5bfcb5b renamed functor SplitterFun to Splitter, require explicit theory;
wenzelm
parents: 32155
diff changeset
   149
  val meta_eq_to_iff = @{thm meta_eq_to_obj_eq}
bc02c5bfcb5b renamed functor SplitterFun to Splitter, require explicit theory;
wenzelm
parents: 32155
diff changeset
   150
  val iffD = @{thm iffD2}
bc02c5bfcb5b renamed functor SplitterFun to Splitter, require explicit theory;
wenzelm
parents: 32155
diff changeset
   151
  val disjE = @{thm disjE}
bc02c5bfcb5b renamed functor SplitterFun to Splitter, require explicit theory;
wenzelm
parents: 32155
diff changeset
   152
  val conjE = @{thm conjE}
bc02c5bfcb5b renamed functor SplitterFun to Splitter, require explicit theory;
wenzelm
parents: 32155
diff changeset
   153
  val exE = @{thm exE}
bc02c5bfcb5b renamed functor SplitterFun to Splitter, require explicit theory;
wenzelm
parents: 32155
diff changeset
   154
  val contrapos = @{thm contrapos_nn}
bc02c5bfcb5b renamed functor SplitterFun to Splitter, require explicit theory;
wenzelm
parents: 32155
diff changeset
   155
  val contrapos2 = @{thm contrapos_pp}
bc02c5bfcb5b renamed functor SplitterFun to Splitter, require explicit theory;
wenzelm
parents: 32155
diff changeset
   156
  val notnotD = @{thm notnotD}
bc02c5bfcb5b renamed functor SplitterFun to Splitter, require explicit theory;
wenzelm
parents: 32155
diff changeset
   157
);
21163
6860f161111c re-added simpdata.ML
haftmann
parents:
diff changeset
   158
32177
bc02c5bfcb5b renamed functor SplitterFun to Splitter, require explicit theory;
wenzelm
parents: 32155
diff changeset
   159
val split_tac = Splitter.split_tac;
21674
8a6bf9d7c751 simplified ML bindings -- moved to HOL.thy;
wenzelm
parents: 21551
diff changeset
   160
val split_inside_tac = Splitter.split_inside_tac;
8a6bf9d7c751 simplified ML bindings -- moved to HOL.thy;
wenzelm
parents: 21551
diff changeset
   161
8a6bf9d7c751 simplified ML bindings -- moved to HOL.thy;
wenzelm
parents: 21551
diff changeset
   162
21163
6860f161111c re-added simpdata.ML
haftmann
parents:
diff changeset
   163
(* integration of simplifier with classical reasoner *)
6860f161111c re-added simpdata.ML
haftmann
parents:
diff changeset
   164
42478
8a526c010c3b modernized Clasimp setup;
wenzelm
parents: 42460
diff changeset
   165
structure Clasimp = Clasimp
8a526c010c3b modernized Clasimp setup;
wenzelm
parents: 42460
diff changeset
   166
(
8a526c010c3b modernized Clasimp setup;
wenzelm
parents: 42460
diff changeset
   167
  structure Simplifier = Simplifier
8a526c010c3b modernized Clasimp setup;
wenzelm
parents: 42460
diff changeset
   168
    and Splitter = Splitter
8a526c010c3b modernized Clasimp setup;
wenzelm
parents: 42460
diff changeset
   169
    and Classical  = Classical
8a526c010c3b modernized Clasimp setup;
wenzelm
parents: 42460
diff changeset
   170
    and Blast = Blast
8a526c010c3b modernized Clasimp setup;
wenzelm
parents: 42460
diff changeset
   171
  val iffD1 = @{thm iffD1}
8a526c010c3b modernized Clasimp setup;
wenzelm
parents: 42460
diff changeset
   172
  val iffD2 = @{thm iffD2}
8a526c010c3b modernized Clasimp setup;
wenzelm
parents: 42460
diff changeset
   173
  val notE = @{thm notE}
8a526c010c3b modernized Clasimp setup;
wenzelm
parents: 42460
diff changeset
   174
);
21674
8a6bf9d7c751 simplified ML bindings -- moved to HOL.thy;
wenzelm
parents: 21551
diff changeset
   175
open Clasimp;
21163
6860f161111c re-added simpdata.ML
haftmann
parents:
diff changeset
   176
6860f161111c re-added simpdata.ML
haftmann
parents:
diff changeset
   177
val mksimps_pairs =
38786
e46e7a9cb622 formerly unnamed infix impliciation now named HOL.implies
haftmann
parents: 38715
diff changeset
   178
 [(@{const_name HOL.implies}, [@{thm mp}]),
38795
848be46708dc formerly unnamed infix conjunction and disjunction now named HOL.conj and HOL.disj
haftmann
parents: 38786
diff changeset
   179
  (@{const_name HOL.conj}, [@{thm conjunct1}, @{thm conjunct2}]),
35364
b8c62d60195c more antiquotations;
wenzelm
parents: 35232
diff changeset
   180
  (@{const_name All}, [@{thm spec}]),
b8c62d60195c more antiquotations;
wenzelm
parents: 35232
diff changeset
   181
  (@{const_name True}, []),
b8c62d60195c more antiquotations;
wenzelm
parents: 35232
diff changeset
   182
  (@{const_name False}, []),
b8c62d60195c more antiquotations;
wenzelm
parents: 35232
diff changeset
   183
  (@{const_name If}, [@{thm if_bool_eq_conj} RS @{thm iffD1}])];
21163
6860f161111c re-added simpdata.ML
haftmann
parents:
diff changeset
   184
21674
8a6bf9d7c751 simplified ML bindings -- moved to HOL.thy;
wenzelm
parents: 21551
diff changeset
   185
val HOL_basic_ss =
51717
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 45625
diff changeset
   186
  empty_simpset @{context}
45625
750c5a47400b modernized some old-style infix operations, which were left over from the time of ML proof scripts;
wenzelm
parents: 45622
diff changeset
   187
  setSSolver safe_solver
750c5a47400b modernized some old-style infix operations, which were left over from the time of ML proof scripts;
wenzelm
parents: 45622
diff changeset
   188
  setSolver unsafe_solver
750c5a47400b modernized some old-style infix operations, which were left over from the time of ML proof scripts;
wenzelm
parents: 45622
diff changeset
   189
  |> Simplifier.set_subgoaler asm_simp_tac
750c5a47400b modernized some old-style infix operations, which were left over from the time of ML proof scripts;
wenzelm
parents: 45622
diff changeset
   190
  |> Simplifier.set_mksimps (mksimps mksimps_pairs)
750c5a47400b modernized some old-style infix operations, which were left over from the time of ML proof scripts;
wenzelm
parents: 45622
diff changeset
   191
  |> Simplifier.set_mkeqTrue mk_eq_True
51717
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 45625
diff changeset
   192
  |> Simplifier.set_mkcong mk_meta_cong
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 45625
diff changeset
   193
  |> simpset_of;
21163
6860f161111c re-added simpdata.ML
haftmann
parents:
diff changeset
   194
51717
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 45625
diff changeset
   195
fun hol_simplify ctxt rews =
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 45625
diff changeset
   196
  Simplifier.full_simplify (put_simpset HOL_basic_ss ctxt addsimps rews);
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 45625
diff changeset
   197
54998
8601434fa334 tuned signature;
wenzelm
parents: 54742
diff changeset
   198
fun unfold_tac ctxt ths =
51717
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 45625
diff changeset
   199
  ALLGOALS (full_simp_tac (clear_simpset (put_simpset HOL_basic_ss ctxt) addsimps ths));
21163
6860f161111c re-added simpdata.ML
haftmann
parents:
diff changeset
   200
21313
26fc3a45547c mk_atomize: careful matching against rules admits overloading;
wenzelm
parents: 21163
diff changeset
   201
end;
21551
d276e7d25017 introduced Simpdata structure
haftmann
parents: 21313
diff changeset
   202
d276e7d25017 introduced Simpdata structure
haftmann
parents: 21313
diff changeset
   203
structure Splitter = Simpdata.Splitter;
d276e7d25017 introduced Simpdata structure
haftmann
parents: 21313
diff changeset
   204
structure Clasimp = Simpdata.Clasimp;