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