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