| author | wenzelm | 
| Fri, 16 Jan 2009 21:24:33 +0100 | |
| changeset 29520 | 7402322256b0 | 
| parent 29272 | fb3ccf499df5 | 
| child 30145 | 09817540ccae | 
| permissions | -rw-r--r-- | 
| 16179 | 1 | (* Title: Pure/tctical.ML | 
| 2244 
dacee519738a
Converted I/O operatios for Basis Library compatibility
 paulson parents: 
2158diff
changeset | 2 | Author: Lawrence C Paulson, Cambridge University Computer Laboratory | 
| 0 | 3 | |
| 16179 | 4 | Tacticals. | 
| 0 | 5 | *) | 
| 6 | ||
| 4602 | 7 | infix 1 THEN THEN' THEN_ALL_NEW; | 
| 0 | 8 | infix 0 ORELSE APPEND INTLEAVE ORELSE' APPEND' INTLEAVE'; | 
| 671 | 9 | infix 0 THEN_ELSE; | 
| 10 | ||
| 0 | 11 | signature TACTICAL = | 
| 11916 | 12 | sig | 
| 23538 | 13 | type tactic = thm -> thm Seq.seq | 
| 14 | val THEN: tactic * tactic -> tactic | |
| 15 | val ORELSE: tactic * tactic -> tactic | |
| 16 | val APPEND: tactic * tactic -> tactic | |
| 17 | val INTLEAVE: tactic * tactic -> tactic | |
| 18 | val THEN_ELSE: tactic * (tactic*tactic) -> tactic | |
| 19 |   val THEN': ('a -> tactic) * ('a -> tactic) -> 'a -> tactic
 | |
| 20 |   val ORELSE': ('a -> tactic) * ('a -> tactic) -> 'a -> tactic
 | |
| 21 |   val APPEND': ('a -> tactic) * ('a -> tactic) -> 'a -> tactic
 | |
| 22 |   val INTLEAVE': ('a -> tactic) * ('a -> tactic) -> 'a -> tactic
 | |
| 23 | val all_tac: tactic | |
| 24 | val no_tac: tactic | |
| 25 | val DETERM: tactic -> tactic | |
| 26 | val COND: (thm -> bool) -> tactic -> tactic -> tactic | |
| 27 | val TRY: tactic -> tactic | |
| 28 | val EVERY: tactic list -> tactic | |
| 29 |   val EVERY': ('a -> tactic) list -> 'a -> tactic
 | |
| 30 | val EVERY1: (int -> tactic) list -> tactic | |
| 31 | val FIRST: tactic list -> tactic | |
| 32 |   val FIRST': ('a -> tactic) list -> 'a -> tactic
 | |
| 33 | val FIRST1: (int -> tactic) list -> tactic | |
| 34 | val RANGE: (int -> tactic) list -> int -> tactic | |
| 35 | val print_tac: string -> tactic | |
| 36 | val pause_tac: tactic | |
| 37 | val trace_REPEAT: bool ref | |
| 38 | val suppress_tracing: bool ref | |
| 39 | val tracify: bool ref -> tactic -> tactic | |
| 40 | val traced_tac: (thm -> (thm * thm Seq.seq) option) -> tactic | |
| 41 | val DETERM_UNTIL: (thm -> bool) -> tactic -> tactic | |
| 42 | val REPEAT_DETERM_N: int -> tactic -> tactic | |
| 43 | val REPEAT_DETERM: tactic -> tactic | |
| 44 | val REPEAT: tactic -> tactic | |
| 45 | val REPEAT_DETERM1: tactic -> tactic | |
| 46 | val REPEAT1: tactic -> tactic | |
| 47 | val FILTER: (thm -> bool) -> tactic -> tactic | |
| 48 | val CHANGED: tactic -> tactic | |
| 49 | val CHANGED_PROP: tactic -> tactic | |
| 50 | val ALLGOALS: (int -> tactic) -> tactic | |
| 51 | val SOMEGOAL: (int -> tactic) -> tactic | |
| 52 | val FIRSTGOAL: (int -> tactic) -> tactic | |
| 53 | val REPEAT_SOME: (int -> tactic) -> tactic | |
| 54 | val REPEAT_DETERM_SOME: (int -> tactic) -> tactic | |
| 55 | val REPEAT_FIRST: (int -> tactic) -> tactic | |
| 703 
3a5cd2883581
Pure/tctical/REPEAT_DETERM_N,REPEAT_DETERM1,REPEAT_DETERM_FIRST,
 lcp parents: 
