src/Pure/tctical.ML
author paulson
Mon, 23 Sep 1996 17:46:12 +0200
changeset 2005 a52f53caf424
parent 1643 3f83b629f2e3
child 2158 77dfe65b5bb3
permissions -rw-r--r--
Optimized version of SELECT_GOAL, up to 10% faster
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1460
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
     1
(*  Title: 	tctical
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     2
    ID:         $Id$
1460
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
     3
    Author: 	Lawrence C Paulson, Cambridge University Computer Laboratory
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     4
    Copyright   1993  University of Cambridge
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     5
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     6
Tacticals
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     7
*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     8
1583
bc902840aab5 Search tacticals moved to search.ML
paulson
parents: 1502
diff changeset
     9
infix 1 THEN THEN';
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    10
infix 0 ORELSE APPEND INTLEAVE ORELSE' APPEND' INTLEAVE';
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    11
671
e0be228a9c5b Pure/tctical/THEN_ELSE: new
lcp
parents: 631
diff changeset
    12
infix 0 THEN_ELSE;
e0be228a9c5b Pure/tctical/THEN_ELSE: new
lcp
parents: 631
diff changeset
    13
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    14
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    15
signature TACTICAL =
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    16
  sig
1502
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
    17
  type tactic  (* = thm -> thm Sequence.seq*)
1460
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
    18
  val all_tac		: tactic
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
    19
  val ALLGOALS		: (int -> tactic) -> tactic   
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
    20
  val APPEND		: tactic * tactic -> tactic
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
    21
  val APPEND'		: ('a -> tactic) * ('a -> tactic) -> 'a -> tactic
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
    22
  val CHANGED		: tactic -> tactic
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
    23
  val COND		: (thm -> bool) -> tactic -> tactic -> tactic   
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
    24
  val DETERM		: tactic -> tactic
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
    25
  val EVERY		: tactic list -> tactic   
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
    26
  val EVERY'		: ('a -> tactic) list -> 'a -> tactic
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
    27
  val EVERY1		: (int -> tactic) list -> tactic
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
    28
  val FILTER		: (thm -> bool) -> tactic -> tactic
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
    29
  val FIRST		: tactic list -> tactic   
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
    30
  val FIRST'		: ('a -> tactic) list -> 'a -> tactic
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
    31
  val FIRST1		: (int -> tactic) list -> tactic
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
    32
  val FIRSTGOAL		: (int -> tactic) -> tactic
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
    33
  val goals_limit	: int ref
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
    34
  val INTLEAVE		: tactic * tactic -> tactic
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
    35
  val INTLEAVE'		: ('a -> tactic) * ('a -> tactic) -> 'a -> tactic
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
    36
  val METAHYPS		: (thm list -> tactic) -> int -> tactic
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
    37
  val no_tac		: tactic
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
    38
  val ORELSE		: tactic * tactic -> tactic
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
    39
  val ORELSE'		: ('a -> tactic) * ('a -> tactic) -> 'a -> tactic
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
    40
  val pause_tac		: tactic
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
    41
  val print_tac		: tactic
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
    42
  val REPEAT		: tactic -> tactic
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
    43
  val REPEAT1		: tactic -> tactic
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
    44
  val REPEAT_DETERM_N	: int -> tactic -> tactic
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
    45
  val REPEAT_DETERM	: tactic -> tactic
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
    46
  val REPEAT_DETERM1	: tactic -> tactic
703
3a5cd2883581 Pure/tctical/REPEAT_DETERM_N,REPEAT_DETERM1,REPEAT_DETERM_FIRST,
lcp
parents: 671
diff changeset
    47
  val REPEAT_DETERM_FIRST: (int -> tactic) -> tactic
3a5cd2883581 Pure/tctical/REPEAT_DETERM_N,REPEAT_DETERM1,REPEAT_DETERM_FIRST,
lcp
parents: 671
diff changeset
    48
  val REPEAT_DETERM_SOME: (int -> tactic) -> tactic
1460
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
    49
  val REPEAT_FIRST	: (int -> tactic) -> tactic
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
    50
  val REPEAT_SOME	: (int -> tactic) -> tactic
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
    51
  val SELECT_GOAL	: tactic -> int -> tactic
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
    52
  val SOMEGOAL		: (int -> tactic) -> tactic   
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
    53
  val STATE		: (thm -> tactic) -> tactic
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
    54
  val strip_context	: term -> (string * typ) list * term list * term
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
    55
  val SUBGOAL		: ((term*int) -> tactic) -> int -> tactic
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
    56
  val suppress_tracing	: bool ref
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
    57
  val THEN		: tactic * tactic -> tactic
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
    58
  val THEN'		: ('a -> tactic) * ('a -> tactic) -> 'a -> tactic
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
    59
  val THEN_ELSE		: tactic * (tactic*tactic) -> tactic
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
    60
  val traced_tac	: (thm -> (thm * thm Sequence.seq) option) -> tactic
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
    61
  val tracify		: bool ref -> tactic -> thm -> thm Sequence.seq
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
    62
  val trace_REPEAT	: bool ref
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
    63
  val TRY		: tactic -> tactic
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
    64
  val TRYALL		: (int -> tactic) -> tactic   
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    65
  end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    66
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    67
1502
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
    68
structure Tactical : TACTICAL = 
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    69
struct
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    70
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    71
(**** Tactics ****)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    72
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    73
(*A tactic maps a proof tree to a sequence of proof trees:
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    74
    if length of sequence = 0 then the tactic does not apply;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    75
    if length > 1 then backtracking on the alternatives can occur.*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    76
1502
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
    77
type tactic = thm -> thm Sequence.seq;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    78
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    79
(*Makes a tactic from one that uses the components of the state.*)
1502
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
    80
fun STATE tacfun st = tacfun st st;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    81
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    82
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    83
(*** LCF-style tacticals ***)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    84
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    85
(*the tactical THEN performs one tactic followed by another*)
1502
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
    86
fun (tac1 THEN tac2) st = Sequence.flats (Sequence.maps tac2 (tac1 st));
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    87
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    88
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    89
(*The tactical ORELSE uses the first tactic that returns a nonempty sequence.
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    90
  Like in LCF, ORELSE commits to either tac1 or tac2 immediately.
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    91
  Does not backtrack to tac2 if tac1 was initially chosen. *)
1502
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
    92
fun (tac1 ORELSE tac2) st =
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
    93
    case Sequence.pull(tac1 st) of
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
    94
	None       => tac2 st
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
    95
      | sequencecell => Sequence.seqof(fn()=> sequencecell);
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    96
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    97
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    98
(*The tactical APPEND combines the results of two tactics.
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    99
  Like ORELSE, but allows backtracking on both tac1 and tac2.
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   100
  The tactic tac2 is not applied until needed.*)
1502
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   101
fun (tac1 APPEND tac2) st = 
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   102
  Sequence.append(tac1 st,
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   103
		  Sequence.seqof(fn()=> Sequence.pull (tac2 st)));
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   104
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   105
(*Like APPEND, but interleaves results of tac1 and tac2.*)
1502
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   106
fun (tac1 INTLEAVE tac2) st = 
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   107
    Sequence.interleave(tac1 st,
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   108
			Sequence.seqof(fn()=> Sequence.pull (tac2 st)));
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   109
671
e0be228a9c5b Pure/tctical/THEN_ELSE: new
lcp
parents: 631
diff changeset
   110
(*Conditional tactic.
1460
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
   111
	tac1 ORELSE tac2 = tac1 THEN_ELSE (all_tac, tac2)
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
   112
	tac1 THEN tac2   = tac1 THEN_ELSE (tac2, no_tac)
671
e0be228a9c5b Pure/tctical/THEN_ELSE: new
lcp
parents: 631
diff changeset
   113
*)
1502
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   114
fun (tac THEN_ELSE (tac1, tac2)) st = 
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   115
    case Sequence.pull(tac st) of
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   116
	None    => tac2 st		(*failed; try tactic 2*)
1460
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
   117
      | seqcell => Sequence.flats 	(*succeeded; use tactic 1*)
1502
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   118
	            (Sequence.maps tac1 (Sequence.seqof(fn()=> seqcell)));
671
e0be228a9c5b Pure/tctical/THEN_ELSE: new
lcp
parents: 631
diff changeset
   119
e0be228a9c5b Pure/tctical/THEN_ELSE: new
lcp
parents: 631
diff changeset
   120
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   121
(*Versions for combining tactic-valued functions, as in
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   122
     SOMEGOAL (resolve_tac rls THEN' assume_tac) *)
1502
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   123
fun (tac1 THEN' tac2) x = tac1 x THEN tac2 x;
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   124
fun (tac1 ORELSE' tac2) x = tac1 x ORELSE tac2 x;
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   125
fun (tac1 APPEND' tac2) x = tac1 x APPEND tac2 x;
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   126
fun (tac1 INTLEAVE' tac2) x = tac1 x INTLEAVE tac2 x;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   127
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   128
(*passes all proofs through unchanged;  identity of THEN*)
1502
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   129
fun all_tac st = Sequence.single st;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   130
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   131
(*passes no proofs through;  identity of ORELSE and APPEND*)
1502
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   132
fun no_tac st  = Sequence.null;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   133
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   134
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   135
(*Make a tactic deterministic by chopping the tail of the proof sequence*)
1502
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   136
fun DETERM tac st =  
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   137
      case Sequence.pull (tac st) of
1460
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
   138
	      None => Sequence.null
1502
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   139
            | Some(x,_) => Sequence.cons(x, Sequence.null);
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   140
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   141
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   142
(*Conditional tactical: testfun controls which tactic to use next.
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   143
  Beware: due to eager evaluation, both thentac and elsetac are evaluated.*)
1502
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   144
fun COND testfun thenf elsef = (fn prf =>
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   145
    if testfun prf then  thenf prf   else  elsef prf);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   146
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   147
(*Do the tactic or else do nothing*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   148
fun TRY tac = tac ORELSE all_tac;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   149
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   150
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   151
(*** List-oriented tactics ***)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   152
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   153
(* EVERY [tac1,...,tacn]   equals    tac1 THEN ... THEN tacn   *)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   154
fun EVERY tacs = foldr (op THEN) (tacs, all_tac);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   155
1502
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   156
(* EVERY' [tac1,...,tacn] i  equals    tac1 i THEN ... THEN tacn i   *)
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   157
fun EVERY' tacs = foldr (op THEN') (tacs, K all_tac);
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   158
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   159
(*Apply every tactic to 1*)
1502
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   160
fun EVERY1 tacs = EVERY' tacs 1;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   161
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   162
(* FIRST [tac1,...,tacn]   equals    tac1 ORELSE ... ORELSE tacn   *)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   163
fun FIRST tacs = foldr (op ORELSE) (tacs, no_tac);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   164
1502
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   165
(* FIRST' [tac1,...,tacn] i  equals    tac1 i ORELSE ... ORELSE tacn i   *)
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   166
fun FIRST' tacs = foldr (op ORELSE') (tacs, K no_tac);
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   167
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   168
(*Apply first tactic to 1*)
1502
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   169
fun FIRST1 tacs = FIRST' tacs 1;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   170
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   171
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   172
(*** Tracing tactics ***)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   173
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   174
(*Max number of goals to print -- set by user*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   175
val goals_limit = ref 10;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   176
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   177
(*Print the current proof state and pass it on.*)
1502
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   178
val print_tac = 
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   179
    (fn st => 
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   180
     (!print_goals_ref (!goals_limit) st;   Sequence.single st));
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   181
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   182
(*Pause until a line is typed -- if non-empty then fail. *)
1502
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   183
fun pause_tac st =  
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   184
  (prs"** Press RETURN to continue: ";
1502
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   185
   if input(std_in,1) = "\n" then Sequence.single st
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   186
   else (prs"Goodbye\n";  Sequence.null));
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   187
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   188
exception TRACE_EXIT of thm
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   189
and TRACE_QUIT;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   190
631
8bc44f7bbab8 Pure/tctical/suppress_tracing: new; can now switch tracing off until the
lcp
parents: 230
diff changeset
   191
(*Tracing flags*)
8bc44f7bbab8 Pure/tctical/suppress_tracing: new; can now switch tracing off until the
lcp
parents: 230
diff changeset
   192
val trace_REPEAT= ref false
8bc44f7bbab8 Pure/tctical/suppress_tracing: new; can now switch tracing off until the
lcp
parents: 230
diff changeset
   193
and suppress_tracing = ref false;
8bc44f7bbab8 Pure/tctical/suppress_tracing: new; can now switch tracing off until the
lcp
parents: 230
diff changeset
   194
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   195
(*Handle all tracing commands for current state and tactic *)
1502
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   196
fun exec_trace_command flag (tac, st) = 
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   197
   case input_line(std_in) of
1502
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   198
       "\n" => tac st
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   199
     | "f\n" => Sequence.null
1502
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   200
     | "o\n" => (flag:=false;  tac st)
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   201
     | "s\n" => (suppress_tracing:=true;  tac st)
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   202
     | "x\n" => (prs"Exiting now\n";  raise (TRACE_EXIT st))
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   203
     | "quit\n" => raise TRACE_QUIT
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   204
     | _     => (prs
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   205
"Type RETURN to continue or...\n\
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   206
\     f    - to fail here\n\
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   207
\     o    - to switch tracing off\n\
631
8bc44f7bbab8 Pure/tctical/suppress_tracing: new; can now switch tracing off until the
lcp
parents: 230
diff changeset
   208
\     s    - to suppress tracing until next entry to a tactical\n\
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   209
\     x    - to exit at this point\n\
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   210
\     quit - to abort this tracing run\n\
1502
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   211
\** Well? "     ;  exec_trace_command flag (tac, st));
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   212
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   213
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   214
(*Extract from a tactic, a thm->thm seq function that handles tracing*)
1502
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   215
fun tracify flag tac st =
631
8bc44f7bbab8 Pure/tctical/suppress_tracing: new; can now switch tracing off until the
lcp
parents: 230
diff changeset
   216
  if !flag andalso not (!suppress_tracing)
1502
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   217
           then (!print_goals_ref (!goals_limit) st;  
1460
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
   218
		 prs"** Press RETURN to continue: ";
1502
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   219
		 exec_trace_command flag (tac,st))
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   220
  else tac st;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   221
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   222
(*Create a tactic whose outcome is given by seqf, handling TRACE_EXIT*)
1502
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   223
fun traced_tac seqf st = 
631
8bc44f7bbab8 Pure/tctical/suppress_tracing: new; can now switch tracing off until the
lcp
parents: 230
diff changeset
   224
    (suppress_tracing := false;
8bc44f7bbab8 Pure/tctical/suppress_tracing: new; can now switch tracing off until the
lcp
parents: 230
diff changeset
   225
     Sequence.seqof (fn()=> seqf st
1502
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   226
		         handle TRACE_EXIT st' => Some(st', Sequence.null)));
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   227
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   228
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   229
(*Deterministic REPEAT: only retains the first outcome; 
703
3a5cd2883581 Pure/tctical/REPEAT_DETERM_N,REPEAT_DETERM1,REPEAT_DETERM_FIRST,
lcp
parents: 671
diff changeset
   230
  uses less space than REPEAT; tail recursive.
3a5cd2883581 Pure/tctical/REPEAT_DETERM_N,REPEAT_DETERM1,REPEAT_DETERM_FIRST,
lcp
parents: 671
diff changeset
   231
  If non-negative, n bounds the number of repetitions.*)
3a5cd2883581 Pure/tctical/REPEAT_DETERM_N,REPEAT_DETERM1,REPEAT_DETERM_FIRST,
lcp
parents: 671
diff changeset
   232
fun REPEAT_DETERM_N n tac = 
1502
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   233
  let val tac = tracify trace_REPEAT tac
703
3a5cd2883581 Pure/tctical/REPEAT_DETERM_N,REPEAT_DETERM1,REPEAT_DETERM_FIRST,
lcp
parents: 671
diff changeset
   234
      fun drep 0 st = Some(st, Sequence.null)
1460
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
   235
	| drep n st =
1502
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   236
	   (case Sequence.pull(tac st) of
1460
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
   237
		None       => Some(st, Sequence.null)
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
   238
	      | Some(st',_) => drep (n-1) st')
703
3a5cd2883581 Pure/tctical/REPEAT_DETERM_N,REPEAT_DETERM1,REPEAT_DETERM_FIRST,
lcp
parents: 671
diff changeset
   239
  in  traced_tac (drep n)  end;
3a5cd2883581 Pure/tctical/REPEAT_DETERM_N,REPEAT_DETERM1,REPEAT_DETERM_FIRST,
lcp
parents: 671
diff changeset
   240
3a5cd2883581 Pure/tctical/REPEAT_DETERM_N,REPEAT_DETERM1,REPEAT_DETERM_FIRST,
lcp
parents: 671
diff changeset
   241
(*Allows any number of repetitions*)
3a5cd2883581 Pure/tctical/REPEAT_DETERM_N,REPEAT_DETERM1,REPEAT_DETERM_FIRST,
lcp
parents: 671
diff changeset
   242
val REPEAT_DETERM = REPEAT_DETERM_N ~1;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   243
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   244
(*General REPEAT: maintains a stack of alternatives; tail recursive*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   245
fun REPEAT tac = 
1502
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   246
  let val tac = tracify trace_REPEAT tac
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   247
      fun rep qs st = 
1502
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   248
	case Sequence.pull(tac st) of
1460
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
   249
  	    None       => Some(st, Sequence.seqof(fn()=> repq qs))
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   250
          | Some(st',q) => rep (q::qs) st'
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   251
      and repq [] = None
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   252
        | repq(q::qs) = case Sequence.pull q of
1460
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
   253
  	    None       => repq qs
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   254
          | Some(st,q) => rep (q::qs) st
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   255
  in  traced_tac (rep [])  end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   256
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   257
(*Repeat 1 or more times*)
703
3a5cd2883581 Pure/tctical/REPEAT_DETERM_N,REPEAT_DETERM1,REPEAT_DETERM_FIRST,
lcp
parents: 671
diff changeset
   258
fun REPEAT_DETERM1 tac = DETERM tac THEN REPEAT_DETERM tac;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   259
fun REPEAT1 tac = tac THEN REPEAT tac;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   260
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   261
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   262
(** Filtering tacticals **)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   263
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   264
(*Returns all states satisfying the predicate*)
1502
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   265
fun FILTER pred tac st = Sequence.filters pred (tac st);
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   266
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   267
(*Returns all changed states*)
1643
3f83b629f2e3 Fixed error in CHANGED (caused by variable renaming)
paulson
parents: 1583
diff changeset
   268
fun CHANGED tac st = 
3f83b629f2e3 Fixed error in CHANGED (caused by variable renaming)
paulson
parents: 1583
diff changeset
   269
    let fun diff st' = not (eq_thm(st,st'))
3f83b629f2e3 Fixed error in CHANGED (caused by variable renaming)
paulson
parents: 1583
diff changeset
   270
    in  Sequence.filters diff (tac st)  end;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   271
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   272
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   273
(*** Tacticals based on subgoal numbering ***)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   274
1502
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   275
(*For n subgoals, performs tac(n) THEN ... THEN tac(1) 
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   276
  Essential to work backwards since tac(i) may add/delete subgoals at i. *)
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   277
fun ALLGOALS tac st = 
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   278
  let fun doall 0 = all_tac
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   279
	| doall n = tac(n) THEN doall(n-1)
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   280
  in  doall(nprems_of st)st  end;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   281
1502
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   282
(*For n subgoals, performs tac(n) ORELSE ... ORELSE tac(1)  *)
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   283
fun SOMEGOAL tac st = 
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   284
  let fun find 0 = no_tac
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   285
	| find n = tac(n) ORELSE find(n-1)
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   286
  in  find(nprems_of st)st  end;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   287
1502
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   288
(*For n subgoals, performs tac(1) ORELSE ... ORELSE tac(n).
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   289
  More appropriate than SOMEGOAL in some cases.*)
1502
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   290
fun FIRSTGOAL tac st = 
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   291
  let fun find (i,n) = if i>n then no_tac else  tac(i) ORELSE find (i+1,n)
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   292
  in  find(1, nprems_of st)st  end;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   293
1502
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   294
(*Repeatedly solve some using tac. *)
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   295
fun REPEAT_SOME tac = REPEAT1 (SOMEGOAL (REPEAT1 o tac));
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   296
fun REPEAT_DETERM_SOME tac = REPEAT_DETERM1 (SOMEGOAL (REPEAT_DETERM1 o tac));
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   297
1502
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   298
(*Repeatedly solve the first possible subgoal using tac. *)
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   299
fun REPEAT_FIRST tac = REPEAT1 (FIRSTGOAL (REPEAT1 o tac));
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   300
fun REPEAT_DETERM_FIRST tac = REPEAT_DETERM1 (FIRSTGOAL (REPEAT_DETERM1 o tac));
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   301
1502
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   302
(*For n subgoals, tries to apply tac to n,...1  *)
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   303
fun TRYALL tac = ALLGOALS (TRY o tac);
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   304
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   305
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   306
(*Make a tactic for subgoal i, if there is one.  *)
1502
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   307
fun SUBGOAL goalfun i st = 
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   308
  case drop(i-1, prems_of st) of
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   309
      [] => Sequence.null
1502
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   310
    | prem::_ => goalfun (prem,i) st;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   311
2005
a52f53caf424 Optimized version of SELECT_GOAL, up to 10% faster
paulson
parents: 1643
diff changeset
   312
a52f53caf424 Optimized version of SELECT_GOAL, up to 10% faster
paulson
parents: 1643
diff changeset
   313
(*** SELECT_GOAL ***)
a52f53caf424 Optimized version of SELECT_GOAL, up to 10% faster
paulson
parents: 1643
diff changeset
   314
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   315
(*Tactical for restricting the effect of a tactic to subgoal i.
1502
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   316
  Works by making a new state from subgoal i, applying tac to it, and
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   317
  composing the resulting metathm with the original state.
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   318
  The "main goal" of the new state will not be atomic, some tactics may fail!
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   319
  DOES NOT work if tactic affects the main goal other than by instantiation.*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   320
2005
a52f53caf424 Optimized version of SELECT_GOAL, up to 10% faster
paulson
parents: 1643
diff changeset
   321
(*SELECT_GOAL optimization: replace the conclusion by a variable X,
a52f53caf424 Optimized version of SELECT_GOAL, up to 10% faster
paulson
parents: 1643
diff changeset
   322
  to avoid copying.  Proof states have X==concl as an assuption.*)
a52f53caf424 Optimized version of SELECT_GOAL, up to 10% faster
paulson
parents: 1643
diff changeset
   323
a52f53caf424 Optimized version of SELECT_GOAL, up to 10% faster
paulson
parents: 1643
diff changeset
   324
val prop_equals = cterm_of Sign.proto_pure 
a52f53caf424 Optimized version of SELECT_GOAL, up to 10% faster
paulson
parents: 1643
diff changeset
   325
                    (Const("==", propT-->propT-->propT));
a52f53caf424 Optimized version of SELECT_GOAL, up to 10% faster
paulson
parents: 1643
diff changeset
   326
a52f53caf424 Optimized version of SELECT_GOAL, up to 10% faster
paulson
parents: 1643
diff changeset
   327
fun mk_prop_equals(t,u) = capply (capply prop_equals t) u;
a52f53caf424 Optimized version of SELECT_GOAL, up to 10% faster
paulson
parents: 1643
diff changeset
   328
a52f53caf424 Optimized version of SELECT_GOAL, up to 10% faster
paulson
parents: 1643
diff changeset
   329
(*Like trivial but returns [ct==X] ct==>X instead of ct==>ct, if possible.
a52f53caf424 Optimized version of SELECT_GOAL, up to 10% faster
paulson
parents: 1643
diff changeset
   330
  It is paired with a function to undo the transformation.  If ct contains
a52f53caf424 Optimized version of SELECT_GOAL, up to 10% faster
paulson
parents: 1643
diff changeset
   331
  Vars then it returns ct==>ct.*)
a52f53caf424 Optimized version of SELECT_GOAL, up to 10% faster
paulson
parents: 1643
diff changeset
   332
fun eq_trivial ct =
a52f53caf424 Optimized version of SELECT_GOAL, up to 10% faster
paulson
parents: 1643
diff changeset
   333
  let val xfree = cterm_of Sign.proto_pure (Free (gensym"X", propT))
a52f53caf424 Optimized version of SELECT_GOAL, up to 10% faster
paulson
parents: 1643
diff changeset
   334
      val ct_eq_x = mk_prop_equals (adjust_maxidx ct, xfree)
a52f53caf424 Optimized version of SELECT_GOAL, up to 10% faster
paulson
parents: 1643
diff changeset
   335
      and refl_ct = reflexive ct
a52f53caf424 Optimized version of SELECT_GOAL, up to 10% faster
paulson
parents: 1643
diff changeset
   336
      fun restore th = 
a52f53caf424 Optimized version of SELECT_GOAL, up to 10% faster
paulson
parents: 1643
diff changeset
   337
	  implies_elim 
a52f53caf424 Optimized version of SELECT_GOAL, up to 10% faster
paulson
parents: 1643
diff changeset
   338
	    (forall_elim ct (forall_intr xfree (implies_intr ct_eq_x th)))
a52f53caf424 Optimized version of SELECT_GOAL, up to 10% faster
paulson
parents: 1643
diff changeset
   339
	    refl_ct
a52f53caf424 Optimized version of SELECT_GOAL, up to 10% faster
paulson
parents: 1643
diff changeset
   340
  in  (equal_elim
a52f53caf424 Optimized version of SELECT_GOAL, up to 10% faster
paulson
parents: 1643
diff changeset
   341
         (combination (combination refl_implies refl_ct) (assume ct_eq_x))
a52f53caf424 Optimized version of SELECT_GOAL, up to 10% faster
paulson
parents: 1643
diff changeset
   342
         (trivial ct),
a52f53caf424 Optimized version of SELECT_GOAL, up to 10% faster
paulson
parents: 1643
diff changeset
   343
       restore)
a52f53caf424 Optimized version of SELECT_GOAL, up to 10% faster
paulson
parents: 1643
diff changeset
   344
  end  (*Fails if there are Vars or TVars*)
a52f53caf424 Optimized version of SELECT_GOAL, up to 10% faster
paulson
parents: 1643
diff changeset
   345
    handle THM _ => (trivial ct, I);
a52f53caf424 Optimized version of SELECT_GOAL, up to 10% faster
paulson
parents: 1643
diff changeset
   346
a52f53caf424 Optimized version of SELECT_GOAL, up to 10% faster
paulson
parents: 1643
diff changeset
   347
(*Does the work of SELECT_GOAL. *)
a52f53caf424 Optimized version of SELECT_GOAL, up to 10% faster
paulson
parents: 1643
diff changeset
   348
fun select tac st0 i =
a52f53caf424 Optimized version of SELECT_GOAL, up to 10% faster
paulson
parents: 1643
diff changeset
   349
  let val cprem::_ = drop(i-1, cprems_of st0)
a52f53caf424 Optimized version of SELECT_GOAL, up to 10% faster
paulson
parents: 1643
diff changeset
   350
      val (eq_cprem, restore) = eq_trivial cprem
a52f53caf424 Optimized version of SELECT_GOAL, up to 10% faster
paulson
parents: 1643
diff changeset
   351
      fun next st = bicompose false (false, restore st, nprems_of st) i st0
a52f53caf424 Optimized version of SELECT_GOAL, up to 10% faster
paulson
parents: 1643
diff changeset
   352
  in  Sequence.flats (Sequence.maps next (tac eq_cprem))
a52f53caf424 Optimized version of SELECT_GOAL, up to 10% faster
paulson
parents: 1643
diff changeset
   353
  end;
a52f53caf424 Optimized version of SELECT_GOAL, up to 10% faster
paulson
parents: 1643
diff changeset
   354
31
eb01df4ffe66 tctical/dummy_quant_rl: specifies type prop to avoid the type variable
lcp
parents: 0
diff changeset
   355
(* (!!x. PROP ?V) ==> PROP ?V ;  contains NO TYPE VARIABLES.*)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   356
val dummy_quant_rl = 
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   357
  standard (forall_elim_var 0 (assume 
922
196ca0973a6d added CPure (curried functions) and ProtoPure (ancestor of Pure and CPure)
clasohm
parents: 729
diff changeset
   358
                  (read_cterm Sign.proto_pure ("!!x::prop. PROP V",propT))));
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   359
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   360
(* Prevent the subgoal's assumptions from becoming additional subgoals in the
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   361
   new proof state by enclosing them by a universal quantification *)
1502
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   362
fun protect_subgoal st i =
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   363
	Sequence.hd (bicompose false (false,dummy_quant_rl,1) i st)
1460
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
   364
	handle _ => error"SELECT_GOAL -- impossible error???";
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   365
1502
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   366
fun SELECT_GOAL tac i st = 
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   367
  case (i, drop(i-1, prems_of st)) of
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   368
      (_,[]) => Sequence.null
1502
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   369
    | (1,[_]) => tac st		(*If i=1 and only one subgoal do nothing!*)
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   370
    | (_, (Const("==>",_)$_$_) :: _) => select tac (protect_subgoal st i) i
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   371
    | (_, _::_) => select tac st i;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   372
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   373
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   374
(*Strips assumptions in goal yielding  ( [x1,...,xm], [H1,...,Hn], B )
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   375
    H1,...,Hn are the hypotheses;  x1...xm are variants of the parameters. 
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   376
  Main difference from strip_assums concerns parameters: 
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   377
    it replaces the bound variables by free variables.  *)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   378
fun strip_context_aux (params, Hs, Const("==>", _) $ H $ B) = 
1460
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
   379
	strip_context_aux (params, H::Hs, B)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   380
  | strip_context_aux (params, Hs, Const("all",_)$Abs(a,T,t)) =
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   381
        let val (b,u) = variant_abs(a,T,t)
1460
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
   382
	in  strip_context_aux ((b,T)::params, Hs, u)  end
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   383
  | strip_context_aux (params, Hs, B) = (rev params, rev Hs, B);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   384
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   385
fun strip_context A = strip_context_aux ([],[],A);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   386
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   387
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   388
(**** METAHYPS -- tactical for using hypotheses as meta-level assumptions
1502
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   389
       METAHYPS (fn prems => tac prems) i
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   390
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   391
converts subgoal i, of the form !!x1...xm. [| A1;...;An] ==> A into a new
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   392
proof state A==>A, supplying A1,...,An as meta-level assumptions (in
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   393
"prems").  The parameters x1,...,xm become free variables.  If the
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   394
resulting proof state is [| B1;...;Bk] ==> C (possibly assuming A1,...,An)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   395
then it is lifted back into the original context, yielding k subgoals.
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   396
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   397
Replaces unknowns in the context by Frees having the prefix METAHYP_
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   398
New unknowns in [| B1;...;Bk] ==> C are lifted over x1,...,xm.
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   399
DOES NOT HANDLE TYPE UNKNOWNS.
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   400
****)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   401
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   402
local 
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   403
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   404
  (*Left-to-right replacements: ctpairs = [...,(vi,ti),...].
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   405
    Instantiates distinct free variables by terms of same type.*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   406
  fun free_instantiate ctpairs = 
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   407
      forall_elim_list (map snd ctpairs) o forall_intr_list (map fst ctpairs);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   408
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   409
  fun free_of s ((a,i), T) =
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   410
        Free(s ^ (case i of 0 => a | _ => a ^ "_" ^ string_of_int i),
1460
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
   411
	     T)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   412
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   413
  fun mk_inst (var as Var(v,T))  = (var,  free_of "METAHYP1_" (v,T))
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   414
in
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   415
1502
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   416
fun metahyps_aux_tac tacf (prem,i) state = 
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   417
  let val {sign,maxidx,...} = rep_thm state
230
ec8a2b6aa8a7 Many other files modified as follows:
lcp
parents: 67
diff changeset
   418
      val cterm = cterm_of sign
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   419
      (*find all vars in the hyps -- should find tvars also!*)
1502
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   420
      val hyps_vars = foldr add_term_vars (Logic.strip_assums_hyp prem, [])
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   421
      val insts = map mk_inst hyps_vars
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   422
      (*replace the hyps_vars by Frees*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   423
      val prem' = subst_atomic insts prem
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   424
      val (params,hyps,concl) = strip_context prem'
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   425
      val fparams = map Free params
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   426
      val cparams = map cterm fparams
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   427
      and chyps = map cterm hyps
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   428
      val hypths = map assume chyps
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   429
      fun swap_ctpair (t,u) = (cterm u, cterm t)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   430
      (*Subgoal variables: make Free; lift type over params*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   431
      fun mk_subgoal_inst concl_vars (var as Var(v,T)) = 
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   432
          if var mem concl_vars 
1460
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
   433
	  then (var, true, free_of "METAHYP2_" (v,T))
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
   434
	  else (var, false,
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
   435
		free_of "METAHYP2_" (v, map #2 params --->T))
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   436
      (*Instantiate subgoal vars by Free applied to params*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   437
      fun mk_ctpair (t,in_concl,u) = 
1460
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
   438
	  if in_concl then (cterm t,  cterm u)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   439
          else (cterm t,  cterm (list_comb (u,fparams)))
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   440
      (*Restore Vars with higher type and index*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   441
      fun mk_subgoal_swap_ctpair 
1460
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
   442
		(t as Var((a,i),_), in_concl, u as Free(_,U)) = 
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
   443
	  if in_concl then (cterm u, cterm t)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   444
          else (cterm u, cterm(Var((a, i+maxidx), U)))
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   445
      (*Embed B in the original context of params and hyps*)
1502
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   446
      fun embed B = list_all_free (params, Logic.list_implies (hyps, B))
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   447
      (*Strip the context using elimination rules*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   448
      fun elim Bhyp = implies_elim_list (forall_elim_list cparams Bhyp) hypths
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   449
      (*Embed an ff pair in the original params*)
1502
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   450
      fun embed_ff(t,u) = Logic.mk_flexpair (list_abs_free (params, t), 
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   451
					     list_abs_free (params, u))
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   452
      (*Remove parameter abstractions from the ff pairs*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   453
      fun elim_ff ff = flexpair_abs_elim_list cparams ff
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   454
      (*A form of lifting that discharges assumptions.*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   455
      fun relift st = 
1460
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
   456
	let val prop = #prop(rep_thm st)
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
   457
	    val subgoal_vars = (*Vars introduced in the subgoals*)
1502
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   458
		  foldr add_term_vars (Logic.strip_imp_prems prop, [])
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   459
	    and concl_vars = add_term_vars (Logic.strip_imp_concl prop, [])
1460
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
   460
	    val subgoal_insts = map (mk_subgoal_inst concl_vars) subgoal_vars
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
   461
	    val st' = instantiate ([], map mk_ctpair subgoal_insts) st
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
   462
	    val emBs = map (cterm o embed) (prems_of st')
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   463
            and ffs = map (cterm o embed_ff) (tpairs_of st')
1460
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
   464
	    val Cth  = implies_elim_list st' 
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
   465
			    (map (elim_ff o assume) ffs @
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
   466
			     map (elim o assume) emBs)
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
   467
	in  (*restore the unknowns to the hypotheses*)
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
   468
	    free_instantiate (map swap_ctpair insts @
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
   469
			      map mk_subgoal_swap_ctpair subgoal_insts)
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
   470
		(*discharge assumptions from state in same order*)
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
   471
		(implies_intr_list (ffs@emBs)
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
   472
		  (forall_intr_list cparams (implies_intr_list chyps Cth)))
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
   473
	end
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   474
      val subprems = map (forall_elim_vars 0) hypths
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   475
      and st0 = trivial (cterm concl)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   476
      (*function to replace the current subgoal*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   477
      fun next st = bicompose false (false, relift st, nprems_of st)
1460
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
   478
	            i state
1502
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   479
  in  Sequence.flats (Sequence.maps next (tacf subprems st0))
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   480
  end;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   481
end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   482
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   483
fun METAHYPS tacf = SUBGOAL (metahyps_aux_tac tacf);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   484
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   485
end;
1502
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   486
b612093c8bff Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   487
open Tactical;