src/Provers/clasimp.ML
author wenzelm
Fri, 28 Jan 2000 21:57:15 +0100
changeset 8168 9d2ac5439089
parent 8154 dab09e1ad594
child 8469 482c301041b4
permissions -rw-r--r--
HEADGOAL;
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@5219
     6
simplifier.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@5219
    15
  structure Classical: CLASSICAL
wenzelm@5219
    16
  structure Blast: BLAST
wenzelm@5219
    17
  sharing type Classical.claset = Blast.claset
wenzelm@5219
    18
end
wenzelm@5219
    19
oheimb@4652
    20
signature CLASIMP =
oheimb@4652
    21
sig
wenzelm@5219
    22
  include CLASIMP_DATA
wenzelm@5219
    23
  type claset
wenzelm@5219
    24
  type simpset
wenzelm@5219
    25
  type clasimpset
oheimb@4652
    26
  val addSIs2	: clasimpset * thm list -> clasimpset
oheimb@4652
    27
  val addSEs2	: clasimpset * thm list -> clasimpset
oheimb@4652
    28
  val addSDs2	: clasimpset * thm list -> clasimpset
oheimb@4652
    29
  val addIs2	: clasimpset * thm list -> clasimpset
oheimb@4652
    30
  val addEs2	: clasimpset * thm list -> clasimpset
oheimb@4652
    31
  val addDs2	: clasimpset * thm list -> clasimpset
oheimb@4652
    32
  val addsimps2	: clasimpset * thm list -> clasimpset
oheimb@4652
    33
  val delsimps2	: clasimpset * thm list -> clasimpset
oheimb@4652
    34
  val addSss	: claset * simpset -> claset
oheimb@4652
    35
  val addss	: claset * simpset -> claset
oheimb@5483
    36
  val CLASIMPSET  :(clasimpset -> tactic) -> tactic
oheimb@5483
    37
  val CLASIMPSET' :(clasimpset -> 'a -> tactic) -> 'a -> tactic
oheimb@5483
    38
  val clarsimp_tac: clasimpset -> int -> tactic
oheimb@5483
    39
  val Clarsimp_tac:               int -> tactic
oheimb@5483
    40
  val mk_auto_tac : clasimpset -> int -> int -> tactic
oheimb@5483
    41
  val auto_tac	  : clasimpset -> tactic
oheimb@5483
    42
  val Auto_tac	  : tactic
oheimb@5483
    43
  val auto	  : unit -> unit
oheimb@5483
    44
  val force_tac	  : clasimpset  -> int -> tactic
oheimb@5483
    45
  val Force_tac	  : int -> tactic
oheimb@5483
    46
  val force	  : int -> unit
wenzelm@5926
    47
  val setup	  : (theory -> theory) list
oheimb@4652
    48
end;
oheimb@4652
    49
wenzelm@5219
    50
functor ClasimpFun(Data: CLASIMP_DATA): CLASIMP =
oheimb@4652
    51
struct
oheimb@4652
    52
wenzelm@5219
    53
open Data;
wenzelm@5219
    54
wenzelm@5219
    55
type claset = Classical.claset;
wenzelm@5219
    56
type simpset = Simplifier.simpset;
wenzelm@5219
    57
type clasimpset = claset * simpset;
wenzelm@5219
    58
wenzelm@5219
    59
wenzelm@5219
    60
(* clasimpset operations *)
wenzelm@5219
    61
wenzelm@5219
    62
(*this interface for updating a clasimpset is rudimentary and just for
wenzelm@5219
    63
  convenience for the most common cases*)
wenzelm@5219
    64
wenzelm@5219
    65
fun pair_upd1 f ((a,b),x) = (f(a,x), b);
wenzelm@5219
    66
fun pair_upd2 f ((a,b),x) = (a, f(b,x));
wenzelm@5219
    67
wenzelm@5219
    68
fun op addSIs2   arg = pair_upd1 Classical.addSIs arg;
wenzelm@5219
    69
fun op addSEs2   arg = pair_upd1 Classical.addSEs arg;
wenzelm@5219
    70
