src/Provers/clasimp.ML
author wenzelm
Thu, 03 Aug 2000 00:44:49 +0200
changeset 9506 e5857656b8f0
parent 9440 a72fe5eafb5e
child 9591 590d36e059d1
permissions -rw-r--r--
export get_local_clasimpset, clasimp_modifiers;
oheimb@4652
     1
(*  Title: 	Provers/clasimp.ML
oheimb@4652
     2
    ID:         $Id$
oheimb@4652
     3
    Author:     David von Oheimb, TU Muenchen
oheimb@4652
     4
wenzelm@5219
     5
Combination of classical reasoner and simplifier (depends on
wenzelm@8469
     6
simplifier.ML, splitter.ML classical.ML, blast.ML).
oheimb@4652
     7
*)
oheimb@4652
     8
oheimb@5554
     9
infix 4 addSIs2 addSEs2 addSDs2 addIs2 addEs2 addDs2 addsimps2 delsimps2;
oheimb@4652
    10
infix 4 addSss addss;
oheimb@4652
    11
wenzelm@5219
    12
signature CLASIMP_DATA =
wenzelm@5219
    13
sig
wenzelm@5219
    14
  structure Simplifier: SIMPLIFIER
wenzelm@8469
    15
  structure Splitter: SPLITTER
wenzelm@5219
    16
  structure Classical: CLASSICAL
wenzelm@5219
    17
  structure Blast: BLAST
wenzelm@5219
    18
  sharing type Classical.claset = Blast.claset
wenzelm@5219
    19
end
wenzelm@5219
    20
oheimb@4652
    21
signature CLASIMP =
oheimb@4652
    22
sig
wenzelm@5219
    23
  include CLASIMP_DATA
wenzelm@5219
    24
  type claset
wenzelm@5219
    25
  type simpset
wenzelm@5219
    26
  type clasimpset
oheimb@4652
    27
  val addSIs2	: clasimpset * thm list -> clasimpset
oheimb@4652
    28
  val addSEs2	: clasimpset * thm list -> clasimpset
oheimb@4652
    29
  val addSDs2	: clasimpset * thm list -> clasimpset
oheimb@4652
    30
  val addIs2	: clasimpset * thm list -> clasimpset
oheimb@4652
    31
  val addEs2	: clasimpset * thm list -> clasimpset
oheimb@4652
    32
  val addDs2	: clasimpset * thm list -> clasimpset
oheimb@4652
    33
  val addsimps2	: clasimpset * thm list -> clasimpset
oheimb@4652
    34
  val delsimps2	: clasimpset * thm list -> clasimpset
oheimb@4652
    35
  val addSss	: claset * simpset -> claset
oheimb@4652
    36
  val addss	: claset * simpset -> claset
oheimb@5483
    37
  val CLASIMPSET  :(clasimpset -> tactic) -> tactic
oheimb@5483
    38
  val CLASIMPSET' :(clasimpset -> 'a -> tactic) -> 'a -> tactic
oheimb@5483
    39
  val clarsimp_tac: clasimpset -> int -> tactic
oheimb@5483
    40
  val Clarsimp_tac:               int -> tactic
oheimb@5483
    41
  val mk_auto_tac : clasimpset -> int -> int -> tactic
oheimb@5483
    42
  val auto_tac	  : clasimpset -> tactic
oheimb@5483
    43
  val Auto_tac	  : tactic
oheimb@5483
    44
  val auto	  : unit -> unit
oheimb@5483
    45
  val force_tac	  : clasimpset  -> int -> tactic
oheimb@5483
    46
  val Force_tac	  : int -> tactic
oheimb@5483
    47
  val force	  : int -> unit
wenzelm@8639
    48
  val change_global_css: (clasimpset * thm list -> clasimpset) -> theory attribute
wenzelm@8639
    49
  val change_local_css: (clasimpset * thm list -> clasimpset) -> Proof.context attribute
wenzelm@9506
    50
  val get_local_clasimpset: Proof.context -> clasimpset
wenzelm@9506
    51
  val clasimp_modifiers: (Args.T list -> (Method.modifier * Args.T list)) list
wenzelm@5926
    52
  val setup	  : (theory -> theory) list
oheimb@4652
    53
end;
oheimb@4652
    54
wenzelm@5219
    55
functor ClasimpFun(Data: CLASIMP_DATA): CLASIMP =
oheimb@4652
    56
struct
oheimb@4652
    57
wenzelm@5219
    58
open Data;
wenzelm@5219
    59
wenzelm@5219
    60
type claset = Classical.claset;
wenzelm@5219
    61
type simpset = Simplifier.simpset;
wenzelm@5219
    62
type clasimpset = claset * simpset;
wenzelm@5219
    63
wenzelm@5219
    64
wenzelm@5219
    65
(* clasimpset operations *)
wenzelm@5219
    66
wenzelm@5219
    67
(*this interface for updating a clasimpset is rudimentary and just for
wenzelm@5219
    68
  convenience for the most common cases*)
wenzelm@5219
    69
wenzelm@5219
    70
