| author | hoelzl | 
| Thu, 22 Sep 2011 10:02:16 -0400 | |
| changeset 45041 | 0523a6be8ade | 
| parent 38802 | a925c0ee42f7 | 
| child 46492 | bf96ed9e55c1 | 
| permissions | -rw-r--r-- | 
| 23178 | 1 | (* Title: Pure/search.ML | 
| 2 | Author: Lawrence C Paulson and Norbert Voelker | |
| 1588 | 3 | |
| 16179 | 4 | Search tacticals. | 
| 1588 | 5 | *) | 
| 6 | ||
| 2672 
85d7e800d754
Replaced "flat" by the Basis Library function List.concat
 paulson parents: 
2143diff
changeset | 7 | infix 1 THEN_MAYBE THEN_MAYBE'; | 
| 
85d7e800d754
Replaced "flat" by the Basis Library function List.concat
 paulson parents: 
2143diff
changeset | 8 | |
| 1588 | 9 | signature SEARCH = | 
| 32940 | 10 | sig | 
| 11 | val trace_DEPTH_FIRST: bool Unsynchronized.ref | |
| 12 | val DEPTH_FIRST: (thm -> bool) -> tactic -> tactic | |
| 13 | val has_fewer_prems: int -> thm -> bool | |
| 14 | val IF_UNSOLVED: tactic -> tactic | |
| 15 | val SOLVE: tactic -> tactic | |
| 8149 
941afb897532
added tacticals DETERM_UNTIL and DETERM_UNTIL_SOLVED
 oheimb parents: 