fun op addSDs2   arg = pair_upd1 Classical.addSDs arg;
wenzelm@5219
    71
fun op addIs2    arg = pair_upd1 Classical.addIs arg;
wenzelm@5219
    72
fun op addEs2    arg = pair_upd1 Classical.addEs arg;
wenzelm@5219
    73
fun op addDs2    arg = pair_upd1 Classical.addDs arg;
wenzelm@5219
    74
fun op addsimps2 arg = pair_upd2 Simplifier.addsimps arg;
wenzelm@5219
    75
fun op delsimps2 arg = pair_upd2 Simplifier.delsimps arg;
oheimb@4652
    76
oheimb@4652
    77
(*Add a simpset to a classical set!*)
oheimb@4652
    78
(*Caution: only one simpset added can be added by each of addSss and addss*)
paulson@5567
    79
fun cs addSss ss = Classical.addSaltern (cs, ("safe_asm_full_simp_tac",
oheimb@5554
    80
			    CHANGED o Simplifier.safe_asm_full_simp_tac ss));
paulson@5567
    81
fun cs addss  ss = Classical.addbefore  (cs, ("asm_full_simp_tac", 
oheimb@5554
    82
			    CHANGED o Simplifier.asm_full_simp_tac ss));
oheimb@4652
    83
wenzelm@5219
    84
(* tacticals *)
wenzelm@4888
    85
wenzelm@5219
    86
fun CLASIMPSET tacf state =
wenzelm@5219
    87
  Classical.CLASET (fn cs => Simplifier.SIMPSET (fn ss => tacf (cs, ss))) state;
wenzelm@4888
    88
wenzelm@5219
    89
fun CLASIMPSET' tacf i state =
wenzelm@5219
    90
  Classical.CLASET (fn cs => Simplifier.SIMPSET (fn ss => tacf (cs, ss) i)) state;
oheimb@4652
    91
oheimb@4652
    92
oheimb@7957
    93
fun clarsimp_tac (cs, ss) = Simplifier.safe_asm_full_simp_tac ss THEN_ALL_NEW
oheimb@5483
    94
			    Classical.clarify_tac (cs addSss ss);
oheimb@5483
    95
fun Clarsimp_tac i = clarsimp_tac (Classical.claset(), Simplifier.simpset()) i;
oheimb@5483
    96
oheimb@5483
    97
wenzelm@5219
    98
(* auto_tac *)
oheimb@4652
    99
wenzelm@5219
   100
fun blast_depth_tac cs m i thm =
oheimb@5554
   101
    Blast.depth_tac cs m i thm 
oheimb@5554
   102
      handle Blast.TRANS s => (warning ("Blast_tac: " ^ s); Seq.empty);
oheimb@5756
   103
 
wenzelm@5219
   104
(* a variant of depth_tac that avoids interference of the simplifier 
wenzelm@5219
   105
   with dup_step_tac when they are combined by auto_tac *)
oheimb@5756
   106
local
oheimb@5756
   107