fun pair_upd1 f ((a,b),x) = (f(a,x), b);
wenzelm@5219
    71
fun pair_upd2 f ((a,b),x) = (a, f(b,x));
wenzelm@5219
    72
wenzelm@5219
    73
fun op addSIs2   arg = pair_upd1 Classical.addSIs arg;
wenzelm@5219
    74
fun op addSEs2   arg = pair_upd1 Classical.addSEs arg;
wenzelm@5219
    75
fun op addSDs2   arg = pair_upd1 Classical.addSDs arg;
wenzelm@5219
    76
fun op addIs2    arg = pair_upd1 Classical.addIs arg;
wenzelm@5219
    77
fun op addEs2    arg = pair_upd1 Classical.addEs arg;
wenzelm@5219
    78
fun op addDs2    arg = pair_upd1 Classical.addDs arg;
wenzelm@5219
    79
fun op addsimps2 arg = pair_upd2 Simplifier.addsimps arg;
wenzelm@5219
    80
fun op delsimps2 arg = pair_upd2 Simplifier.delsimps arg;
oheimb@4652
    81
oheimb@9402
    82
(*not totally safe: may instantiate unknowns that appear also in other subgoals*)
oheimb@9402
    83
val safe_asm_full_simp_tac = Simplifier.generic_simp_tac true (true,true,true);
oheimb@9402
    84
oheimb@4652
    85
(*Add a simpset to a classical set!*)
oheimb@4652
    86
(*Caution: only one simpset added can be added by each of addSss and addss*)
paulson@5567
    87
fun cs addSss ss = Classical.addSaltern (cs, ("safe_asm_full_simp_tac",
oheimb@9402
    88
			    CHANGED o safe_asm_full_simp_tac ss));
paulson@5567
    89
fun cs addss  ss = Classical.addbefore  (cs, ("asm_full_simp_tac", 
oheimb@5554
    90
			    CHANGED o Simplifier.asm_full_simp_tac ss));
oheimb@4652
    91
wenzelm@5219
    92
(* tacticals *)
wenzelm@4888
    93
wenzelm@5219
    94
fun CLASIMPSET tacf state =
wenzelm@5219
    95
  Classical.CLASET (fn cs => Simplifier.SIMPSET (fn ss => tacf (cs, ss))) state;
wenzelm@4888
    96
wenzelm@5219
    97
fun CLASIMPSET' tacf i state =
wenzelm@5219
    98
  Classical.CLASET (fn cs => Simplifier.SIMPSET (fn ss => tacf (cs, ss) i)) state;
oheimb@4652
    99
oheimb@4652
   100
oheimb@9402
   101
fun clarsimp_tac (cs, ss) = safe_asm_full_simp_tac ss THEN_ALL_NEW
oheimb@5483
   102
			    Classical.clarify_tac (cs addSss ss);
oheimb@5483
   103
fun Clarsimp_tac i = clarsimp_tac (Classical.claset(), Simplifier.simpset()) i;
oheimb@5483
   104
oheimb@5483
   105
wenzelm@5219
   106
(* auto_tac *)
oheimb@4652
   107
wenzelm@5219
   108
fun blast_depth_tac cs m i thm =
oheimb@5554
   109
    Blast.depth_tac cs m i thm 
oheimb@5554
   110
      handle Blast.TRANS s => (warning ("Blast_tac: " ^ s); Seq.empty);
oheimb@5756
   111
 
wenzelm@5219
   112
(* a variant of depth_tac that avoids interference of the simplifier 
wenzelm@5219
   113
   with dup_step_tac when they are combined by auto_tac *)
oheimb@5756
   114
local
oheimb@5756
   115