5956diff
changeset | 16 | val DETERM_UNTIL_SOLVED: tactic -> tactic | 
| 32940 | 17 | val THEN_MAYBE: tactic * tactic -> tactic | 
| 18 |   val THEN_MAYBE': ('a -> tactic) * ('a -> tactic) -> 'a -> tactic
 | |
| 19 | val DEPTH_SOLVE: tactic -> tactic | |
| 20 | val DEPTH_SOLVE_1: tactic -> tactic | |
| 38802 
a925c0ee42f7
clarified iter_deepen_limit vs meson (cf. 7c5896919eb8) -- eliminated global ref;
 wenzelm parents: 
35408diff
changeset | 21 | val THEN_ITER_DEEPEN: int -> tactic -> (thm -> bool) -> (int -> tactic) -> tactic | 
| 
a925c0ee42f7
clarified iter_deepen_limit vs meson (cf. 7c5896919eb8) -- eliminated global ref;
 wenzelm parents: 
35408diff
changeset | 22 | val ITER_DEEPEN: int -> (thm -> bool) -> (int -> tactic) -> tactic | 
| 33335 
1e189f96c393
DEEPEN: less aggressive tracing, subject to trace_DEEPEN;
 wenzelm parents: 
32940diff
changeset | 23 | val trace_DEEPEN: bool Unsynchronized.ref | 
| 32940 | 24 | val DEEPEN: int * int -> (int -> int -> tactic) -> int -> int -> tactic | 
| 25 | val trace_BEST_FIRST: bool Unsynchronized.ref | |
| 26 | val THEN_BEST_FIRST: tactic -> (thm -> bool) * (thm -> int) -> tactic -> tactic | |
| 27 | val BEST_FIRST: (thm -> bool) * (thm -> int) -> tactic -> tactic | |
| 28 | val BREADTH_FIRST: (thm -> bool) -> tactic -> tactic | |
| 29 | val QUIET_BREADTH_FIRST: (thm -> bool) -> tactic -> tactic | |
| 30 | val trace_ASTAR: bool Unsynchronized.ref | |
| 31 | val THEN_ASTAR: tactic -> (thm -> bool) * (int -> thm -> int) -> tactic -> tactic | |
| 32 | val ASTAR: (thm -> bool) * (int -> thm -> int) -> tactic -> tactic | |
| 33 | end; | |
| 1588 | 34 | |
| 32940 | 35 | structure Search: SEARCH = | 
| 1588 | 36 | struct | 
| 37 | ||
| 38 | (**** Depth-first search ****) | |
| 39 | ||
| 32738 | 40 | val trace_DEPTH_FIRST = Unsynchronized.ref false; | 
| 1588 | 41 | |
| 42 | (*Searches until "satp" reports proof tree as satisfied. | |
| 43 | Suppresses duplicate solutions to minimize search space.*) | |
| 23178 | 44 | fun DEPTH_FIRST satp tac = | 
| 1588 | 45 | let val tac = tracify trace_DEPTH_FIRST tac | 
| 15531 | 46 | fun depth used [] = NONE | 
| 1588 | 47 | | depth used (q::qs) = | 
| 23178 | 48 | case Seq.pull q of | 
| 49 | NONE => depth used qs | |
| 50 | | SOME(st,stq) => | |
| 51 | if satp st andalso not (member Thm.eq_thm used st) | |
| 52 | then SOME(st, Seq.make | |
| 53 | (fn()=> depth (st::used) (stq::qs))) | |
| 54 | else depth used (tac st :: stq :: qs) | |
| 20852 | 55 | in traced_tac (fn st => depth [] [Seq.single st]) end; | 
| 1588 | 56 | |
| 57 | ||
| 58 | ||
| 59 | (*Predicate: Does the rule have fewer than n premises?*) | |
| 60 | fun has_fewer_prems n rule = (nprems_of rule < n); | |
| 61 | ||
| 62 | (*Apply a tactic if subgoals remain, else do nothing.*) | |
| 63 | val IF_UNSOLVED = COND (has_fewer_prems 1) all_tac; | |
| 64 | ||
| 5754 | 65 | (*Force a tactic to solve its goal completely, otherwise fail *) | 
| 66 | fun SOLVE tac = tac THEN COND (has_fewer_prems 1) all_tac no_tac; | |
| 67 | ||
| 8149 
941afb897532
added tacticals DETERM_UNTIL and DETERM_UNTIL_SOLVED
 oheimb parents: 
5956diff
changeset | 68 | (*Force repeated application of tactic until goal is solved completely *) | 
| 
941afb897532
added tacticals DETERM_UNTIL and DETERM_UNTIL_SOLVED
 oheimb parents: 
5956diff
changeset | 69 | val DETERM_UNTIL_SOLVED = DETERM_UNTIL (has_fewer_prems 1); | 
| 
941afb897532
added tacticals DETERM_UNTIL and DETERM_UNTIL_SOLVED
 oheimb parents: 
5956diff
changeset | 70 | |
| 2672 
85d7e800d754
Replaced "flat" by the Basis Library function List.concat
 paulson parents: 
2143diff
changeset | 71 | (*Execute tac1, but only execute tac2 if there are at least as many subgoals | 
| 
85d7e800d754
Replaced "flat" by the Basis Library function List.concat
 paulson parents: 
2143diff
changeset | 72 | as before. This ensures that tac2 is only applied to an outcome of tac1.*) | 
| 23178 | 73 | fun (tac1 THEN_MAYBE tac2) st = | 
| 32940 | 74 | (tac1 THEN COND (has_fewer_prems (nprems_of st)) all_tac tac2) st; | 
| 2672 
85d7e800d754
Replaced "flat" by the Basis Library function List.concat
 paulson parents: 
2143diff
changeset | 75 | |
| 
85d7e800d754
Replaced "flat" by the Basis Library function List.concat
 paulson parents: 
2143diff
changeset | 76 | fun (tac1 THEN_MAYBE' tac2) x = tac1 x THEN_MAYBE tac2 x; | 
| 
85d7e800d754
Replaced "flat" by the Basis Library function List.concat
 paulson parents: 
2143diff
changeset | 77 | |
| 1588 | 78 | (*Tactical to reduce the number of premises by 1. | 
| 79 | If no subgoals then it must fail! *) | |
| 3538 | 80 | fun DEPTH_SOLVE_1 tac st = st |> | 
| 1588 | 81 | (case nprems_of st of | 
| 23178 | 82 | 0 => no_tac | 
| 3538 | 83 | | n => DEPTH_FIRST (has_fewer_prems n) tac); | 
| 1588 | 84 | |
| 85 | (*Uses depth-first search to solve ALL subgoals*) | |
| 86 | val DEPTH_SOLVE = DEPTH_FIRST (has_fewer_prems 1); | |
| 87 | ||
| 88 | ||
| 89 | ||
| 2869 
acee08856cc9
DEEPEN now takes an upper bound for terminating searches
 paulson parents: 
2672diff
changeset | 90 | (**** Iterative deepening with pruning ****) | 
| 1588 | 91 | |
| 92 | fun has_vars (Var _) = true | |
| 93 | | has_vars (Abs (_,_,t)) = has_vars t | |
| 94 | | has_vars (f$t) = has_vars f orelse has_vars t | |
| 95 | | has_vars _ = false; | |
| 96 | ||
| 97 | (*Counting of primitive inferences is APPROXIMATE, as the step tactic | |
| 98 | may perform >1 inference*) | |
| 99 | ||
| 100 | (*Pruning of rigid ancestor to prevent backtracking*) | |
| 23178 | 101 | fun prune (new as (k', np':int, rgd', stq), qs) = | 
| 1588 | 102 | let fun prune_aux (qs, []) = new::qs | 
| 103 | | prune_aux (qs, (k,np,rgd,q)::rqs) = | |
| 23178 | 104 | if np'+1 = np andalso rgd then | 
| 105 | (if !trace_DEPTH_FIRST then | |
| 106 |                        tracing ("Pruning " ^
 | |
| 107 | string_of_int (1+length rqs) ^ " levels") | |
| 108 | else (); | |
| 109 | (*Use OLD k: zero-cost solution; see Stickel, p 365*) | |
| 110 | (k, np', rgd', stq) :: qs) | |
| 111 | else prune_aux ((k,np,rgd,q)::qs, rqs) | |
| 1588 | 112 | fun take ([], rqs) = ([], rqs) | 
| 23178 | 113 | | take (arg as ((k,np,rgd,stq)::qs, rqs)) = | 
| 114 | if np' < np then take (qs, (k,np,rgd,stq)::rqs) | |
| 115 | else arg | |
| 1588 | 116 | in prune_aux (take (qs, [])) end; | 
| 117 | ||
| 118 | ||
| 119 | (*Depth-first iterative deepening search for a state that satisfies satp | |
| 120 | tactic tac0 sets up the initial goal queue, while tac1 searches it. | |
| 121 | The solution sequence is redundant: the cutoff heuristic makes it impossible | |
| 122 | to suppress solutions arising from earlier searches, as the accumulated cost | |
| 123 | (k) can be wrong.*) | |
| 38802 
a925c0ee42f7
clarified iter_deepen_limit vs meson (cf. 7c5896919eb8) -- eliminated global ref;
 wenzelm parents: 
35408diff
changeset | 124 | fun THEN_ITER_DEEPEN lim tac0 satp tac1 = traced_tac (fn st => | 
| 32738 | 125 | let val countr = Unsynchronized.ref 0 | 
| 1588 | 126 | and tf = tracify trace_DEPTH_FIRST (tac1 1) | 
| 127 | and qs0 = tac0 st | |
| 128 | (*bnd = depth bound; inc = estimate of increment required next*) | |
| 23178 | 129 | fun depth (bnd,inc) [] = | 
| 38802 
a925c0ee42f7
clarified iter_deepen_limit vs meson (cf. 7c5896919eb8) -- eliminated global ref;
 wenzelm parents: 
35408diff
changeset | 130 | if bnd > lim then | 
| 23178 | 131 | (tracing (string_of_int (!countr) ^ | 
| 132 | " inferences so far. Giving up at " ^ string_of_int bnd); | |
| 133 | NONE) | |
| 22025 
7c5896919eb8
Introduction of a bound on DEPTH_ITER, to prevent the meson method from running forever
 paulson parents: 
20852diff
changeset | 134 | else | 
| 23178 | 135 | (tracing (string_of_int (!countr) ^ | 
| 136 | " inferences so far. Searching to depth " ^ | |
| 137 | string_of_int bnd); | |
| 138 | (*larger increments make it run slower for the hard problems*) | |
| 139 | depth (bnd+inc, 10)) [(0, 1, false, qs0)] | |
| 1588 | 140 | | depth (bnd,inc) ((k,np,rgd,q)::qs) = | 
| 23178 | 141 | if k>=bnd then depth (bnd,inc) qs | 
| 1588 | 142 | else | 
| 32738 | 143 | case (Unsynchronized.inc countr; | 
| 23178 | 144 | if !trace_DEPTH_FIRST then | 
| 145 | tracing (string_of_int np ^ implode (map (fn _ => "*") qs)) | |
| 146 | else (); | |
| 147 | Seq.pull q) of | |
| 148 | NONE => depth (bnd,inc) qs | |
| 149 | | SOME(st,stq) => | |
| 150 | if satp st (*solution!*) | |
| 151 | then SOME(st, Seq.make | |
| 152 | (fn()=> depth (bnd,inc) ((k,np,rgd,stq)::qs))) | |
| 1588 | 153 | |
| 23178 | 154 | else | 
| 1588 | 155 | let val np' = nprems_of st | 
| 23178 | 156 | (*rgd' calculation assumes tactic operates on subgoal 1*) | 
| 1588 | 157 | val rgd' = not (has_vars (hd (prems_of st))) | 
| 158 | val k' = k+np'-np+1 (*difference in # of subgoals, +1*) | |
| 23178 | 159 | in if k'+np' >= bnd | 
| 160 | then depth (bnd, Int.min(inc, k'+np'+1-bnd)) qs | |
| 161 | else if np' < np (*solved a subgoal; prune rigid ancestors*) | |
| 162 | then depth (bnd,inc) | |
| 163 | (prune ((k', np', rgd', tf st), (k,np,rgd,stq) :: qs)) | |
| 164 | else depth (bnd,inc) ((k', np', rgd', tf st) :: | |
| 165 | (k,np,rgd,stq) :: qs) | |
| 166 | end | |
| 1588 | 167 | in depth (0,5) [] end); | 
| 168 | ||
| 38802 
a925c0ee42f7
clarified iter_deepen_limit vs meson (cf. 7c5896919eb8) -- eliminated global ref;
 wenzelm parents: 
35408diff
changeset | 169 | fun ITER_DEEPEN lim = THEN_ITER_DEEPEN lim all_tac; | 
| 1588 | 170 | |
| 171 | ||
| 2869 
acee08856cc9
DEEPEN now takes an upper bound for terminating searches
 paulson parents: 
2672diff
changeset | 172 | (*Simple iterative deepening tactical. It merely "deepens" any search tactic | 
| 
acee08856cc9
DEEPEN now takes an upper bound for terminating searches
 paulson parents: 
2672diff
changeset | 173 | using increment "inc" up to limit "lim". *) | 
| 33335 
1e189f96c393
DEEPEN: less aggressive tracing, subject to trace_DEEPEN;
 wenzelm parents: 
32940diff
changeset | 174 | val trace_DEEPEN = Unsynchronized.ref false; | 
| 
1e189f96c393
DEEPEN: less aggressive tracing, subject to trace_DEEPEN;
 wenzelm parents: 
32940diff
changeset | 175 | |
| 38802 
a925c0ee42f7
clarified iter_deepen_limit vs meson (cf. 7c5896919eb8) -- eliminated global ref;
 wenzelm parents: 
35408diff
changeset | 176 | fun DEEPEN (inc, lim) tacf m i = | 
| 33380 
cd6023a9a922
DEEPEN: all tracing is subject to trace_DEEPEN (NB: Proof General tends to "popup" tracing output);
 wenzelm parents: 
33335diff
changeset | 177 | let | 
| 
cd6023a9a922
DEEPEN: all tracing is subject to trace_DEEPEN (NB: Proof General tends to "popup" tracing output);
 wenzelm parents: 
33335diff
changeset | 178 | fun dpn m st = | 
| 
cd6023a9a922
DEEPEN: all tracing is subject to trace_DEEPEN (NB: Proof General tends to "popup" tracing output);
 wenzelm parents: 
33335diff
changeset | 179 | st |> | 
| 
cd6023a9a922
DEEPEN: all tracing is subject to trace_DEEPEN (NB: Proof General tends to "popup" tracing output);
 wenzelm parents: 
33335diff
changeset | 180 | (if has_fewer_prems i st then no_tac | 
| 38802 
a925c0ee42f7
clarified iter_deepen_limit vs meson (cf. 7c5896919eb8) -- eliminated global ref;
 wenzelm parents: 
35408diff
changeset | 181 | else if m > lim then | 
| 33380 
cd6023a9a922
DEEPEN: all tracing is subject to trace_DEEPEN (NB: Proof General tends to "popup" tracing output);
 wenzelm parents: 
33335diff
changeset | 182 | (if !trace_DEEPEN then tracing "Search depth limit exceeded: giving up" else (); | 
| 
cd6023a9a922
DEEPEN: all tracing is subject to trace_DEEPEN (NB: Proof General tends to "popup" tracing output);
 wenzelm parents: 
33335diff
changeset | 183 | no_tac) | 
| 
cd6023a9a922
DEEPEN: all tracing is subject to trace_DEEPEN (NB: Proof General tends to "popup" tracing output);
 wenzelm parents: 
33335diff
changeset | 184 | else | 
| 
cd6023a9a922
DEEPEN: all tracing is subject to trace_DEEPEN (NB: Proof General tends to "popup" tracing output);
 wenzelm parents: 
33335diff
changeset | 185 |           (if !trace_DEEPEN then tracing ("Search depth = " ^ string_of_int m) else ();
 | 
| 
cd6023a9a922
DEEPEN: all tracing is subject to trace_DEEPEN (NB: Proof General tends to "popup" tracing output);
 wenzelm parents: 
33335diff
changeset | 186 | tacf m i ORELSE dpn (m+inc))) | 
| 2869 
acee08856cc9
DEEPEN now takes an upper bound for terminating searches
 paulson parents: 
2672diff
changeset | 187 | in dpn m end; | 
| 23178 | 188 | |
| 32940 | 189 | |
| 1588 | 190 | (*** Best-first search ***) | 
| 191 | ||
| 32940 | 192 | (*total ordering on theorems, allowing duplicates to be found*) | 
| 193 | structure Thm_Heap = Heap | |
| 194 | ( | |
| 195 | type elem = int * thm; | |
| 35408 | 196 | val ord = prod_ord int_ord (Term_Ord.term_ord o pairself Thm.prop_of); | 
| 32940 | 197 | ); | 
| 198 | ||
| 32738 | 199 | val trace_BEST_FIRST = Unsynchronized.ref false; | 
| 1588 | 200 | |
| 201 | (*For creating output sequence*) | |
| 15531 | 202 | fun some_of_list [] = NONE | 
| 203 | | some_of_list (x::l) = SOME (x, Seq.make (fn () => some_of_list l)); | |
| 1588 | 204 | |
| 9094 | 205 | (*Check for and delete duplicate proof states*) | 
| 32940 | 206 | fun delete_all_min prf heap = | 
| 207 | if Thm_Heap.is_empty heap then heap | |
| 208 | else if Thm.eq_thm (prf, #2 (Thm_Heap.min heap)) | |
| 209 | then delete_all_min prf (Thm_Heap.delete_min heap) | |
| 210 | else heap; | |
| 1588 | 211 | |
| 212 | (*Best-first search for a state that satisfies satp (incl initial state) | |
| 213 | Function sizef estimates size of problem remaining (smaller means better). | |
| 214 | tactic tac0 sets up the initial priority queue, while tac1 searches it. *) | |
| 23178 | 215 | fun THEN_BEST_FIRST tac0 (satp, sizef) tac1 = | 
| 1588 | 216 | let val tac = tracify trace_BEST_FIRST tac1 | 
| 217 | fun pairsize th = (sizef th, th); | |
| 9094 | 218 | fun bfs (news,nprf_heap) = | 
| 23178 | 219 | (case List.partition satp news of | 
| 32940 | 220 | ([],nonsats) => next(fold_rev Thm_Heap.insert (map pairsize nonsats) nprf_heap) | 
| 23178 | 221 | | (sats,_) => some_of_list sats) | 
| 9094 | 222 | and next nprf_heap = | 
| 32940 | 223 | if Thm_Heap.is_empty nprf_heap then NONE | 
| 23178 | 224 | else | 
| 32940 | 225 | let val (n,prf) = Thm_Heap.min nprf_heap | 
| 23178 | 226 | in if !trace_BEST_FIRST | 
| 227 |                then tracing("state size = " ^ string_of_int n)
 | |
| 1588 | 228 | else (); | 
| 23178 | 229 | bfs (Seq.list_of (tac prf), | 
| 32940 | 230 | delete_all_min prf (Thm_Heap.delete_min nprf_heap)) | 
| 9094 | 231 | end | 
| 32940 | 232 | fun btac st = bfs (Seq.list_of (tac0 st), Thm_Heap.empty) | 
| 1588 | 233 | in traced_tac btac end; | 
| 234 | ||
| 235 | (*Ordinary best-first search, with no initial tactic*) | |
| 236 | val BEST_FIRST = THEN_BEST_FIRST all_tac; | |
| 237 | ||
| 23178 | 238 | (*Breadth-first search to satisfy satpred (including initial state) | 
| 1588 | 239 | SLOW -- SHOULD NOT USE APPEND!*) | 
| 23178 | 240 | fun gen_BREADTH_FIRST message satpred (tac:tactic) = | 
| 4270 | 241 | let val tacf = Seq.list_of o tac; | 
| 1588 | 242 | fun bfs prfs = | 
| 23178 | 243 | (case List.partition satpred prfs of | 
| 244 | ([],[]) => [] | |
| 245 | | ([],nonsats) => | |
| 246 |                   (message("breadth=" ^ string_of_int(length nonsats));
 | |
| 247 | bfs (maps tacf nonsats)) | |
| 248 | | (sats,_) => sats) | |
| 4270 | 249 | in (fn st => Seq.of_list (bfs [st])) end; | 
| 1588 | 250 | |
| 12262 | 251 | val BREADTH_FIRST = gen_BREADTH_FIRST tracing; | 
| 5693 | 252 | val QUIET_BREADTH_FIRST = gen_BREADTH_FIRST (K ()); | 
| 253 | ||
| 1588 | 254 | |
| 23178 | 255 | (* Author: Norbert Voelker, FernUniversitaet Hagen | 
| 1588 | 256 | Remarks: Implementation of A*-like proof procedure by modification | 
| 23178 | 257 | of the existing code for BEST_FIRST and best_tac so that the | 
| 258 | current level of search is taken into account. | |
| 259 | *) | |
| 1588 | 260 | |
| 261 | (*Insertion into priority queue of states, marked with level *) | |
| 262 | fun insert_with_level (lnth: int*int*thm, []) = [lnth] | |
| 23178 | 263 | | insert_with_level ((l,m,th), (l',n,th')::nths) = | 
| 1588 | 264 | if n<m then (l',n,th') :: insert_with_level ((l,m,th), nths) | 
| 22360 
26ead7ed4f4b
moved eq_thm etc. to structure Thm in Pure/more_thm.ML;
 wenzelm parents: 
22025diff
changeset | 265 | else if n=m andalso Thm.eq_thm(th,th') | 
| 1588 | 266 | then (l',n,th')::nths | 
| 267 | else (l,m,th)::(l',n,th')::nths; | |
| 268 | ||
| 269 | (*For creating output sequence*) | |
| 15531 | 270 | fun some_of_list [] = NONE | 
| 271 | | some_of_list (x::l) = SOME (x, Seq.make (fn () => some_of_list l)); | |
| 1588 | 272 | |
| 32738 | 273 | val trace_ASTAR = Unsynchronized.ref false; | 
| 1588 | 274 | |
| 23178 | 275 | fun THEN_ASTAR tac0 (satp, costf) tac1 = | 
| 276 | let val tf = tracify trace_ASTAR tac1; | |
| 1588 | 277 | fun bfs (news,nprfs,level) = | 
| 278 | let fun cost thm = (level, costf level thm, thm) | |
| 15570 | 279 | in (case List.partition satp news of | 
| 23178 | 280 | ([],nonsats) | 
| 281 | => next (List.foldr insert_with_level nprfs (map cost nonsats)) | |
| 1588 | 282 | | (sats,_) => some_of_list sats) | 
| 23178 | 283 | end and | 
| 15531 | 284 | next [] = NONE | 
| 1588 | 285 | | next ((level,n,prf)::nprfs) = | 
| 23178 | 286 | (if !trace_ASTAR | 
| 12262 | 287 |                then tracing("level = " ^ string_of_int level ^
 | 
| 23178 | 288 | " cost = " ^ string_of_int n ^ | 
| 289 | " queue length =" ^ string_of_int (length nprfs)) | |
| 1588 | 290 | else (); | 
| 4270 | 291 | bfs (Seq.list_of (tf prf), nprfs,level+1)) | 
| 292 | fun tf st = bfs (Seq.list_of (tac0 st), [], 0) | |
| 1588 | 293 | in traced_tac tf end; | 
| 294 | ||
| 295 | (*Ordinary ASTAR, with no initial tactic*) | |
| 296 | val ASTAR = THEN_ASTAR all_tac; | |
| 297 | ||
| 298 | end; | |
| 299 | ||
| 300 | open Search; |