author | nipkow |
Mon, 09 Sep 1996 18:53:41 +0200 | |
changeset 1966 | 9e626f86e335 |
parent 1955 | 5309416236b6 |
child 1975 | eec67972b1bf |
permissions | -rw-r--r-- |
1460 | 1 |
(* Title: tactic |
0 | 2 |
ID: $Id$ |
1460 | 3 |
Author: Lawrence C Paulson, Cambridge University Computer Laboratory |
0 | 4 |
Copyright 1991 University of Cambridge |
5 |
||
6 |
Tactics |
|
7 |
*) |
|
8 |
||
9 |
signature TACTIC = |
|
1501 | 10 |
sig |
0 | 11 |
val ares_tac: thm list -> int -> tactic |
12 |
val asm_rewrite_goal_tac: |
|
214
ed6a3e2b1a33
added new parameter to the simplification tactics which indicates if
nipkow
parents:
191
diff
changeset
|
13 |
bool*bool -> (meta_simpset -> tactic) -> meta_simpset -> int -> tactic |
0 | 14 |
val assume_tac: int -> tactic |
15 |
val atac: int ->tactic |
|
670 | 16 |
val bimatch_from_nets_tac: |
1501 | 17 |
(int*(bool*thm)) Net.net * (int*(bool*thm)) Net.net -> int -> tactic |
0 | 18 |
val bimatch_tac: (bool*thm)list -> int -> tactic |
670 | 19 |
val biresolve_from_nets_tac: |
1501 | 20 |
(int*(bool*thm)) Net.net * (int*(bool*thm)) Net.net -> int -> tactic |
0 | 21 |
val biresolve_tac: (bool*thm)list -> int -> tactic |
1501 | 22 |
val build_net: thm list -> (int*thm) Net.net |
23 |
val build_netpair: (int*(bool*thm)) Net.net * (int*(bool*thm)) Net.net -> |
|
24 |
(bool*thm)list -> (int*(bool*thm)) Net.net * (int*(bool*thm)) Net.net |
|
0 | 25 |
val compose_inst_tac: (string*string)list -> (bool*thm*int) -> int -> tactic |
26 |
val compose_tac: (bool * thm * int) -> int -> tactic |
|
1966 | 27 |
val cterm_lift_inst_rule: |
28 |
thm * int * (indexname*ctyp)list * (term*cterm)list * thm -> thm |
|
0 | 29 |
val cut_facts_tac: thm list -> int -> tactic |
270
d506ea00c825
tactic/make_elim_preserve: recoded to avoid using lift_inst_rule. Instead
lcp
parents:
230
diff
changeset
|
30 |
val cut_inst_tac: (string*string)list -> thm -> int -> tactic |
0 | 31 |
val dmatch_tac: thm list -> int -> tactic |
32 |
val dresolve_tac: thm list -> int -> tactic |
|
33 |
val dres_inst_tac: (string*string)list -> thm -> int -> tactic |
|
34 |
val dtac: thm -> int ->tactic |
|
35 |
val etac: thm -> int ->tactic |
|
36 |
val eq_assume_tac: int -> tactic |
|
37 |
val ematch_tac: thm list -> int -> tactic |
|
38 |
val eresolve_tac: thm list -> int -> tactic |
|
39 |
val eres_inst_tac: (string*string)list -> thm -> int -> tactic |
|
40 |
val filter_thms: (term*term->bool) -> int*term*thm list -> thm list |
|
41 |
val filt_resolve_tac: thm list -> int -> int -> tactic |
|
42 |
val flexflex_tac: tactic |
|
43 |
val fold_goals_tac: thm list -> tactic |
|
44 |
val fold_tac: thm list -> tactic |
|
45 |
val forward_tac: thm list -> int -> tactic |
|
46 |
val forw_inst_tac: (string*string)list -> thm -> int -> tactic |
|
947 | 47 |
val freeze: thm -> thm |
1077
c2df11ae8b55
Renamed insert_kbrl to insert_tagged_brl and exported it. Now
lcp
parents:
952
diff
changeset
|
48 |
val insert_tagged_brl: ('a*(bool*thm)) * |
1501 | 49 |
(('a*(bool*thm))Net.net * ('a*(bool*thm))Net.net) -> |
50 |
('a*(bool*thm))Net.net * ('a*(bool*thm))Net.net |
|
1801 | 51 |
val delete_tagged_brl: (bool*thm) * |
52 |
((int*(bool*thm))Net.net * (int*(bool*thm))Net.net) -> |
|
53 |
(int*(bool*thm))Net.net * (int*(bool*thm))Net.net |
|
0 | 54 |
val is_fact: thm -> bool |
55 |
val lessb: (bool * thm) * (bool * thm) -> bool |
|
56 |
val lift_inst_rule: thm * int * (string*string)list * thm -> thm |
|
57 |
val make_elim: thm -> thm |
|
1501 | 58 |
val match_from_net_tac: (int*thm) Net.net -> int -> tactic |
0 | 59 |
val match_tac: thm list -> int -> tactic |
60 |
val metacut_tac: thm -> int -> tactic |
|
61 |
val net_bimatch_tac: (bool*thm) list -> int -> tactic |
|
62 |
val net_biresolve_tac: (bool*thm) list -> int -> tactic |
|
63 |
val net_match_tac: thm list -> int -> tactic |
|
64 |
val net_resolve_tac: thm list -> int -> tactic |
|
65 |
val PRIMITIVE: (thm -> thm) -> tactic |
|
66 |
val PRIMSEQ: (thm -> thm Sequence.seq) -> tactic |
|
67 |
val prune_params_tac: tactic |
|
68 |
val rename_tac: string -> int -> tactic |
|
69 |
val rename_last_tac: string -> string list -> int -> tactic |
|
1501 | 70 |
val resolve_from_net_tac: (int*thm) Net.net -> int -> tactic |
0 | 71 |
val resolve_tac: thm list -> int -> tactic |
72 |
val res_inst_tac: (string*string)list -> thm -> int -> tactic |
|
73 |
val rewrite_goals_tac: thm list -> tactic |
|
74 |
val rewrite_tac: thm list -> tactic |
|
75 |
val rewtac: thm -> tactic |
|
1209 | 76 |
val rotate_tac: int -> int -> tactic |
0 | 77 |
val rtac: thm -> int -> tactic |
78 |
val rule_by_tactic: tactic -> thm -> thm |
|
439 | 79 |
val subgoal_tac: string -> int -> tactic |
80 |
val subgoals_tac: string list -> int -> tactic |
|
0 | 81 |
val subgoals_of_brl: bool * thm -> int |
1955
5309416236b6
Added thin_tac to signature; previous change was useless
paulson
parents:
1951
diff
changeset
|
82 |
val thin_tac: string -> int -> tactic |
0 | 83 |
val trace_goalno_tac: (int -> tactic) -> int -> tactic |
1501 | 84 |
end; |
0 | 85 |
|
86 |
||
1501 | 87 |
structure Tactic : TACTIC = |
0 | 88 |
struct |
89 |
||
1501 | 90 |
(*Discover which goal is chosen: SOMEGOAL(trace_goalno_tac tac) *) |
91 |
fun trace_goalno_tac tac i st = |
|
92 |
case Sequence.pull(tac i st) of |
|
1460 | 93 |
None => Sequence.null |
0 | 94 |
| seqcell => (prs("Subgoal " ^ string_of_int i ^ " selected\n"); |
1501 | 95 |
Sequence.seqof(fn()=> seqcell)); |
0 | 96 |
|
97 |
fun string_of (a,0) = a |
|
98 |
| string_of (a,i) = a ^ "_" ^ string_of_int i; |
|
99 |
||
947 | 100 |
(*convert all Vars in a theorem to Frees*) |
0 | 101 |
fun freeze th = |
102 |
let val fth = freezeT th |
|
103 |
val {prop,sign,...} = rep_thm fth |
|
104 |
fun mk_inst (Var(v,T)) = |
|
1460 | 105 |
(cterm_of sign (Var(v,T)), |
106 |
cterm_of sign (Free(string_of v, T))) |
|
0 | 107 |
val insts = map mk_inst (term_vars prop) |
108 |
in instantiate ([],insts) fth end; |
|
109 |
||
110 |
(*Makes a rule by applying a tactic to an existing rule*) |
|
1501 | 111 |
fun rule_by_tactic tac rl = |
112 |
case Sequence.pull(tac (freeze (standard rl))) of |
|
1460 | 113 |
None => raise THM("rule_by_tactic", 0, [rl]) |
0 | 114 |
| Some(rl',_) => standard rl'; |
115 |
||
116 |
(*** Basic tactics ***) |
|
117 |
||
118 |
(*Makes a tactic whose effect on a state is given by thmfun: thm->thm seq.*) |
|
1501 | 119 |
fun PRIMSEQ thmfun st = thmfun st handle THM _ => Sequence.null; |
0 | 120 |
|
121 |
(*Makes a tactic whose effect on a state is given by thmfun: thm->thm.*) |
|
122 |
fun PRIMITIVE thmfun = PRIMSEQ (Sequence.single o thmfun); |
|
123 |
||
124 |
(*** The following fail if the goal number is out of range: |
|
125 |
thus (REPEAT (resolve_tac rules i)) stops once subgoal i disappears. *) |
|
126 |
||
127 |
(*Solve subgoal i by assumption*) |
|
128 |
fun assume_tac i = PRIMSEQ (assumption i); |
|
129 |
||
130 |
(*Solve subgoal i by assumption, using no unification*) |
|
131 |
fun eq_assume_tac i = PRIMITIVE (eq_assumption i); |
|
132 |
||
133 |
(** Resolution/matching tactics **) |
|
134 |
||
135 |
(*The composition rule/state: no lifting or var renaming. |
|
136 |
The arg = (bires_flg, orule, m) ; see bicompose for explanation.*) |
|
137 |
fun compose_tac arg i = PRIMSEQ (bicompose false arg i); |
|
138 |
||
139 |
(*Converts a "destruct" rule like P&Q==>P to an "elimination" rule |
|
140 |
like [| P&Q; P==>R |] ==> R *) |
|
141 |
fun make_elim rl = zero_var_indexes (rl RS revcut_rl); |
|
142 |
||
143 |
(*Attack subgoal i by resolution, using flags to indicate elimination rules*) |
|
144 |
fun biresolve_tac brules i = PRIMSEQ (biresolution false brules i); |
|
145 |
||
146 |
(*Resolution: the simple case, works for introduction rules*) |
|
147 |
fun resolve_tac rules = biresolve_tac (map (pair false) rules); |
|
148 |
||
149 |
(*Resolution with elimination rules only*) |
|
150 |
fun eresolve_tac rules = biresolve_tac (map (pair true) rules); |
|
151 |
||
152 |
(*Forward reasoning using destruction rules.*) |
|
153 |
fun forward_tac rls = resolve_tac (map make_elim rls) THEN' assume_tac; |
|
154 |
||
155 |
(*Like forward_tac, but deletes the assumption after use.*) |
|
156 |
fun dresolve_tac rls = eresolve_tac (map make_elim rls); |
|
157 |
||
158 |
(*Shorthand versions: for resolution with a single theorem*) |
|
1460 | 159 |
fun rtac rl = resolve_tac [rl]; |
160 |
fun etac rl = eresolve_tac [rl]; |
|
161 |
fun dtac rl = dresolve_tac [rl]; |
|
0 | 162 |
val atac = assume_tac; |
163 |
||
164 |
(*Use an assumption or some rules ... A popular combination!*) |
|
165 |
fun ares_tac rules = assume_tac ORELSE' resolve_tac rules; |
|
166 |
||
167 |
(*Matching tactics -- as above, but forbid updating of state*) |
|
168 |
fun bimatch_tac brules i = PRIMSEQ (biresolution true brules i); |
|
169 |
fun match_tac rules = bimatch_tac (map (pair false) rules); |
|
170 |
fun ematch_tac rules = bimatch_tac (map (pair true) rules); |
|
171 |
fun dmatch_tac rls = ematch_tac (map make_elim rls); |
|
172 |
||
173 |
(*Smash all flex-flex disagreement pairs in the proof state.*) |
|
174 |
val flexflex_tac = PRIMSEQ flexflex_rule; |
|
175 |
||
176 |
(*Lift and instantiate a rule wrt the given state and subgoal number *) |
|
1501 | 177 |
fun lift_inst_rule (st, i, sinsts, rule) = |
178 |
let val {maxidx,sign,...} = rep_thm st |
|
179 |
val (_, _, Bi, _) = dest_state(st,i) |
|
1460 | 180 |
val params = Logic.strip_params Bi (*params of subgoal i*) |
0 | 181 |
val params = rev(rename_wrt_term Bi params) (*as they are printed*) |
182 |
val paramTs = map #2 params |
|
183 |
and inc = maxidx+1 |
|
184 |
fun liftvar (Var ((a,j), T)) = Var((a, j+inc), paramTs---> incr_tvar inc T) |
|
185 |
| liftvar t = raise TERM("Variable expected", [t]); |
|
186 |
fun liftterm t = list_abs_free (params, |
|
1460 | 187 |
Logic.incr_indexes(paramTs,inc) t) |
0 | 188 |
(*Lifts instantiation pair over params*) |
230 | 189 |
fun liftpair (cv,ct) = (cterm_fun liftvar cv, cterm_fun liftterm ct) |
0 | 190 |
fun lifttvar((a,i),ctyp) = |
1460 | 191 |
let val {T,sign} = rep_ctyp ctyp |
192 |
in ((a,i+inc), ctyp_of sign (incr_tvar inc T)) end |
|
1501 | 193 |
val rts = types_sorts rule and (types,sorts) = types_sorts st |
0 | 194 |
fun types'(a,~1) = (case assoc(params,a) of None => types(a,~1) | sm => sm) |
195 |
| types'(ixn) = types ixn; |
|
949
83c588d6fee9
Changed treatment of during type inference internally generated type
nipkow
parents:
947
diff
changeset
|
196 |
val used = add_term_tvarnames |
1501 | 197 |
(#prop(rep_thm st) $ #prop(rep_thm rule),[]) |
949
83c588d6fee9
Changed treatment of during type inference internally generated type
nipkow
parents:
947
diff
changeset
|
198 |
val (Tinsts,insts) = read_insts sign rts (types',sorts) used sinsts |
0 | 199 |
in instantiate (map lifttvar Tinsts, map liftpair insts) |
1501 | 200 |
(lift_rule (st,i) rule) |
0 | 201 |
end; |
202 |
||
1966 | 203 |
(*Like lift_inst_rule but takes cterms, not strings. |
204 |
The cterms must be functions of the parameters of the subgoal, |
|
205 |
i.e. they are assumed to be lifted already! |
|
206 |
Also: types of Vars must be fully instantiated already *) |
|
207 |
fun cterm_lift_inst_rule (st, i, Tinsts, insts, rule) = |
|
208 |
let val {maxidx,sign,...} = rep_thm st |
|
209 |
val (_, _, Bi, _) = dest_state(st,i) |
|
210 |
val params = Logic.strip_params Bi (*params of subgoal i*) |
|
211 |
val paramTs = map #2 params |
|
212 |
and inc = maxidx+1 |
|
213 |
fun liftvar (Var ((a,j), T)) = |
|
214 |
cterm_of sign (Var((a, j+inc), paramTs---> incr_tvar inc T)) |
|
215 |
| liftvar t = raise TERM("Variable expected", [t]); |
|
216 |
(*lift only Var, not cterm! Must to be lifted already*) |
|
217 |
fun liftpair (v,ct) = (liftvar v, ct) |
|
218 |
fun lifttvar((a,i),ctyp) = |
|
219 |
let val {T,sign} = rep_ctyp ctyp |
|
220 |
in ((a,i+inc), ctyp_of sign (incr_tvar inc T)) end |
|
221 |
in instantiate (map lifttvar Tinsts, map liftpair insts) |
|
222 |
(lift_rule (st,i) rule) |
|
223 |
end; |
|
0 | 224 |
|
225 |
(*** Resolve after lifting and instantation; may refer to parameters of the |
|
226 |
subgoal. Fails if "i" is out of range. ***) |
|
227 |
||
228 |
(*compose version: arguments are as for bicompose.*) |
|
229 |
fun compose_inst_tac sinsts (bires_flg, rule, nsubgoal) i = |
|
1501 | 230 |
STATE ( fn st => |
231 |
compose_tac (bires_flg, lift_inst_rule (st, i, sinsts, rule), |
|
1460 | 232 |
nsubgoal) i |
233 |
handle TERM (msg,_) => (writeln msg; no_tac) |
|
234 |
| THM (msg,_,_) => (writeln msg; no_tac) ); |
|
0 | 235 |
|
761 | 236 |
(*"Resolve" version. Note: res_inst_tac cannot behave sensibly if the |
237 |
terms that are substituted contain (term or type) unknowns from the |
|
238 |
goal, because it is unable to instantiate goal unknowns at the same time. |
|
239 |
||
952
9e10962866b0
Removed an old bug which made some simultaneous instantiations fail if they
nipkow
parents:
949
diff
changeset
|
240 |
The type checker is instructed not to freezes flexible type vars that |
9e10962866b0
Removed an old bug which made some simultaneous instantiations fail if they
nipkow
parents:
949
diff
changeset
|
241 |
were introduced during type inference and still remain in the term at the |
9e10962866b0
Removed an old bug which made some simultaneous instantiations fail if they
nipkow
parents:
949
diff
changeset
|
242 |
end. This increases flexibility but can introduce schematic type vars in |
9e10962866b0
Removed an old bug which made some simultaneous instantiations fail if they
nipkow
parents:
949
diff
changeset
|
243 |
goals. |
761 | 244 |
*) |
0 | 245 |
fun res_inst_tac sinsts rule i = |
246 |
compose_inst_tac sinsts (false, rule, nprems_of rule) i; |
|
247 |
||
1501 | 248 |
(*eresolve elimination version*) |
0 | 249 |
fun eres_inst_tac sinsts rule i = |
250 |
compose_inst_tac sinsts (true, rule, nprems_of rule) i; |
|
251 |
||
270
d506ea00c825
tactic/make_elim_preserve: recoded to avoid using lift_inst_rule. Instead
lcp
parents:
230
diff
changeset
|
252 |
(*For forw_inst_tac and dres_inst_tac. Preserve Var indexes of rl; |
d506ea00c825
tactic/make_elim_preserve: recoded to avoid using lift_inst_rule. Instead
lcp
parents:
230
diff
changeset
|
253 |
increment revcut_rl instead.*) |
0 | 254 |
fun make_elim_preserve rl = |
270
d506ea00c825
tactic/make_elim_preserve: recoded to avoid using lift_inst_rule. Instead
lcp
parents:
230
diff
changeset
|
255 |
let val {maxidx,...} = rep_thm rl |
922
196ca0973a6d
added CPure (curried functions) and ProtoPure (ancestor of Pure and CPure)
clasohm
parents:
761
diff
changeset
|
256 |
fun cvar ixn = cterm_of Sign.proto_pure (Var(ixn,propT)); |
270
d506ea00c825
tactic/make_elim_preserve: recoded to avoid using lift_inst_rule. Instead
lcp
parents:
230
diff
changeset
|
257 |
val revcut_rl' = |
1460 | 258 |
instantiate ([], [(cvar("V",0), cvar("V",maxidx+1)), |
259 |
(cvar("W",0), cvar("W",maxidx+1))]) revcut_rl |
|
0 | 260 |
val arg = (false, rl, nprems_of rl) |
261 |
val [th] = Sequence.list_of_s (bicompose false arg 1 revcut_rl') |
|
262 |
in th end |
|
263 |
handle Bind => raise THM("make_elim_preserve", 1, [rl]); |
|
264 |
||
270
d506ea00c825
tactic/make_elim_preserve: recoded to avoid using lift_inst_rule. Instead
lcp
parents:
230
diff
changeset
|
265 |
(*instantiate and cut -- for a FACT, anyway...*) |
d506ea00c825
tactic/make_elim_preserve: recoded to avoid using lift_inst_rule. Instead
lcp
parents:
230
diff
changeset
|
266 |
fun cut_inst_tac sinsts rule = res_inst_tac sinsts (make_elim_preserve rule); |
0 | 267 |
|
270
d506ea00c825
tactic/make_elim_preserve: recoded to avoid using lift_inst_rule. Instead
lcp
parents:
230
diff
changeset
|
268 |
(*forward tactic applies a RULE to an assumption without deleting it*) |
d506ea00c825
tactic/make_elim_preserve: recoded to avoid using lift_inst_rule. Instead
lcp
parents:
230
diff
changeset
|
269 |
fun forw_inst_tac sinsts rule = cut_inst_tac sinsts rule THEN' assume_tac; |
d506ea00c825
tactic/make_elim_preserve: recoded to avoid using lift_inst_rule. Instead
lcp
parents:
230
diff
changeset
|
270 |
|
d506ea00c825
tactic/make_elim_preserve: recoded to avoid using lift_inst_rule. Instead
lcp
parents:
230
diff
changeset
|
271 |
(*dresolve tactic applies a RULE to replace an assumption*) |
0 | 272 |
fun dres_inst_tac sinsts rule = eres_inst_tac sinsts (make_elim_preserve rule); |
273 |
||
1951 | 274 |
(*Deletion of an assumption*) |
275 |
fun thin_tac s = eres_inst_tac [("V",s)] thin_rl; |
|
276 |
||
270
d506ea00c825
tactic/make_elim_preserve: recoded to avoid using lift_inst_rule. Instead
lcp
parents:
230
diff
changeset
|
277 |
(*** Applications of cut_rl ***) |
0 | 278 |
|
279 |
(*Used by metacut_tac*) |
|
280 |
fun bires_cut_tac arg i = |
|
1460 | 281 |
resolve_tac [cut_rl] i THEN biresolve_tac arg (i+1) ; |
0 | 282 |
|
283 |
(*The conclusion of the rule gets assumed in subgoal i, |
|
284 |
while subgoal i+1,... are the premises of the rule.*) |
|
285 |
fun metacut_tac rule = bires_cut_tac [(false,rule)]; |
|
286 |
||
287 |
(*Recognizes theorems that are not rules, but simple propositions*) |
|
288 |
fun is_fact rl = |
|
289 |
case prems_of rl of |
|
1460 | 290 |
[] => true | _::_ => false; |
0 | 291 |
|
292 |
(*"Cut" all facts from theorem list into the goal as assumptions. *) |
|
293 |
fun cut_facts_tac ths i = |
|
294 |
EVERY (map (fn th => metacut_tac th i) (filter is_fact ths)); |
|
295 |
||
296 |
(*Introduce the given proposition as a lemma and subgoal*) |
|
297 |
fun subgoal_tac sprop = res_inst_tac [("psi", sprop)] cut_rl; |
|
298 |
||
439 | 299 |
(*Introduce a list of lemmas and subgoals*) |
300 |
fun subgoals_tac sprops = EVERY' (map subgoal_tac sprops); |
|
301 |
||
0 | 302 |
|
303 |
(**** Indexing and filtering of theorems ****) |
|
304 |
||
305 |
(*Returns the list of potentially resolvable theorems for the goal "prem", |
|
1460 | 306 |
using the predicate could(subgoal,concl). |
0 | 307 |
Resulting list is no longer than "limit"*) |
308 |
fun filter_thms could (limit, prem, ths) = |
|
309 |
let val pb = Logic.strip_assums_concl prem; (*delete assumptions*) |
|
310 |
fun filtr (limit, []) = [] |
|
1460 | 311 |
| filtr (limit, th::ths) = |
312 |
if limit=0 then [] |
|
313 |
else if could(pb, concl_of th) then th :: filtr(limit-1, ths) |
|
314 |
else filtr(limit,ths) |
|
0 | 315 |
in filtr(limit,ths) end; |
316 |
||
317 |
||
318 |
(*** biresolution and resolution using nets ***) |
|
319 |
||
320 |
(** To preserve the order of the rules, tag them with increasing integers **) |
|
321 |
||
322 |
(*insert tags*) |
|
323 |
fun taglist k [] = [] |
|
324 |
| taglist k (x::xs) = (k,x) :: taglist (k+1) xs; |
|
325 |
||
326 |
(*remove tags and suppress duplicates -- list is assumed sorted!*) |
|
327 |
fun untaglist [] = [] |
|
328 |
| untaglist [(k:int,x)] = [x] |
|
329 |
| untaglist ((k,x) :: (rest as (k',x')::_)) = |
|
330 |
if k=k' then untaglist rest |
|
331 |
else x :: untaglist rest; |
|
332 |
||
333 |
(*return list elements in original order*) |
|
334 |
val orderlist = untaglist o sort (fn(x,y)=> #1 x < #1 y); |
|
335 |
||
336 |
(*insert one tagged brl into the pair of nets*) |
|
1077
c2df11ae8b55
Renamed insert_kbrl to insert_tagged_brl and exported it. Now
lcp
parents:
952
diff
changeset
|
337 |
fun insert_tagged_brl (kbrl as (k,(eres,th)), (inet,enet)) = |
0 | 338 |
if eres then |
1460 | 339 |
case prems_of th of |
340 |
prem::_ => (inet, Net.insert_term ((prem,kbrl), enet, K false)) |
|
341 |
| [] => error"insert_tagged_brl: elimination rule with no premises" |
|
0 | 342 |
else (Net.insert_term ((concl_of th, kbrl), inet, K false), enet); |
343 |
||
344 |
(*build a pair of nets for biresolution*) |
|
670 | 345 |
fun build_netpair netpair brls = |
1077
c2df11ae8b55
Renamed insert_kbrl to insert_tagged_brl and exported it. Now
lcp
parents:
952
diff
changeset
|
346 |
foldr insert_tagged_brl (taglist 1 brls, netpair); |
0 | 347 |
|
1801 | 348 |
(*delete one kbrl from the pair of nets; |
349 |
we don't know the value of k, so we use 0 and ignore it in the comparison*) |
|
350 |
local |
|
351 |
fun eq_kbrl ((k,(eres,th)), (k',(eres',th'))) = eq_thm (th,th') |
|
352 |
in |
|
353 |
fun delete_tagged_brl (brl as (eres,th), (inet,enet)) = |
|
354 |
if eres then |
|
355 |
case prems_of th of |
|
356 |
prem::_ => (inet, Net.delete_term ((prem, (0,brl)), enet, eq_kbrl)) |
|
357 |
| [] => error"delete_brl: elimination rule with no premises" |
|
358 |
else (Net.delete_term ((concl_of th, (0,brl)), inet, eq_kbrl), enet); |
|
359 |
end; |
|
360 |
||
361 |
||
0 | 362 |
(*biresolution using a pair of nets rather than rules*) |
363 |
fun biresolution_from_nets_tac match (inet,enet) = |
|
364 |
SUBGOAL |
|
365 |
(fn (prem,i) => |
|
366 |
let val hyps = Logic.strip_assums_hyp prem |
|
367 |
and concl = Logic.strip_assums_concl prem |
|
368 |
val kbrls = Net.unify_term inet concl @ |
|
369 |
flat (map (Net.unify_term enet) hyps) |
|
370 |
in PRIMSEQ (biresolution match (orderlist kbrls) i) end); |
|
371 |
||
372 |
(*versions taking pre-built nets*) |
|
373 |
val biresolve_from_nets_tac = biresolution_from_nets_tac false; |
|
374 |
val bimatch_from_nets_tac = biresolution_from_nets_tac true; |
|
375 |
||
376 |
(*fast versions using nets internally*) |
|
670 | 377 |
val net_biresolve_tac = |
378 |
biresolve_from_nets_tac o build_netpair(Net.empty,Net.empty); |
|
379 |
||
380 |
val net_bimatch_tac = |
|
381 |
bimatch_from_nets_tac o build_netpair(Net.empty,Net.empty); |
|
0 | 382 |
|
383 |
(*** Simpler version for resolve_tac -- only one net, and no hyps ***) |
|
384 |
||
385 |
(*insert one tagged rl into the net*) |
|
386 |
fun insert_krl (krl as (k,th), net) = |
|
387 |
Net.insert_term ((concl_of th, krl), net, K false); |
|
388 |
||
389 |
(*build a net of rules for resolution*) |
|
390 |
fun build_net rls = |
|
391 |
foldr insert_krl (taglist 1 rls, Net.empty); |
|
392 |
||
393 |
(*resolution using a net rather than rules; pred supports filt_resolve_tac*) |
|
394 |
fun filt_resolution_from_net_tac match pred net = |
|
395 |
SUBGOAL |
|
396 |
(fn (prem,i) => |
|
397 |
let val krls = Net.unify_term net (Logic.strip_assums_concl prem) |
|
398 |
in |
|
1460 | 399 |
if pred krls |
0 | 400 |
then PRIMSEQ |
1460 | 401 |
(biresolution match (map (pair false) (orderlist krls)) i) |
0 | 402 |
else no_tac |
403 |
end); |
|
404 |
||
405 |
(*Resolve the subgoal using the rules (making a net) unless too flexible, |
|
406 |
which means more than maxr rules are unifiable. *) |
|
407 |
fun filt_resolve_tac rules maxr = |
|
408 |
let fun pred krls = length krls <= maxr |
|
409 |
in filt_resolution_from_net_tac false pred (build_net rules) end; |
|
410 |
||
411 |
(*versions taking pre-built nets*) |
|
412 |
val resolve_from_net_tac = filt_resolution_from_net_tac false (K true); |
|
413 |
val match_from_net_tac = filt_resolution_from_net_tac true (K true); |
|
414 |
||
415 |
(*fast versions using nets internally*) |
|
416 |
val net_resolve_tac = resolve_from_net_tac o build_net; |
|
417 |
val net_match_tac = match_from_net_tac o build_net; |
|
418 |
||
419 |
||
420 |
(*** For Natural Deduction using (bires_flg, rule) pairs ***) |
|
421 |
||
422 |
(*The number of new subgoals produced by the brule*) |
|
1077
c2df11ae8b55
Renamed insert_kbrl to insert_tagged_brl and exported it. Now
lcp
parents:
952
diff
changeset
|
423 |
fun subgoals_of_brl (true,rule) = nprems_of rule - 1 |
c2df11ae8b55
Renamed insert_kbrl to insert_tagged_brl and exported it. Now
lcp
parents:
952
diff
changeset
|
424 |
| subgoals_of_brl (false,rule) = nprems_of rule; |
0 | 425 |
|
426 |
(*Less-than test: for sorting to minimize number of new subgoals*) |
|
427 |
fun lessb (brl1,brl2) = subgoals_of_brl brl1 < subgoals_of_brl brl2; |
|
428 |
||
429 |
||
430 |
(*** Meta-Rewriting Tactics ***) |
|
431 |
||
432 |
fun result1 tacf mss thm = |
|
1501 | 433 |
case Sequence.pull(tacf mss thm) of |
0 | 434 |
None => None |
435 |
| Some(thm,_) => Some(thm); |
|
436 |
||
437 |
(*Rewrite subgoal i only *) |
|
214
ed6a3e2b1a33
added new parameter to the simplification tactics which indicates if
nipkow
parents:
191
diff
changeset
|
438 |
fun asm_rewrite_goal_tac mode prover_tac mss i = |
ed6a3e2b1a33
added new parameter to the simplification tactics which indicates if
nipkow
parents:
191
diff
changeset
|
439 |
PRIMITIVE(rewrite_goal_rule mode (result1 prover_tac) mss i); |
0 | 440 |
|
69
e7588b53d6b0
tactic/fold_tac,fold_goals_tac: now handle critical pairs on the
lcp
parents:
0
diff
changeset
|
441 |
(*Rewrite throughout proof state. *) |
e7588b53d6b0
tactic/fold_tac,fold_goals_tac: now handle critical pairs on the
lcp
parents:
0
diff
changeset
|
442 |
fun rewrite_tac defs = PRIMITIVE(rewrite_rule defs); |
0 | 443 |
|
444 |
(*Rewrite subgoals only, not main goal. *) |
|
69
e7588b53d6b0
tactic/fold_tac,fold_goals_tac: now handle critical pairs on the
lcp
parents:
0
diff
changeset
|
445 |
fun rewrite_goals_tac defs = PRIMITIVE (rewrite_goals_rule defs); |
0 | 446 |
|
1460 | 447 |
fun rewtac def = rewrite_goals_tac [def]; |
0 | 448 |
|
449 |
||
1501 | 450 |
(*** for folding definitions, handling critical pairs ***) |
69
e7588b53d6b0
tactic/fold_tac,fold_goals_tac: now handle critical pairs on the
lcp
parents:
0
diff
changeset
|
451 |
|
e7588b53d6b0
tactic/fold_tac,fold_goals_tac: now handle critical pairs on the
lcp
parents:
0
diff
changeset
|
452 |
(*The depth of nesting in a term*) |
e7588b53d6b0
tactic/fold_tac,fold_goals_tac: now handle critical pairs on the
lcp
parents:
0
diff
changeset
|
453 |
fun term_depth (Abs(a,T,t)) = 1 + term_depth t |
e7588b53d6b0
tactic/fold_tac,fold_goals_tac: now handle critical pairs on the
lcp
parents:
0
diff
changeset
|
454 |
| term_depth (f$t) = 1 + max [term_depth f, term_depth t] |
e7588b53d6b0
tactic/fold_tac,fold_goals_tac: now handle critical pairs on the
lcp
parents:
0
diff
changeset
|
455 |
| term_depth _ = 0; |
e7588b53d6b0
tactic/fold_tac,fold_goals_tac: now handle critical pairs on the
lcp
parents:
0
diff
changeset
|
456 |
|
e7588b53d6b0
tactic/fold_tac,fold_goals_tac: now handle critical pairs on the
lcp
parents:
0
diff
changeset
|
457 |
val lhs_of_thm = #1 o Logic.dest_equals o #prop o rep_thm; |
e7588b53d6b0
tactic/fold_tac,fold_goals_tac: now handle critical pairs on the
lcp
parents:
0
diff
changeset
|
458 |
|
e7588b53d6b0
tactic/fold_tac,fold_goals_tac: now handle critical pairs on the
lcp
parents:
0
diff
changeset
|
459 |
(*folding should handle critical pairs! E.g. K == Inl(0), S == Inr(Inl(0)) |
e7588b53d6b0
tactic/fold_tac,fold_goals_tac: now handle critical pairs on the
lcp
parents:
0
diff
changeset
|
460 |
Returns longest lhs first to avoid folding its subexpressions.*) |
e7588b53d6b0
tactic/fold_tac,fold_goals_tac: now handle critical pairs on the
lcp
parents:
0
diff
changeset
|
461 |
fun sort_lhs_depths defs = |
e7588b53d6b0
tactic/fold_tac,fold_goals_tac: now handle critical pairs on the
lcp
parents:
0
diff
changeset
|
462 |
let val keylist = make_keylist (term_depth o lhs_of_thm) defs |
e7588b53d6b0
tactic/fold_tac,fold_goals_tac: now handle critical pairs on the
lcp
parents:
0
diff
changeset
|
463 |
val keys = distinct (sort op> (map #2 keylist)) |
e7588b53d6b0
tactic/fold_tac,fold_goals_tac: now handle critical pairs on the
lcp
parents:
0
diff
changeset
|
464 |
in map (keyfilter keylist) keys end; |
e7588b53d6b0
tactic/fold_tac,fold_goals_tac: now handle critical pairs on the
lcp
parents:
0
diff
changeset
|
465 |
|
e7588b53d6b0
tactic/fold_tac,fold_goals_tac: now handle critical pairs on the
lcp
parents:
0
diff
changeset
|
466 |
fun fold_tac defs = EVERY |
e7588b53d6b0
tactic/fold_tac,fold_goals_tac: now handle critical pairs on the
lcp
parents:
0
diff
changeset
|
467 |
(map rewrite_tac (sort_lhs_depths (map symmetric defs))); |
e7588b53d6b0
tactic/fold_tac,fold_goals_tac: now handle critical pairs on the
lcp
parents:
0
diff
changeset
|
468 |
|
e7588b53d6b0
tactic/fold_tac,fold_goals_tac: now handle critical pairs on the
lcp
parents:
0
diff
changeset
|
469 |
fun fold_goals_tac defs = EVERY |
e7588b53d6b0
tactic/fold_tac,fold_goals_tac: now handle critical pairs on the
lcp
parents:
0
diff
changeset
|
470 |
(map rewrite_goals_tac (sort_lhs_depths (map symmetric defs))); |
e7588b53d6b0
tactic/fold_tac,fold_goals_tac: now handle critical pairs on the
lcp
parents:
0
diff
changeset
|
471 |
|
e7588b53d6b0
tactic/fold_tac,fold_goals_tac: now handle critical pairs on the
lcp
parents:
0
diff
changeset
|
472 |
|
e7588b53d6b0
tactic/fold_tac,fold_goals_tac: now handle critical pairs on the
lcp
parents:
0
diff
changeset
|
473 |
(*** Renaming of parameters in a subgoal |
e7588b53d6b0
tactic/fold_tac,fold_goals_tac: now handle critical pairs on the
lcp
parents:
0
diff
changeset
|
474 |
Names may contain letters, digits or primes and must be |
e7588b53d6b0
tactic/fold_tac,fold_goals_tac: now handle critical pairs on the
lcp
parents:
0
diff
changeset
|
475 |
separated by blanks ***) |
0 | 476 |
|
477 |
(*Calling this will generate the warning "Same as previous level" since |
|
478 |
it affects nothing but the names of bound variables!*) |
|
479 |
fun rename_tac str i = |
|
480 |
let val cs = explode str |
|
481 |
in |
|
482 |
if !Logic.auto_rename |
|
483 |
then (writeln"Note: setting Logic.auto_rename := false"; |
|
1460 | 484 |
Logic.auto_rename := false) |
0 | 485 |
else (); |
486 |
case #2 (take_prefix (is_letdig orf is_blank) cs) of |
|
487 |
[] => PRIMITIVE (rename_params_rule (scanwords is_letdig cs, i)) |
|
488 |
| c::_ => error ("Illegal character: " ^ c) |
|
489 |
end; |
|
490 |
||
1501 | 491 |
(*Rename recent parameters using names generated from a and the suffixes, |
492 |
provided the string a, which represents a term, is an identifier. *) |
|
0 | 493 |
fun rename_last_tac a sufs i = |
494 |
let val names = map (curry op^ a) sufs |
|
495 |
in if Syntax.is_identifier a |
|
496 |
then PRIMITIVE (rename_params_rule (names,i)) |
|
497 |
else all_tac |
|
498 |
end; |
|
499 |
||
500 |
(*Prunes all redundant parameters from the proof state by rewriting*) |
|
501 |
val prune_params_tac = rewrite_tac [triv_forall_equality]; |
|
502 |
||
1501 | 503 |
(*rotate_tac n i: rotate the assumptions of subgoal i by n positions, from |
504 |
right to left if n is positive, and from left to right if n is negative.*) |
|
1209 | 505 |
fun rotate_tac n = |
506 |
let fun rot(n) = EVERY'(replicate n (dtac asm_rl)); |
|
507 |
in if n >= 0 then rot n |
|
508 |
else SUBGOAL (fn (t,i) => rot(length(Logic.strip_assums_hyp t)+n) i) |
|
509 |
end; |
|
510 |
||
0 | 511 |
end; |
1501 | 512 |
|
513 |
open Tactic; |