fun slow_step_tac' cs = Classical.appWrappers cs 
oheimb@5756
   108
	(Classical.instp_step_tac cs APPEND' Classical.haz_step_tac cs);
oheimb@5756
   109
in fun nodup_depth_tac cs m i state = SELECT_GOAL 
oheimb@5756
   110
   (Classical.safe_steps_tac cs 1 THEN_ELSE 
oheimb@5756
   111
	(DEPTH_SOLVE (nodup_depth_tac cs m 1),
oheimb@5756
   112
	 Classical.inst0_step_tac cs 1 APPEND COND (K (m=0)) no_tac
oheimb@5756
   113
	     (slow_step_tac' cs 1 THEN DEPTH_SOLVE (nodup_depth_tac cs (m-1) 1))
oheimb@5756
   114
        )) i state;
oheimb@5756
   115
end;
oheimb@4652
   116
oheimb@4652
   117
(*Designed to be idempotent, except if best_tac instantiates variables
oheimb@4652
   118
  in some of the subgoals*)
oheimb@4652
   119
fun mk_auto_tac (cs, ss) m n =
wenzelm@5219
   120
    let val cs' = cs addss ss
oheimb@4652
   121
        val maintac = 
oheimb@5756
   122
          blast_depth_tac cs m		     (* fast but can't use wrappers *)
oheimb@4652
   123
          ORELSE'
oheimb@5756
   124
          (CHANGED o nodup_depth_tac cs' n); (* slower but more general *)
wenzelm@5219
   125
    in  EVERY [ALLGOALS (Simplifier.asm_full_simp_tac ss),
oheimb@5525
   126
	       TRY (Classical.safe_tac cs),
oheimb@4652
   127
	       REPEAT (FIRSTGOAL maintac),
wenzelm@5219
   128
               TRY (Classical.safe_tac (cs addSss ss)),
oheimb@4652
   129
	       prune_params_tac] 
oheimb@4652
   130
    end;
oheimb@4652
   131
oheimb@4652
   132
fun auto_tac (cs,ss) = mk_auto_tac (cs,ss) 4 2;
oheimb@4652
   133
wenzelm@5219
   134
fun Auto_tac st = auto_tac (Classical.claset(), Simplifier.simpset()) st;
oheimb@4652
   135
oheimb@4652
   136
fun auto () = by Auto_tac;
oheimb@4652
   137
wenzelm@5219
   138
wenzelm@5219
   139
(* force_tac *)
wenzelm@5219
   140
oheimb@4659
   141
(* aimed to solve the given subgoal totally, using whatever tools possible *)
oheimb@4717
   142
fun force_tac (cs,ss) = let val cs' = cs addss ss in SELECT_GOAL (EVERY [
wenzelm@5219
   143
	Classical.clarify_tac cs' 1,
wenzelm@5219
   144
	IF_UNSOLVED (Simplifier.asm_full_simp_tac ss 1),
wenzelm@5219
   145
	ALLGOALS (Classical.best_tac cs')]) end;
wenzelm@5219
   146
fun Force_tac i = force_tac (Classical.claset(), Simplifier.simpset()) i;
oheimb@4717
   147
fun force i = by (Force_tac i);
oheimb@4659
   148
wenzelm@5219
   149
wenzelm@5926
   150
(* methods *)
wenzelm@5926
   151
wenzelm@7153
   152
fun get_local_clasimpset ctxt =
wenzelm@7153
   153
  (Classical.get_local_claset ctxt, Simplifier.get_local_simpset ctxt);
wenzelm@5926
   154
wenzelm@5926
   155
val clasimp_modifiers = Classical.cla_modifiers @ Simplifier.simp_modifiers;
wenzelm@5926
   156
wenzelm@7559
   157
fun clasimp_meth tac prems ctxt = Method.METHOD (fn facts =>
wenzelm@7559
   158
  ALLGOALS (Method.insert_tac (prems @ facts)) THEN tac (get_local_clasimpset ctxt));
wenzelm@7132
   159
wenzelm@7559
   160
fun clasimp_meth' tac prems ctxt = Method.METHOD (fn facts =>
wenzelm@8168
   161
  HEADGOAL (Method.insert_tac (prems @ facts) THEN' tac (get_local_clasimpset ctxt)));
wenzelm@5926
   162
wenzelm@7559
   163
val clasimp_method = Method.bang_sectioned_args clasimp_modifiers o clasimp_meth;
wenzelm@7559
   164
val clasimp_method' = Method.bang_sectioned_args clasimp_modifiers o clasimp_meth';
wenzelm@5926
   165
wenzelm@5926
   166
wenzelm@5926
   167
val setup =
wenzelm@5926
   168
 [Method.add_methods
wenzelm@7437
   169
   [("clarsimp_tac", clasimp_method' clarsimp_tac, "clarsimp (improper!)"),
wenzelm@7394
   170
    ("auto", clasimp_method (CHANGED o auto_tac), "auto"),
wenzelm@7272
   171
    ("force", clasimp_method' force_tac, "force")]];
wenzelm@7272
   172
    
wenzelm@5926
   173
wenzelm@5926
   174
oheimb@4652
   175
end;