671diff
changeset | 56 | val REPEAT_DETERM_FIRST: (int -> tactic) -> tactic | 
| 23538 | 57 | val TRYALL: (int -> tactic) -> tactic | 
| 58 | val CSUBGOAL: ((cterm * int) -> tactic) -> int -> tactic | |
| 59 | val SUBGOAL: ((term * int) -> tactic) -> int -> tactic | |
| 60 | val CHANGED_GOAL: (int -> tactic) -> int -> tactic | |
| 61 | val THEN_ALL_NEW: (int -> tactic) * (int -> tactic) -> int -> tactic | |
| 62 | val REPEAT_ALL_NEW: (int -> tactic) -> int -> tactic | |
| 63 | val strip_context: term -> (string * typ) list * term list * term | |
| 64 | val metahyps_thms: int -> thm -> thm list option | |
| 65 | val METAHYPS: (thm list -> tactic) -> int -> tactic | |
| 66 | val PRIMSEQ: (thm -> thm Seq.seq) -> tactic | |
| 67 | val PRIMITIVE: (thm -> thm) -> tactic | |
| 68 | val SINGLE: tactic -> thm -> thm option | |
| 69 | val CONVERSION: conv -> int -> tactic | |
| 11916 | 70 | end; | 
| 0 | 71 | |
| 13108 | 72 | structure Tactical : TACTICAL = | 
| 0 | 73 | struct | 
| 74 | ||
| 75 | (**** Tactics ****) | |
| 76 | ||
| 77 | (*A tactic maps a proof tree to a sequence of proof trees: | |
| 78 | if length of sequence = 0 then the tactic does not apply; | |
| 79 | if length > 1 then backtracking on the alternatives can occur.*) | |
| 80 | ||
| 4270 | 81 | type tactic = thm -> thm Seq.seq; | 
| 0 | 82 | |
| 83 | ||
| 84 | (*** LCF-style tacticals ***) | |
| 85 | ||
| 86 | (*the tactical THEN performs one tactic followed by another*) | |
| 17344 | 87 | fun (tac1 THEN tac2) st = Seq.maps tac2 (tac1 st); | 
| 0 | 88 | |
| 89 | ||
| 90 | (*The tactical ORELSE uses the first tactic that returns a nonempty sequence. | |
| 91 | Like in LCF, ORELSE commits to either tac1 or tac2 immediately. | |
| 92 | Does not backtrack to tac2 if tac1 was initially chosen. *) | |
| 1502 | 93 | fun (tac1 ORELSE tac2) st = | 
| 4270 | 94 | case Seq.pull(tac1 st) of | 
| 15531 | 95 | NONE => tac2 st | 
| 4270 | 96 | | sequencecell => Seq.make(fn()=> sequencecell); | 
| 0 | 97 | |
| 98 | ||
| 99 | (*The tactical APPEND combines the results of two tactics. | |
| 100 | Like ORELSE, but allows backtracking on both tac1 and tac2. | |
| 101 | The tactic tac2 is not applied until needed.*) | |
| 13108 | 102 | fun (tac1 APPEND tac2) st = | 
| 19861 | 103 | Seq.append (tac1 st) (Seq.make(fn()=> Seq.pull (tac2 st))); | 
| 0 | 104 | |
| 105 | (*Like APPEND, but interleaves results of tac1 and tac2.*) | |
| 13108 | 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 | *) | 
| 13108 | 114 | fun (tac THEN_ELSE (tac1, tac2)) st = | 
| 4270 | 115 | case Seq.pull(tac st) of | 
| 17344 | 116 | NONE => tac2 st (*failed; try tactic 2*) | 
| 117 | | seqcell => Seq.maps tac1 (Seq.make(fn()=> seqcell)); (*succeeded; use tactic 1*) | |
| 671 | 118 | |
| 119 | ||
| 0 | 120 | (*Versions for combining tactic-valued functions, as in | 
| 121 | SOMEGOAL (resolve_tac rls THEN' assume_tac) *) | |
| 1502 | 122 | fun (tac1 THEN' tac2) x = tac1 x THEN tac2 x; | 
| 123 | fun (tac1 ORELSE' tac2) x = tac1 x ORELSE tac2 x; | |
| 124 | fun (tac1 APPEND' tac2) x = tac1 x APPEND tac2 x; | |
| 125 | fun (tac1 INTLEAVE' tac2) x = tac1 x INTLEAVE tac2 x; | |
| 0 | 126 | |
| 127 | (*passes all proofs through unchanged; identity of THEN*) | |
| 4270 | 128 | fun all_tac st = Seq.single st; | 
| 0 | 129 | |
| 130 | (*passes no proofs through; identity of ORELSE and APPEND*) | |
| 4270 | 131 | fun no_tac st = Seq.empty; | 
| 0 | 132 | |
| 133 | ||
| 134 | (*Make a tactic deterministic by chopping the tail of the proof sequence*) | |
| 12851 | 135 | fun DETERM tac = Seq.DETERM tac; | 
| 0 | 136 | |
| 137 | (*Conditional tactical: testfun controls which tactic to use next. | |
| 138 | Beware: due to eager evaluation, both thentac and elsetac are evaluated.*) | |
| 1502 | 139 | fun COND testfun thenf elsef = (fn prf => | 
| 0 | 140 | if testfun prf then thenf prf else elsef prf); | 
| 141 | ||
| 142 | (*Do the tactic or else do nothing*) | |
| 143 | fun TRY tac = tac ORELSE all_tac; | |
| 144 | ||
| 2672 
85d7e800d754
Replaced "flat" by the Basis Library function List.concat
 paulson parents: 
2627diff
changeset | 145 | (*** List-oriented tactics ***) | 
| 
85d7e800d754
Replaced "flat" by the Basis Library function List.concat
 paulson parents: 
2627diff
changeset | 146 | |
| 
85d7e800d754
Replaced "flat" by the Basis Library function List.concat
 paulson parents: 
2627diff
changeset | 147 | local | 
| 
85d7e800d754
Replaced "flat" by the Basis Library function List.concat
 paulson parents: 
2627diff
changeset | 148 | (*This version of EVERY avoids backtracking over repeated states*) | 
| 
85d7e800d754
Replaced "flat" by the Basis Library function List.concat
 paulson parents: 
2627diff
changeset | 149 | |
| 13108 | 150 | fun EVY (trail, []) st = | 
| 15531 | 151 | Seq.make (fn()=> SOME(st, | 
| 13108 | 152 | Seq.make (fn()=> Seq.pull (evyBack trail)))) | 
| 153 | | EVY (trail, tac::tacs) st = | |
| 154 | case Seq.pull(tac st) of | |
| 15531 | 155 | NONE => evyBack trail (*failed: backtrack*) | 
| 156 | | SOME(st',q) => EVY ((st',q,tacs)::trail, tacs) st' | |
| 4270 | 157 | and evyBack [] = Seq.empty (*no alternatives*) | 
| 2672 
85d7e800d754
Replaced "flat" by the Basis Library function List.concat
 paulson parents: 
2627diff
changeset | 158 | | evyBack ((st',q,tacs)::trail) = | 
| 13108 | 159 | case Seq.pull q of | 
| 15531 | 160 | NONE => evyBack trail | 
| 22360 
26ead7ed4f4b
moved eq_thm etc. to structure Thm in Pure/more_thm.ML;
 wenzelm parents: 
20664diff
changeset | 161 | | SOME(st,q') => if Thm.eq_thm (st',st) | 
| 13108 | 162 | then evyBack ((st',q',tacs)::trail) | 
| 163 | else EVY ((st,q',tacs)::trail, tacs) st | |
| 2672 
85d7e800d754
Replaced "flat" by the Basis Library function List.concat
 paulson parents: 
2627diff
changeset | 164 | in | 
| 
85d7e800d754
Replaced "flat" by the Basis Library function List.concat
 paulson parents: 
2627diff
changeset | 165 | |
| 
85d7e800d754
Replaced "flat" by the Basis Library function List.concat
 paulson parents: 
2627diff
changeset | 166 | (* EVERY [tac1,...,tacn] equals tac1 THEN ... THEN tacn *) | 
| 
85d7e800d754
Replaced "flat" by the Basis Library function List.concat
 paulson parents: 
2627diff
changeset | 167 | fun EVERY tacs = EVY ([], tacs); | 
| 
85d7e800d754
Replaced "flat" by the Basis Library function List.concat
 paulson parents: 
2627diff
changeset | 168 | end; | 
| 2627 | 169 | |
| 0 | 170 | |
| 1502 | 171 | (* 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 | 172 | fun EVERY' tacs i = EVERY (map (fn f => f i) tacs); | 
| 0 | 173 | |
| 174 | (*Apply every tactic to 1*) | |
| 1502 | 175 | fun EVERY1 tacs = EVERY' tacs 1; | 
| 0 | 176 | |
| 177 | (* FIRST [tac1,...,tacn] equals tac1 ORELSE ... ORELSE tacn *) | |
| 23178 | 178 | fun FIRST tacs = fold_rev (curry op ORELSE) tacs no_tac; | 
| 0 | 179 | |
| 1502 | 180 | (* FIRST' [tac1,...,tacn] i equals tac1 i ORELSE ... ORELSE tacn i *) | 
| 23178 | 181 | fun FIRST' tacs = fold_rev (curry op ORELSE') tacs (K no_tac); | 
| 0 | 182 | |
| 183 | (*Apply first tactic to 1*) | |
| 1502 | 184 | fun FIRST1 tacs = FIRST' tacs 1; | 
| 0 | 185 | |
| 11916 | 186 | (*Apply tactics on consecutive subgoals*) | 
| 187 | fun RANGE [] _ = all_tac | |
| 188 | | RANGE (tac :: tacs) i = RANGE tacs (i + 1) THEN tac i; | |
| 189 | ||
| 0 | 190 | |
| 191 | (*** Tracing tactics ***) | |
| 192 | ||
| 193 | (*Print the current proof state and pass it on.*) | |
| 13108 | 194 | fun print_tac msg = | 
| 195 | (fn st => | |
| 12262 | 196 | (tracing msg; | 
| 23224 | 197 | tracing ((Pretty.string_of o Pretty.chunks o | 
| 198 | Display.pretty_goals (! Display.goals_limit)) st); | |
| 15017 
9ad392226da5
print_tac now outputs goals through trace-channel
 schirmer parents: 
15006diff
changeset | 199 | Seq.single st)); | 
| 0 | 200 | |
| 201 | (*Pause until a line is typed -- if non-empty then fail. *) | |
| 13108 | 202 | fun pause_tac st = | 
| 12262 | 203 | (tracing "** Press RETURN to continue:"; | 
| 24359 
44556727197a
TextIO.inputLine: non-critical (assume exclusive ownership);
 wenzelm parents: 
23922diff
changeset | 204 | if TextIO.inputLine TextIO.stdIn = SOME "\n" then Seq.single st | 
| 12262 | 205 | else (tracing "Goodbye"; Seq.empty)); | 
| 0 | 206 | |
| 207 | exception TRACE_EXIT of thm | |
| 208 | and TRACE_QUIT; | |
| 209 | ||
| 631 
8bc44f7bbab8
Pure/tctical/suppress_tracing: new; can now switch tracing off until the
 lcp parents: 
230diff
changeset | 210 | (*Tracing flags*) | 
| 
8bc44f7bbab8
Pure/tctical/suppress_tracing: new; can now switch tracing off until the
 lcp parents: 
230diff
changeset | 211 | val trace_REPEAT= ref false | 
| 
8bc44f7bbab8
Pure/tctical/suppress_tracing: new; can now switch tracing off until the
 lcp parents: 
230diff
changeset | 212 | and suppress_tracing = ref false; | 
| 
8bc44f7bbab8
Pure/tctical/suppress_tracing: new; can now switch tracing off until the
 lcp parents: 
230diff
changeset | 213 | |
| 0 | 214 | (*Handle all tracing commands for current state and tactic *) | 
| 13108 | 215 | fun exec_trace_command flag (tac, st) = | 
| 24359 
44556727197a
TextIO.inputLine: non-critical (assume exclusive ownership);
 wenzelm parents: 
23922diff
changeset | 216 | case TextIO.inputLine TextIO.stdIn of | 
| 23139 
aa899bce7c3b
TextIO.inputLine: use present SML B library version;
 wenzelm parents: 
22596diff
changeset | 217 | SOME "\n" => tac st | 
| 
aa899bce7c3b
TextIO.inputLine: use present SML B library version;
 wenzelm parents: 
22596diff
changeset | 218 | | SOME "f\n" => Seq.empty | 
| 
aa899bce7c3b
TextIO.inputLine: use present SML B library version;
 wenzelm parents: 
22596diff
changeset | 219 | | SOME "o\n" => (flag:=false; tac st) | 
| 
aa899bce7c3b
TextIO.inputLine: use present SML B library version;
 wenzelm parents: 
22596diff
changeset | 220 | | SOME "s\n" => (suppress_tracing:=true; tac st) | 
| 
aa899bce7c3b
TextIO.inputLine: use present SML B library version;
 wenzelm parents: 
22596diff
changeset | 221 | | SOME "x\n" => (tracing "Exiting now"; raise (TRACE_EXIT st)) | 
| 
aa899bce7c3b
TextIO.inputLine: use present SML B library version;
 wenzelm parents: 
22596diff
changeset | 222 | | SOME "quit\n" => raise TRACE_QUIT | 
| 12262 | 223 | | _ => (tracing | 
| 0 | 224 | "Type RETURN to continue or...\n\ | 
| 225 | \ f - to fail here\n\ | |
| 226 | \ o - to switch tracing off\n\ | |
| 631 
8bc44f7bbab8
Pure/tctical/suppress_tracing: new; can now switch tracing off until the
 lcp parents: 
230diff
changeset | 227 | \ s - to suppress tracing until next entry to a tactical\n\ | 
| 0 | 228 | \ x - to exit at this point\n\ | 
| 229 | \ quit - to abort this tracing run\n\ | |
| 1502 | 230 | \** Well? " ; exec_trace_command flag (tac, st)); | 
| 0 | 231 | |
| 232 | ||
| 233 | (*Extract from a tactic, a thm->thm seq function that handles tracing*) | |
| 1502 | 234 | fun tracify flag tac st = | 
| 631 
8bc44f7bbab8
Pure/tctical/suppress_tracing: new; can now switch tracing off until the
 lcp parents: 
230diff
changeset | 235 | if !flag andalso not (!suppress_tracing) | 
| 12082 | 236 | then (Display.print_goals (! Display.goals_limit) st; | 
| 12262 | 237 | tracing "** Press RETURN to continue:"; | 
| 2244 
dacee519738a
Converted I/O operatios for Basis Library compatibility
 paulson parents: 
2158diff
changeset | 238 | exec_trace_command flag (tac,st)) | 
| 1502 | 239 | else tac st; | 
| 0 | 240 | |
| 241 | (*Create a tactic whose outcome is given by seqf, handling TRACE_EXIT*) | |
| 13108 | 242 | fun traced_tac seqf st = | 
| 631 
8bc44f7bbab8
Pure/tctical/suppress_tracing: new; can now switch tracing off until the
 lcp parents: 
230diff
changeset | 243 | (suppress_tracing := false; | 
| 4270 | 244 | Seq.make (fn()=> seqf st | 
| 15531 | 245 | handle TRACE_EXIT st' => SOME(st', Seq.empty))); | 
| 0 | 246 | |
| 247 | ||
| 8149 
941afb897532
added tacticals DETERM_UNTIL and DETERM_UNTIL_SOLVED
 oheimb parents: 
7686diff
changeset | 248 | (*Deterministic DO..UNTIL: only retains the first outcome; tail recursive. | 
| 
941afb897532
added tacticals DETERM_UNTIL and DETERM_UNTIL_SOLVED
 oheimb parents: 
7686diff
changeset | 249 | Forces repitition until predicate on state is fulfilled.*) | 
| 13108 | 250 | fun DETERM_UNTIL p tac = | 
| 8149 
941afb897532
added tacticals DETERM_UNTIL and DETERM_UNTIL_SOLVED
 oheimb parents: 
7686diff
changeset | 251 | let val tac = tracify trace_REPEAT tac | 
| 15531 | 252 | fun drep st = if p st then SOME (st, Seq.empty) | 
| 8149 
941afb897532
added tacticals DETERM_UNTIL and DETERM_UNTIL_SOLVED
 oheimb parents: 
7686diff
changeset | 253 | else (case Seq.pull(tac st) of | 
| 15531 | 254 | NONE => NONE | 
| 255 | | SOME(st',_) => drep st') | |
| 8149 
941afb897532
added tacticals DETERM_UNTIL and DETERM_UNTIL_SOLVED
 oheimb parents: 
7686diff
changeset | 256 | in traced_tac drep end; | 
| 
941afb897532
added tacticals DETERM_UNTIL and DETERM_UNTIL_SOLVED
 oheimb parents: 
7686diff
changeset | 257 | |
| 13108 | 258 | (*Deterministic REPEAT: only retains the first outcome; | 
| 703 
3a5cd2883581
Pure/tctical/REPEAT_DETERM_N,REPEAT_DETERM1,REPEAT_DETERM_FIRST,
 lcp parents: 
671diff
changeset | 259 | uses less space than REPEAT; tail recursive. | 
| 
3a5cd2883581
Pure/tctical/REPEAT_DETERM_N,REPEAT_DETERM1,REPEAT_DETERM_FIRST,
 lcp parents: 
671diff
changeset | 260 | If non-negative, n bounds the number of repetitions.*) | 
| 13108 | 261 | fun REPEAT_DETERM_N n tac = | 
| 1502 | 262 | let val tac = tracify trace_REPEAT tac | 
| 15531 | 263 | fun drep 0 st = SOME(st, Seq.empty) | 
| 2244 
dacee519738a
Converted I/O operatios for Basis Library compatibility
 paulson parents: 
2158diff
changeset | 264 | | drep n st = | 
| 4270 | 265 | (case Seq.pull(tac st) of | 
| 15531 | 266 | NONE => SOME(st, Seq.empty) | 
| 267 | | SOME(st',_) => drep (n-1) st') | |
| 703 
3a5cd2883581
Pure/tctical/REPEAT_DETERM_N,REPEAT_DETERM1,REPEAT_DETERM_FIRST,
 lcp parents: 
671diff
changeset | 268 | in traced_tac (drep n) end; | 
| 
3a5cd2883581
Pure/tctical/REPEAT_DETERM_N,REPEAT_DETERM1,REPEAT_DETERM_FIRST,
 lcp parents: 
671diff
changeset | 269 | |
| 
3a5cd2883581
Pure/tctical/REPEAT_DETERM_N,REPEAT_DETERM1,REPEAT_DETERM_FIRST,
 lcp parents: 
671diff
changeset | 270 | (*Allows any number of repetitions*) | 
| 
3a5cd2883581
Pure/tctical/REPEAT_DETERM_N,REPEAT_DETERM1,REPEAT_DETERM_FIRST,
 lcp parents: 
671diff
changeset | 271 | val REPEAT_DETERM = REPEAT_DETERM_N ~1; | 
| 0 | 272 | |
| 273 | (*General REPEAT: maintains a stack of alternatives; tail recursive*) | |
| 13108 | 274 | fun REPEAT tac = | 
| 1502 | 275 | let val tac = tracify trace_REPEAT tac | 
| 13108 | 276 | fun rep qs st = | 
| 4270 | 277 | case Seq.pull(tac st) of | 
| 15531 | 278 | NONE => SOME(st, Seq.make(fn()=> repq qs)) | 
| 279 | | SOME(st',q) => rep (q::qs) st' | |
| 280 | and repq [] = NONE | |
| 4270 | 281 | | repq(q::qs) = case Seq.pull q of | 
| 15531 | 282 | NONE => repq qs | 
| 283 | | SOME(st,q) => rep (q::qs) st | |
| 0 | 284 | in traced_tac (rep []) end; | 
| 285 | ||
| 286 | (*Repeat 1 or more times*) | |
| 703 
3a5cd2883581
Pure/tctical/REPEAT_DETERM_N,REPEAT_DETERM1,REPEAT_DETERM_FIRST,
 lcp parents: 
671diff
changeset | 287 | fun REPEAT_DETERM1 tac = DETERM tac THEN REPEAT_DETERM tac; | 
| 0 | 288 | fun REPEAT1 tac = tac THEN REPEAT tac; | 
| 289 | ||
| 290 | ||
| 291 | (** Filtering tacticals **) | |
| 292 | ||
| 4270 | 293 | fun FILTER pred tac st = Seq.filter pred (tac st); | 
| 0 | 294 | |
| 13650 
31bd2a8cdbe2
fixing the cut_tac method to work when there are no instantiations and the
 paulson parents: 
13108diff
changeset | 295 | (*Accept only next states that change the theorem somehow*) | 
| 13108 | 296 | fun CHANGED tac st = | 
| 297 | let fun diff st' = not (Thm.eq_thm (st, st')); | |
| 298 | in Seq.filter diff (tac st) end; | |
| 0 | 299 | |
| 13650 
31bd2a8cdbe2
fixing the cut_tac method to work when there are no instantiations and the
 paulson parents: 
13108diff
changeset | 300 | (*Accept only next states that change the theorem's prop field | 
| 
31bd2a8cdbe2
fixing the cut_tac method to work when there are no instantiations and the
 paulson parents: 
13108diff
changeset | 301 | (changes to signature, hyps, etc. don't count)*) | 
| 13108 | 302 | fun CHANGED_PROP tac st = | 
| 22360 
26ead7ed4f4b
moved eq_thm etc. to structure Thm in Pure/more_thm.ML;
 wenzelm parents: 
20664diff
changeset | 303 | let fun diff st' = not (Thm.eq_thm_prop (st, st')); | 
| 13108 | 304 | in Seq.filter diff (tac st) end; | 
| 10821 | 305 | |
| 0 | 306 | |
| 307 | (*** Tacticals based on subgoal numbering ***) | |
| 308 | ||
| 13108 | 309 | (*For n subgoals, performs tac(n) THEN ... THEN tac(1) | 
| 1502 | 310 | Essential to work backwards since tac(i) may add/delete subgoals at i. *) | 
| 13108 | 311 | fun ALLGOALS tac st = | 
| 1502 | 312 | let fun doall 0 = all_tac | 
| 2244 
dacee519738a
Converted I/O operatios for Basis Library compatibility
 paulson parents: 
2158diff
changeset | 313 | | doall n = tac(n) THEN doall(n-1) | 
| 1502 | 314 | in doall(nprems_of st)st end; | 
| 0 | 315 | |
| 1502 | 316 | (*For n subgoals, performs tac(n) ORELSE ... ORELSE tac(1) *) | 
| 13108 | 317 | fun SOMEGOAL tac st = | 
| 1502 | 318 | let fun find 0 = no_tac | 
| 2244 
dacee519738a
Converted I/O operatios for Basis Library compatibility
 paulson parents: 
2158diff
changeset | 319 | | find n = tac(n) ORELSE find(n-1) | 
| 1502 | 320 | in find(nprems_of st)st end; | 
| 0 | 321 | |
| 1502 | 322 | (*For n subgoals, performs tac(1) ORELSE ... ORELSE tac(n). | 
| 0 | 323 | More appropriate than SOMEGOAL in some cases.*) | 
| 13108 | 324 | fun FIRSTGOAL tac st = | 
| 1502 | 325 | let fun find (i,n) = if i>n then no_tac else tac(i) ORELSE find (i+1,n) | 
| 326 | in find(1, nprems_of st)st end; | |
| 0 | 327 | |
| 1502 | 328 | (*Repeatedly solve some using tac. *) | 
| 329 | fun REPEAT_SOME tac = REPEAT1 (SOMEGOAL (REPEAT1 o tac)); | |
| 330 | fun REPEAT_DETERM_SOME tac = REPEAT_DETERM1 (SOMEGOAL (REPEAT_DETERM1 o tac)); | |
| 0 | 331 | |
| 1502 | 332 | (*Repeatedly solve the first possible subgoal using tac. *) | 
| 333 | fun REPEAT_FIRST tac = REPEAT1 (FIRSTGOAL (REPEAT1 o tac)); | |
| 334 | fun REPEAT_DETERM_FIRST tac = REPEAT_DETERM1 (FIRSTGOAL (REPEAT_DETERM1 o tac)); | |
| 0 | 335 | |
| 1502 | 336 | (*For n subgoals, tries to apply tac to n,...1 *) | 
| 337 | fun TRYALL tac = ALLGOALS (TRY o tac); | |
| 0 | 338 | |
| 339 | ||
| 340 | (*Make a tactic for subgoal i, if there is one. *) | |
| 23224 | 341 | fun CSUBGOAL goalfun i st = | 
| 342 | (case SOME (Thm.cprem_of st i) handle THM _ => NONE of | |
| 16510 
606d919ad3c3
tuned SUBGOAL: Logic.nth_prem instead of List.nth o prems_of;
 wenzelm parents: 
16179diff
changeset | 343 | SOME goal => goalfun (goal, i) st | 
| 
606d919ad3c3
tuned SUBGOAL: Logic.nth_prem instead of List.nth o prems_of;
 wenzelm parents: 
16179diff
changeset | 344 | | NONE => Seq.empty); | 
| 0 | 345 | |
| 23224 | 346 | fun SUBGOAL goalfun = | 
| 347 | CSUBGOAL (fn (goal, i) => goalfun (Thm.term_of goal, i)); | |
| 348 | ||
| 5141 | 349 | (*Returns all states that have changed in subgoal i, counted from the LAST | 
| 350 | subgoal. For stac, for example.*) | |
| 13108 | 351 | fun CHANGED_GOAL tac i st = | 
| 7686 | 352 | let val np = nprems_of st | 
| 353 | val d = np-i (*distance from END*) | |
| 5141 | 354 | val t = List.nth(prems_of st, i-1) | 
| 13108 | 355 | fun diff st' = | 
| 356 | nprems_of st' - d <= 0 (*the subgoal no longer exists*) | |
| 357 | orelse | |
| 7686 | 358 | not (Pattern.aeconv (t, | 
| 13108 | 359 | List.nth(prems_of st', | 
| 360 | nprems_of st' - d - 1))) | |
| 5141 | 361 | in Seq.filter diff (tac i st) end | 
| 362 | handle Subscript => Seq.empty (*no subgoal i*); | |
| 363 | ||
| 4602 | 364 | fun (tac1 THEN_ALL_NEW tac2) i st = | 
| 8535 | 365 | st |> (tac1 i THEN (fn st' => Seq.INTERVAL tac2 i (i + nprems_of st' - nprems_of st) st')); | 
| 4602 | 366 | |
| 8341 | 367 | (*repeatedly dig into any emerging subgoals*) | 
| 368 | fun REPEAT_ALL_NEW tac = | |
| 369 | tac THEN_ALL_NEW (TRY o (fn i => REPEAT_ALL_NEW tac i)); | |
| 370 | ||
| 2005 
a52f53caf424
Optimized version of SELECT_GOAL, up to 10% faster
 paulson parents: 
1643diff
changeset | 371 | |
| 0 | 372 | (*Strips assumptions in goal yielding ( [x1,...,xm], [H1,...,Hn], B ) | 
| 13108 | 373 | H1,...,Hn are the hypotheses; x1...xm are variants of the parameters. | 
| 374 | Main difference from strip_assums concerns parameters: | |
| 0 | 375 | it replaces the bound variables by free variables. *) | 
| 13108 | 376 | fun strip_context_aux (params, Hs, Const("==>", _) $ H $ B) =
 | 
| 2244 
dacee519738a
Converted I/O operatios for Basis Library compatibility
 paulson parents: 
2158diff
changeset | 377 | strip_context_aux (params, H::Hs, B) | 
| 0 | 378 |   | strip_context_aux (params, Hs, Const("all",_)$Abs(a,T,t)) =
 | 
| 20194 | 379 | let val (b,u) = Syntax.variant_abs(a,T,t) | 
| 2244 
dacee519738a
Converted I/O operatios for Basis Library compatibility
 paulson parents: 
2158diff
changeset | 380 | in strip_context_aux ((b,T)::params, Hs, u) end | 
| 0 | 381 | | strip_context_aux (params, Hs, B) = (rev params, rev Hs, B); | 
| 382 | ||
| 383 | fun strip_context A = strip_context_aux ([],[],A); | |
| 384 | ||
| 385 | ||
| 386 | (**** METAHYPS -- tactical for using hypotheses as meta-level assumptions | |
| 1502 | 387 | METAHYPS (fn prems => tac prems) i | 
| 0 | 388 | |
| 389 | converts subgoal i, of the form !!x1...xm. [| A1;...;An] ==> A into a new | |
| 390 | proof state A==>A, supplying A1,...,An as meta-level assumptions (in | |
| 391 | "prems"). The parameters x1,...,xm become free variables. If the | |
| 392 | resulting proof state is [| B1;...;Bk] ==> C (possibly assuming A1,...,An) | |
| 393 | then it is lifted back into the original context, yielding k subgoals. | |
| 394 | ||
| 395 | Replaces unknowns in the context by Frees having the prefix METAHYP_ | |
| 396 | New unknowns in [| B1;...;Bk] ==> C are lifted over x1,...,xm. | |
| 397 | DOES NOT HANDLE TYPE UNKNOWNS. | |
| 398 | ****) | |
| 399 | ||
| 13108 | 400 | local | 
| 0 | 401 | |
| 402 | (*Left-to-right replacements: ctpairs = [...,(vi,ti),...]. | |
| 403 | Instantiates distinct free variables by terms of same type.*) | |
| 13108 | 404 | fun free_instantiate ctpairs = | 
| 29264 | 405 | forall_elim_list (map snd ctpairs) o forall_intr_list (map fst ctpairs); | 
| 0 | 406 | |
| 29264 | 407 | fun free_of s ((a, i), T) = | 
| 408 | Free (s ^ (case i of 0 => a | _ => a ^ "_" ^ string_of_int i), T) | |
| 0 | 409 | |
| 29264 | 410 | fun mk_inst v = (Var v, free_of "METAHYP1_" v) | 
| 0 | 411 | in | 
| 412 | ||
| 19153 | 413 | (*Common code for METAHYPS and metahyps_thms*) | 
| 414 | fun metahyps_split_prem prem = | |
| 415 | let (*find all vars in the hyps -- should find tvars also!*) | |
| 29264 | 416 | val hyps_vars = fold Term.add_vars (Logic.strip_assums_hyp prem) [] | 
| 0 | 417 | val insts = map mk_inst hyps_vars | 
| 418 | (*replace the hyps_vars by Frees*) | |
| 419 | val prem' = subst_atomic insts prem | |
| 420 | val (params,hyps,concl) = strip_context prem' | |
| 19153 | 421 | in (insts,params,hyps,concl) end; | 
| 422 | ||
| 423 | fun metahyps_aux_tac tacf (prem,gno) state = | |
| 23224 | 424 | let val (insts,params,hyps,concl) = metahyps_split_prem prem | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
24359diff
changeset | 425 | val maxidx = Thm.maxidx_of state | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
24359diff
changeset | 426 | val cterm = Thm.cterm_of (Thm.theory_of_thm state) | 
| 19153 | 427 | val chyps = map cterm hyps | 
| 428 | val hypths = map assume chyps | |
| 26653 | 429 | val subprems = map (Thm.forall_elim_vars 0) hypths | 
| 0 | 430 | val fparams = map Free params | 
| 431 | val cparams = map cterm fparams | |
| 432 | fun swap_ctpair (t,u) = (cterm u, cterm t) | |
| 433 | (*Subgoal variables: make Free; lift type over params*) | |
| 29264 | 434 | fun mk_subgoal_inst concl_vars (v, T) = | 
| 435 | if member (op =) concl_vars (v, T) | |
| 436 | then ((v, T), true, free_of "METAHYP2_" (v, T)) | |
| 437 | else ((v, T), false, free_of "METAHYP2_" (v, map #2 params ---> T)) | |
| 0 | 438 | (*Instantiate subgoal vars by Free applied to params*) | 
| 29264 | 439 | fun mk_ctpair (v, in_concl, u) = | 
| 440 | if in_concl then (cterm (Var v), cterm u) | |
| 441 | else (cterm (Var v), cterm (list_comb (u, fparams))) | |
| 0 | 442 | (*Restore Vars with higher type and index*) | 
| 29264 | 443 | fun mk_subgoal_swap_ctpair (((a, i), T), in_concl, u as Free (_, U)) = | 
| 444 | if in_concl then (cterm u, cterm (Var ((a, i), T))) | |
| 445 | else (cterm u, cterm (Var ((a, i + maxidx), U))) | |
| 0 | 446 | (*Embed B in the original context of params and hyps*) | 
| 1502 | 447 | fun embed B = list_all_free (params, Logic.list_implies (hyps, B)) | 
| 0 | 448 | (*Strip the context using elimination rules*) | 
| 449 | fun elim Bhyp = implies_elim_list (forall_elim_list cparams Bhyp) hypths | |
| 450 | (*A form of lifting that discharges assumptions.*) | |
| 13108 | 451 | fun relift st = | 
| 22596 | 452 | let val prop = Thm.prop_of st | 
| 2244 
dacee519738a
Converted I/O operatios for Basis Library compatibility
 paulson parents: 
2158diff
changeset | 453 | val subgoal_vars = (*Vars introduced in the subgoals*) | 
| 29264 | 454 | fold Term.add_vars (Logic.strip_imp_prems prop) [] | 
| 455 | and concl_vars = Term.add_vars (Logic.strip_imp_concl prop) [] | |
| 2244 
dacee519738a
Converted I/O operatios for Basis Library compatibility
 paulson parents: 
2158diff
changeset | 456 | val subgoal_insts = map (mk_subgoal_inst concl_vars) subgoal_vars | 
| 13664 
cfe1dc32c2e5
No more explicit manipulation of flex-flex constraints in metahyps_aux_tac.
 berghofe parents: 
13650diff
changeset | 457 | val st' = Thm.instantiate ([], map mk_ctpair subgoal_insts) st | 
| 2244 
dacee519738a
Converted I/O operatios for Basis Library compatibility
 paulson parents: 
2158diff
changeset | 458 | val emBs = map (cterm o embed) (prems_of st') | 
| 13664 
cfe1dc32c2e5
No more explicit manipulation of flex-flex constraints in metahyps_aux_tac.
 berghofe parents: 
13650diff
changeset | 459 | val Cth = implies_elim_list st' (map (elim o assume) emBs) | 
| 2244 
dacee519738a
Converted I/O operatios for Basis Library compatibility
 paulson parents: 
2158diff
changeset | 460 | in (*restore the unknowns to the hypotheses*) | 
| 
dacee519738a
Converted I/O operatios for Basis Library compatibility
 paulson parents: 
2158diff
changeset | 461 | free_instantiate (map swap_ctpair insts @ | 
| 
dacee519738a
Converted I/O operatios for Basis Library compatibility
 paulson parents: 
2158diff
changeset | 462 | map mk_subgoal_swap_ctpair subgoal_insts) | 
| 
dacee519738a
Converted I/O operatios for Basis Library compatibility
 paulson parents: 
2158diff
changeset | 463 | (*discharge assumptions from state in same order*) | 
| 13664 
cfe1dc32c2e5
No more explicit manipulation of flex-flex constraints in metahyps_aux_tac.
 berghofe parents: 
13650diff
changeset | 464 | (implies_intr_list emBs | 
| 2244 
dacee519738a
Converted I/O operatios for Basis Library compatibility
 paulson parents: 
2158diff
changeset | 465 | (forall_intr_list cparams (implies_intr_list chyps Cth))) | 
| 
dacee519738a
Converted I/O operatios for Basis Library compatibility
 paulson parents: 
2158diff
changeset | 466 | end | 
| 0 | 467 | (*function to replace the current subgoal*) | 
| 468 | fun next st = bicompose false (false, relift st, nprems_of st) | |
| 19153 | 469 | gno state | 
| 470 | in Seq.maps next (tacf subprems (trivial (cterm concl))) end; | |
| 471 | ||
| 0 | 472 | end; | 
| 473 | ||
| 19153 | 474 | (*Returns the theorem list that METAHYPS would supply to its tactic*) | 
| 475 | fun metahyps_thms i state = | |
| 23224 | 476 | let val prem = Logic.nth_prem (i, Thm.prop_of state) | 
| 23384 | 477 | and cterm = cterm_of (Thm.theory_of_thm state) | 
| 478 | val (_,_,hyps,_) = metahyps_split_prem prem | |
| 26653 | 479 | in SOME (map (Thm.forall_elim_vars 0 o Thm.assume o cterm) hyps) end | 
| 19153 | 480 |   handle TERM ("nth_prem", [A]) => NONE;
 | 
| 481 | ||
| 19455 | 482 | local | 
| 19229 
7183628d7b29
METAHYPS catches THM assume exception and prints out the terms containing schematic vars.
 mengj parents: 
19153diff
changeset | 483 | |
| 
7183628d7b29
METAHYPS catches THM assume exception and prints out the terms containing schematic vars.
 mengj parents: 
19153diff
changeset | 484 | fun print_vars_terms thy (n,thm) = | 
| 19455 | 485 | let | 
| 26939 
1035c89b4c02
moved global pretty/string_of functions from Sign to Syntax;
 wenzelm parents: 
26653diff
changeset | 486 | fun typed ty = " has type: " ^ Syntax.string_of_typ_global thy ty; | 
| 19455 | 487 | fun find_vars thy (Const (c, ty)) = | 
| 29272 | 488 | if null (Term.add_tvarsT ty []) then I | 
| 489 | else insert (op =) (c ^ typed ty) | |
| 19646 | 490 | | find_vars thy (Var (xi, ty)) = insert (op =) (Term.string_of_vname xi ^ typed ty) | 
| 19455 | 491 | | find_vars _ (Free _) = I | 
| 492 | | find_vars _ (Bound _) = I | |
| 493 | | find_vars thy (Abs (_, _, t)) = find_vars thy t | |
| 23224 | 494 | | find_vars thy (t1 $ t2) = | 
| 19455 | 495 | find_vars thy t1 #> find_vars thy t1; | 
| 496 | val prem = Logic.nth_prem (n, Thm.prop_of thm) | |
| 497 | val tms = find_vars thy prem [] | |
| 498 | in | |
| 499 | (warning "Found schematic vars in assumptions:"; warning (cat_lines tms)) | |
| 500 | end; | |
| 501 | ||
| 502 | in | |
| 19229 
7183628d7b29
METAHYPS catches THM assume exception and prints out the terms containing schematic vars.
 mengj parents: 
19153diff
changeset | 503 | |
| 
7183628d7b29
METAHYPS catches THM assume exception and prints out the terms containing schematic vars.
 mengj parents: 
19153diff
changeset | 504 | fun METAHYPS tacf n thm = SUBGOAL (metahyps_aux_tac tacf) n thm | 
| 23224 | 505 |   handle THM("assume: variables",_,_) => (print_vars_terms (theory_of_thm thm) (n,thm); Seq.empty)
 | 
| 0 | 506 | |
| 23224 | 507 | end; | 
| 19455 | 508 | |
| 15006 
107e4dfd3b96
Merging the meta-simplifier with the Provers-simplifier.  Next step:
 skalberg parents: 
13664diff
changeset | 509 | (*Makes a tactic whose effect on a state is given by thmfun: thm->thm seq.*) | 
| 
107e4dfd3b96
Merging the meta-simplifier with the Provers-simplifier.  Next step:
 skalberg parents: 
13664diff
changeset | 510 | fun PRIMSEQ thmfun st = thmfun st handle THM _ => Seq.empty; | 
| 
107e4dfd3b96
Merging the meta-simplifier with the Provers-simplifier.  Next step:
 skalberg parents: 
13664diff
changeset | 511 | |
| 
107e4dfd3b96
Merging the meta-simplifier with the Provers-simplifier.  Next step:
 skalberg parents: 
13664diff
changeset | 512 | (*Makes a tactic whose effect on a state is given by thmfun: thm->thm.*) | 
| 
107e4dfd3b96
Merging the meta-simplifier with the Provers-simplifier.  Next step:
 skalberg parents: 
13664diff
changeset | 513 | fun PRIMITIVE thmfun = PRIMSEQ (Seq.single o thmfun); | 
| 
107e4dfd3b96
Merging the meta-simplifier with the Provers-simplifier.  Next step:
 skalberg parents: 
13664diff
changeset | 514 | |
| 23538 | 515 | (*Inverse (more or less) of PRIMITIVE*) | 
| 15570 | 516 | fun SINGLE tacf = Option.map fst o Seq.pull o tacf | 
| 19455 | 517 | |
| 23538 | 518 | (*Conversions as tactics*) | 
| 23584 | 519 | fun CONVERSION cv i st = Seq.single (Conv.gconv_rule cv i st) | 
| 23561 | 520 | handle THM _ => Seq.empty | 
| 521 | | CTERM _ => Seq.empty | |
| 522 | | TERM _ => Seq.empty | |
| 523 | | TYPE _ => Seq.empty; | |
| 23538 | 524 | |
| 0 | 525 | end; | 
| 1502 | 526 | |
| 527 | open Tactical; |