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