fun slow_step_tac' cs = Classical.appWrappers cs 
oheimb@5756
   116
	(Classical.instp_step_tac cs APPEND' Classical.haz_step_tac cs);
oheimb@5756
   117
in fun nodup_depth_tac cs m i state = SELECT_GOAL 
oheimb@5756
   118
   (Classical.safe_steps_tac cs 1 THEN_ELSE 
oheimb@5756
   119
	(DEPTH_SOLVE (nodup_depth_tac cs m 1),
oheimb@5756
   120
	 Classical.inst0_step_tac cs 1 APPEND COND (K (m=0)) no_tac
oheimb@5756
   121
	     (slow_step_tac' cs 1 THEN DEPTH_SOLVE (nodup_depth_tac cs (m-1) 1))
oheimb@5756
   122
        )) i state;
oheimb@5756
   123
end;
oheimb@4652
   124
oheimb@9402
   125
(*Designed to be idempotent, except if blast_depth_tac instantiates variables
oheimb@4652
   126
  in some of the subgoals*)
oheimb@4652
   127
fun mk_auto_tac (cs, ss) m n =
wenzelm@5219
   128
    let val cs' = cs addss ss
oheimb@4652
   129
        val maintac = 
oheimb@5756
   130
          blast_depth_tac cs m		     (* fast but can't use wrappers *)
oheimb@4652
   131
          ORELSE'
oheimb@5756
   132
          (CHANGED o nodup_depth_tac cs' n); (* slower but more general *)
wenzelm@5219
   133
    in  EVERY [ALLGOALS (Simplifier.asm_full_simp_tac ss),
oheimb@5525
   134
	       TRY (Classical.safe_tac cs),
oheimb@4652
   135
	       REPEAT (FIRSTGOAL maintac),
wenzelm@5219
   136
               TRY (Classical.safe_tac (cs addSss ss)),
oheimb@4652
   137
	       prune_params_tac] 
oheimb@4652
   138
    end;
oheimb@4652
   139
oheimb@4652
   140
fun auto_tac (cs,ss) = mk_auto_tac (cs,ss) 4 2;
oheimb@4652
   141
wenzelm@5219
   142
fun Auto_tac st = auto_tac (Classical.claset(), Simplifier.simpset()) st;
oheimb@4652
   143
oheimb@4652
   144
fun auto () = by Auto_tac;
oheimb@4652
   145
wenzelm@5219
   146
(* force_tac *)
wenzelm@5219
   147
oheimb@4659
   148
(* aimed to solve the given subgoal totally, using whatever tools possible *)
oheimb@4717
   149
fun force_tac (cs,ss) = let val cs' = cs addss ss in SELECT_GOAL (EVERY [
wenzelm@5219
   150
	Classical.clarify_tac cs' 1,
wenzelm@5219
   151
	IF_UNSOLVED (Simplifier.asm_full_simp_tac ss 1),
oheimb@9402
   152
	ALLGOALS (Classical.first_best_tac cs')]) end;
wenzelm@5219
   153
fun Force_tac i = force_tac (Classical.claset(), Simplifier.simpset()) i;
oheimb@4717
   154
fun force i = by (Force_tac i);
oheimb@4659
   155
wenzelm@5219
   156
wenzelm@8639
   157
(* attributes *)
wenzelm@8639
   158
wenzelm@8639
   159
fun change_global_css f (thy, th) =
wenzelm@8639
   160
  let
wenzelm@8639
   161
    val cs_ref = Classical.claset_ref_of thy;
wenzelm@8639
   162
    val ss_ref = Simplifier.simpset_ref_of thy;
wenzelm@8639
   163
    val (cs', ss') = f ((! cs_ref, ! ss_ref), [th]);
wenzelm@8639
   164
  in cs_ref := cs'; ss_ref := ss'; (thy, th) end;
wenzelm@8639
   165
wenzelm@8639
   166
fun change_local_css f (ctxt, th) =
wenzelm@8639
   167
  let
wenzelm@8639
   168
    val cs = Classical.get_local_claset ctxt;
wenzelm@8639
   169
    val ss = Simplifier.get_local_simpset ctxt;
wenzelm@8639
   170
    val (cs', ss') = f ((cs, ss), [th]);
wenzelm@8639
   171
    val ctxt' =
wenzelm@8639
   172
      ctxt
wenzelm@8639
   173
      |> Classical.put_local_claset cs'
wenzelm@8639
   174
      |> Simplifier.put_local_simpset ss';
wenzelm@8639
   175
  in (ctxt', th) end;
wenzelm@8639
   176
wenzelm@8639
   177
wenzelm@5926
   178
(* methods *)
wenzelm@5926
   179
wenzelm@7153
   180
fun get_local_clasimpset ctxt =
wenzelm@7153
   181
  (Classical.get_local_claset ctxt, Simplifier.get_local_simpset ctxt);
wenzelm@5926
   182
wenzelm@8469
   183
val clasimp_modifiers =
wenzelm@8469
   184
  Simplifier.simp_modifiers @ Splitter.split_modifiers @ Classical.cla_modifiers;
wenzelm@5926
   185
wenzelm@7559
   186
fun clasimp_meth tac prems ctxt = Method.METHOD (fn facts =>
wenzelm@7559
   187
  ALLGOALS (Method.insert_tac (prems @ facts)) THEN tac (get_local_clasimpset ctxt));
wenzelm@7132
   188
wenzelm@7559
   189
fun clasimp_meth' tac prems ctxt = Method.METHOD (fn facts =>
wenzelm@8168
   190
  HEADGOAL (Method.insert_tac (prems @ facts) THEN' tac (get_local_clasimpset ctxt)));
wenzelm@5926
   191
wenzelm@7559
   192
val clasimp_method = Method.bang_sectioned_args clasimp_modifiers o clasimp_meth;
wenzelm@7559
   193
val clasimp_method' = Method.bang_sectioned_args clasimp_modifiers o clasimp_meth';
wenzelm@5926
   194
wenzelm@5926
   195
wenzelm@5926
   196
val setup =
wenzelm@5926
   197
 [Method.add_methods
wenzelm@9440
   198
   [("force", clasimp_method' force_tac, "force"),
wenzelm@7394
   199
    ("auto", clasimp_method (CHANGED o auto_tac), "auto"),
wenzelm@9440
   200
    ("clarsimp", clasimp_method' clarsimp_tac, "clarify simplified goal")]];
wenzelm@5926
   201
wenzelm@5926
   202
oheimb@4652
   203
end;