author | wenzelm |
Tue, 17 Mar 2009 12:09:43 +0100 | |
changeset 30555 | 5925cd6671d5 |
parent 29276 | 94b1ffec9201 |
child 30558 | 2ef9892114fd |
permissions | -rw-r--r-- |
10805 | 1 |
(* Title: Pure/tactic.ML |
2 |
Author: Lawrence C Paulson, Cambridge University Computer Laboratory |
|
0 | 3 |
|
29276 | 4 |
Fundamental tactics. |
0 | 5 |
*) |
6 |
||
11774 | 7 |
signature BASIC_TACTIC = |
8 |
sig |
|
23223 | 9 |
val trace_goalno_tac: (int -> tactic) -> int -> tactic |
10 |
val rule_by_tactic: tactic -> thm -> thm |
|
11 |
val assume_tac: int -> tactic |
|
12 |
val eq_assume_tac: int -> tactic |
|
13 |
val compose_tac: (bool * thm * int) -> int -> tactic |
|
14 |
val make_elim: thm -> thm |
|
15 |
val biresolve_tac: (bool * thm) list -> int -> tactic |
|
16 |
val resolve_tac: thm list -> int -> tactic |
|
17 |
val eresolve_tac: thm list -> int -> tactic |
|
18 |
val forward_tac: thm list -> int -> tactic |
|
19 |
val dresolve_tac: thm list -> int -> tactic |
|
20 |
val atac: int -> tactic |
|
21 |
val rtac: thm -> int -> tactic |
|
22 |
val dtac: thm -> int ->tactic |
|
23 |
val etac: thm -> int ->tactic |
|
24 |
val ftac: thm -> int ->tactic |
|
25 |
val datac: thm -> int -> int -> tactic |
|
26 |
val eatac: thm -> int -> int -> tactic |
|
27 |
val fatac: thm -> int -> int -> tactic |
|
28 |
val ares_tac: thm list -> int -> tactic |
|
29 |
val solve_tac: thm list -> int -> tactic |
|
30 |
val bimatch_tac: (bool * thm) list -> int -> tactic |
|
31 |
val match_tac: thm list -> int -> tactic |
|
32 |
val ematch_tac: thm list -> int -> tactic |
|
33 |
val dmatch_tac: thm list -> int -> tactic |
|
34 |
val flexflex_tac: tactic |
|
35 |
val distinct_subgoal_tac: int -> tactic |
|
36 |
val distinct_subgoals_tac: tactic |
|
37 |
val metacut_tac: thm -> int -> tactic |
|
38 |
val cut_rules_tac: thm list -> int -> tactic |
|
39 |
val cut_facts_tac: thm list -> int -> tactic |
|
40 |
val filter_thms: (term * term -> bool) -> int * term * thm list -> thm list |
|
41 |
val biresolution_from_nets_tac: ('a list -> (bool * thm) list) -> |
|
42 |
bool -> 'a Net.net * 'a Net.net -> int -> tactic |
|
43 |
val biresolve_from_nets_tac: (int * (bool * thm)) Net.net * (int * (bool * thm)) Net.net -> |
|
44 |
int -> tactic |
|
45 |
val bimatch_from_nets_tac: (int * (bool * thm)) Net.net * (int * (bool * thm)) Net.net -> |
|
46 |
int -> tactic |
|
47 |
val net_biresolve_tac: (bool * thm) list -> int -> tactic |
|
48 |
val net_bimatch_tac: (bool * thm) list -> int -> tactic |
|
49 |
val build_net: thm list -> (int * thm) Net.net |
|
50 |
val filt_resolve_tac: thm list -> int -> int -> tactic |
|
51 |
val resolve_from_net_tac: (int * thm) Net.net -> int -> tactic |
|
52 |
val match_from_net_tac: (int * thm) Net.net -> int -> tactic |
|
53 |
val net_resolve_tac: thm list -> int -> tactic |
|
54 |
val net_match_tac: thm list -> int -> tactic |
|
55 |
val subgoals_of_brl: bool * thm -> int |
|
56 |
val lessb: (bool * thm) * (bool * thm) -> bool |
|
27243
d549b5b0f344
removed obsolete global instantiation tactics (cf. Isar/rule_insts.ML);
wenzelm
parents:
27209
diff
changeset
|
57 |
val rename_tac: string list -> int -> tactic |
23223 | 58 |
val rotate_tac: int -> int -> tactic |
59 |
val defer_tac: int -> tactic |
|
60 |
val filter_prems_tac: (term -> bool) -> int -> tactic |
|
11774 | 61 |
end; |
0 | 62 |
|
11774 | 63 |
signature TACTIC = |
64 |
sig |
|
65 |
include BASIC_TACTIC |
|
11929 | 66 |
val innermost_params: int -> thm -> (string * typ) list |
27243
d549b5b0f344
removed obsolete global instantiation tactics (cf. Isar/rule_insts.ML);
wenzelm
parents:
27209
diff
changeset
|
67 |
val term_lift_inst_rule: |
d549b5b0f344
removed obsolete global instantiation tactics (cf. Isar/rule_insts.ML);
wenzelm
parents:
27209
diff
changeset
|
68 |
thm * int * ((indexname * sort) * typ) list * ((indexname * typ) * term) list * thm -> thm |
11774 | 69 |
val untaglist: (int * 'a) list -> 'a list |
70 |
val orderlist: (int * 'a) list -> 'a list |
|
23223 | 71 |
val insert_tagged_brl: 'a * (bool * thm) -> |
72 |
('a * (bool * thm)) Net.net * ('a * (bool * thm)) Net.net -> |
|
73 |
('a * (bool * thm)) Net.net * ('a * (bool * thm)) Net.net |
|
74 |
val build_netpair: (int * (bool * thm)) Net.net * (int * (bool * thm)) Net.net -> |
|
75 |
(bool * thm) list -> (int * (bool * thm)) Net.net * (int * (bool * thm)) Net.net |
|
76 |
val delete_tagged_brl: bool * thm -> |
|
77 |
('a * (bool * thm)) Net.net * ('a * (bool * thm)) Net.net -> |
|
78 |
('a * (bool * thm)) Net.net * ('a * (bool * thm)) Net.net |
|
79 |
val eq_kbrl: ('a * (bool * thm)) * ('a * (bool * thm)) -> bool |
|
11774 | 80 |
end; |
0 | 81 |
|
11774 | 82 |
structure Tactic: TACTIC = |
0 | 83 |
struct |
84 |
||
1501 | 85 |
(*Discover which goal is chosen: SOMEGOAL(trace_goalno_tac tac) *) |
10817 | 86 |
fun trace_goalno_tac tac i st = |
4270 | 87 |
case Seq.pull(tac i st) of |
15531 | 88 |
NONE => Seq.empty |
12262 | 89 |
| seqcell => (tracing ("Subgoal " ^ string_of_int i ^ " selected"); |
10805 | 90 |
Seq.make(fn()=> seqcell)); |
0 | 91 |
|
92 |
(*Makes a rule by applying a tactic to an existing rule*) |
|
1501 | 93 |
fun rule_by_tactic tac rl = |
19925
3f9341831812
eliminated freeze/varify in favour of Variable.import/export/trade;
wenzelm
parents:
19743
diff
changeset
|
94 |
let |
3f9341831812
eliminated freeze/varify in favour of Variable.import/export/trade;
wenzelm
parents:
19743
diff
changeset
|
95 |
val ctxt = Variable.thm_context rl; |
22568
ed7aa5a350ef
renamed Variable.import to import_thms (avoid clash with Alice keywords);
wenzelm
parents:
22560
diff
changeset
|
96 |
val ((_, [st]), ctxt') = Variable.import_thms true [rl] ctxt; |
19925
3f9341831812
eliminated freeze/varify in favour of Variable.import/export/trade;
wenzelm
parents:
19743
diff
changeset
|
97 |
in |
3f9341831812
eliminated freeze/varify in favour of Variable.import/export/trade;
wenzelm
parents:
19743
diff
changeset
|
98 |
(case Seq.pull (tac st) of |
3f9341831812
eliminated freeze/varify in favour of Variable.import/export/trade;
wenzelm
parents:
19743
diff
changeset
|
99 |
NONE => raise THM ("rule_by_tactic", 0, [rl]) |
3f9341831812
eliminated freeze/varify in favour of Variable.import/export/trade;
wenzelm
parents:
19743
diff
changeset
|
100 |
| SOME (st', _) => zero_var_indexes (singleton (Variable.export ctxt' ctxt) st')) |
2688 | 101 |
end; |
10817 | 102 |
|
19925
3f9341831812
eliminated freeze/varify in favour of Variable.import/export/trade;
wenzelm
parents:
19743
diff
changeset
|
103 |
|
0 | 104 |
(*** Basic tactics ***) |
105 |
||
106 |
(*** The following fail if the goal number is out of range: |
|
107 |
thus (REPEAT (resolve_tac rules i)) stops once subgoal i disappears. *) |
|
108 |
||
109 |
(*Solve subgoal i by assumption*) |
|
110 |
fun assume_tac i = PRIMSEQ (assumption i); |
|
111 |
||
112 |
(*Solve subgoal i by assumption, using no unification*) |
|
113 |
fun eq_assume_tac i = PRIMITIVE (eq_assumption i); |
|
114 |
||
23223 | 115 |
|
0 | 116 |
(** Resolution/matching tactics **) |
117 |
||
118 |
(*The composition rule/state: no lifting or var renaming. |
|
119 |
The arg = (bires_flg, orule, m) ; see bicompose for explanation.*) |
|
120 |
fun compose_tac arg i = PRIMSEQ (bicompose false arg i); |
|
121 |
||
122 |
(*Converts a "destruct" rule like P&Q==>P to an "elimination" rule |
|
123 |
like [| P&Q; P==>R |] ==> R *) |
|
124 |
fun make_elim rl = zero_var_indexes (rl RS revcut_rl); |
|
125 |
||
126 |
(*Attack subgoal i by resolution, using flags to indicate elimination rules*) |
|
127 |
fun biresolve_tac brules i = PRIMSEQ (biresolution false brules i); |
|
128 |
||
129 |
(*Resolution: the simple case, works for introduction rules*) |
|
130 |
fun resolve_tac rules = biresolve_tac (map (pair false) rules); |
|
131 |
||
132 |
(*Resolution with elimination rules only*) |
|
133 |
fun eresolve_tac rules = biresolve_tac (map (pair true) rules); |
|
134 |
||
135 |
(*Forward reasoning using destruction rules.*) |
|
136 |
fun forward_tac rls = resolve_tac (map make_elim rls) THEN' assume_tac; |
|
137 |
||
138 |
(*Like forward_tac, but deletes the assumption after use.*) |
|
139 |
fun dresolve_tac rls = eresolve_tac (map make_elim rls); |
|
140 |
||
141 |
(*Shorthand versions: for resolution with a single theorem*) |
|
7491 | 142 |
val atac = assume_tac; |
143 |
fun rtac rl = resolve_tac [rl]; |
|
144 |
fun dtac rl = dresolve_tac [rl]; |
|
1460 | 145 |
fun etac rl = eresolve_tac [rl]; |
7491 | 146 |
fun ftac rl = forward_tac [rl]; |
147 |
fun datac thm j = EVERY' (dtac thm::replicate j atac); |
|
148 |
fun eatac thm j = EVERY' (etac thm::replicate j atac); |
|
149 |
fun fatac thm j = EVERY' (ftac thm::replicate j atac); |
|
0 | 150 |
|
151 |
(*Use an assumption or some rules ... A popular combination!*) |
|
152 |
fun ares_tac rules = assume_tac ORELSE' resolve_tac rules; |
|
153 |
||
5263 | 154 |
fun solve_tac rules = resolve_tac rules THEN_ALL_NEW assume_tac; |
155 |
||
0 | 156 |
(*Matching tactics -- as above, but forbid updating of state*) |
157 |
fun bimatch_tac brules i = PRIMSEQ (biresolution true brules i); |
|
158 |
fun match_tac rules = bimatch_tac (map (pair false) rules); |
|
159 |
fun ematch_tac rules = bimatch_tac (map (pair true) rules); |
|
160 |
fun dmatch_tac rls = ematch_tac (map make_elim rls); |
|
161 |
||
162 |
(*Smash all flex-flex disagreement pairs in the proof state.*) |
|
163 |
val flexflex_tac = PRIMSEQ flexflex_rule; |
|
164 |
||
19056
6ac9dfe98e54
sane version of distinct_subgoals_tac, based on composition with Drule.distinct_prems_rl;
wenzelm
parents:
18977
diff
changeset
|
165 |
(*Remove duplicate subgoals.*) |
22560
f19ddf96c323
now exports distinct_subgoal_tac (needed by MetisAPI)
paulson
parents:
22360
diff
changeset
|
166 |
val perm_tac = PRIMITIVE oo Thm.permute_prems; |
f19ddf96c323
now exports distinct_subgoal_tac (needed by MetisAPI)
paulson
parents:
22360
diff
changeset
|
167 |
|
f19ddf96c323
now exports distinct_subgoal_tac (needed by MetisAPI)
paulson
parents:
22360
diff
changeset
|
168 |
fun distinct_tac (i, k) = |
f19ddf96c323
now exports distinct_subgoal_tac (needed by MetisAPI)
paulson
parents:
22360
diff
changeset
|
169 |
perm_tac 0 (i - 1) THEN |
f19ddf96c323
now exports distinct_subgoal_tac (needed by MetisAPI)
paulson
parents:
22360
diff
changeset
|
170 |
perm_tac 1 (k - 1) THEN |
f19ddf96c323
now exports distinct_subgoal_tac (needed by MetisAPI)
paulson
parents:
22360
diff
changeset
|
171 |
DETERM (PRIMSEQ (fn st => |
f19ddf96c323
now exports distinct_subgoal_tac (needed by MetisAPI)
paulson
parents:
22360
diff
changeset
|
172 |
Thm.compose_no_flatten false (st, 0) 1 |
f19ddf96c323
now exports distinct_subgoal_tac (needed by MetisAPI)
paulson
parents:
22360
diff
changeset
|
173 |
(Drule.incr_indexes st Drule.distinct_prems_rl))) THEN |
f19ddf96c323
now exports distinct_subgoal_tac (needed by MetisAPI)
paulson
parents:
22360
diff
changeset
|
174 |
perm_tac 1 (1 - k) THEN |
f19ddf96c323
now exports distinct_subgoal_tac (needed by MetisAPI)
paulson
parents:
22360
diff
changeset
|
175 |
perm_tac 0 (1 - i); |
f19ddf96c323
now exports distinct_subgoal_tac (needed by MetisAPI)
paulson
parents:
22360
diff
changeset
|
176 |
|
f19ddf96c323
now exports distinct_subgoal_tac (needed by MetisAPI)
paulson
parents:
22360
diff
changeset
|
177 |
fun distinct_subgoal_tac i st = |
f19ddf96c323
now exports distinct_subgoal_tac (needed by MetisAPI)
paulson
parents:
22360
diff
changeset
|
178 |
(case Library.drop (i - 1, Thm.prems_of st) of |
f19ddf96c323
now exports distinct_subgoal_tac (needed by MetisAPI)
paulson
parents:
22360
diff
changeset
|
179 |
[] => no_tac st |
f19ddf96c323
now exports distinct_subgoal_tac (needed by MetisAPI)
paulson
parents:
22360
diff
changeset
|
180 |
| A :: Bs => |
f19ddf96c323
now exports distinct_subgoal_tac (needed by MetisAPI)
paulson
parents:
22360
diff
changeset
|
181 |
st |> EVERY (fold (fn (B, k) => |
23223 | 182 |
if A aconv B then cons (distinct_tac (i, k)) else I) (Bs ~~ (1 upto length Bs)) [])); |
22560
f19ddf96c323
now exports distinct_subgoal_tac (needed by MetisAPI)
paulson
parents:
22360
diff
changeset
|
183 |
|
10817 | 184 |
fun distinct_subgoals_tac state = |
19056
6ac9dfe98e54
sane version of distinct_subgoals_tac, based on composition with Drule.distinct_prems_rl;
wenzelm
parents:
18977
diff
changeset
|
185 |
let |
6ac9dfe98e54
sane version of distinct_subgoals_tac, based on composition with Drule.distinct_prems_rl;
wenzelm
parents:
18977
diff
changeset
|
186 |
val goals = Thm.prems_of state; |
6ac9dfe98e54
sane version of distinct_subgoals_tac, based on composition with Drule.distinct_prems_rl;
wenzelm
parents:
18977
diff
changeset
|
187 |
val dups = distinct (eq_fst (op aconv)) (goals ~~ (1 upto length goals)); |
6ac9dfe98e54
sane version of distinct_subgoals_tac, based on composition with Drule.distinct_prems_rl;
wenzelm
parents:
18977
diff
changeset
|
188 |
in EVERY (rev (map (distinct_subgoal_tac o snd) dups)) state end; |
3409
c0466958df5d
Tidying of signature. More robust renaming in freeze_thaw.
paulson
parents:
2814
diff
changeset
|
189 |
|
11929 | 190 |
(*Determine print names of goal parameters (reversed)*) |
191 |
fun innermost_params i st = |
|
192 |
let val (_, _, Bi, _) = dest_state (st, i) |
|
29276 | 193 |
in Term.rename_wrt_term Bi (Logic.strip_params Bi) end; |
11929 | 194 |
|
15453 | 195 |
(*params of subgoal i as they are printed*) |
19532 | 196 |
fun params_of_state i st = rev (innermost_params i st); |
16425
2427be27cc60
accomodate identification of type Sign.sg and theory;
wenzelm
parents:
16325
diff
changeset
|
197 |
|
3984 | 198 |
(* |
199 |
Like lift_inst_rule but takes terms, not strings, where the terms may contain |
|
200 |
Bounds referring to parameters of the subgoal. |
|
201 |
||
202 |
insts: [...,(vj,tj),...] |
|
203 |
||
204 |
The tj may contain references to parameters of subgoal i of the state st |
|
205 |
in the form of Bound k, i.e. the tj may be subterms of the subgoal. |
|
206 |
To saturate the lose bound vars, the tj are enclosed in abstractions |
|
207 |
corresponding to the parameters of subgoal i, thus turning them into |
|
208 |
functions. At the same time, the types of the vj are lifted. |
|
209 |
||
210 |
NB: the types in insts must be correctly instantiated already, |
|
211 |
i.e. Tinsts is not applied to insts. |
|
212 |
*) |
|
1975
eec67972b1bf
renamed cterm_lift_inst_rule to term_lift_inst_rule and made it take
nipkow
parents:
1966
diff
changeset
|
213 |
fun term_lift_inst_rule (st, i, Tinsts, insts, rule) = |
26626
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
wenzelm
parents:
26424
diff
changeset
|
214 |
let |
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
wenzelm
parents:
26424
diff
changeset
|
215 |
val thy = Thm.theory_of_thm st |
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
wenzelm
parents:
26424
diff
changeset
|
216 |
val cert = Thm.cterm_of thy |
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
wenzelm
parents:
26424
diff
changeset
|
217 |
val certT = Thm.ctyp_of thy |
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
wenzelm
parents:
26424
diff
changeset
|
218 |
val maxidx = Thm.maxidx_of st |
19532 | 219 |
val paramTs = map #2 (params_of_state i st) |
26626
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
wenzelm
parents:
26424
diff
changeset
|
220 |
val inc = maxidx+1 |
16876 | 221 |
fun liftvar ((a,j), T) = Var((a, j+inc), paramTs---> Logic.incr_tvar inc T) |
1975
eec67972b1bf
renamed cterm_lift_inst_rule to term_lift_inst_rule and made it take
nipkow
parents:
1966
diff
changeset
|
222 |
(*lift only Var, not term, which must be lifted already*) |
26626
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
wenzelm
parents:
26424
diff
changeset
|
223 |
fun liftpair (v,t) = (cert (liftvar v), cert t) |
15797 | 224 |
fun liftTpair (((a, i), S), T) = |
26626
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
wenzelm
parents:
26424
diff
changeset
|
225 |
(certT (TVar ((a, i + inc), S)), |
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
wenzelm
parents:
26424
diff
changeset
|
226 |
certT (Logic.incr_tvar inc T)) |
8129
29e239c7b8c2
Thm.instantiate no longer normalizes, but Drule.instantiate does
paulson
parents:
7596
diff
changeset
|
227 |
in Drule.instantiate (map liftTpair Tinsts, map liftpair insts) |
18145 | 228 |
(Thm.lift_rule (Thm.cprem_of st i) rule) |
1966 | 229 |
end; |
0 | 230 |
|
231 |
||
1951 | 232 |
|
270
d506ea00c825
tactic/make_elim_preserve: recoded to avoid using lift_inst_rule. Instead
lcp
parents:
230
diff
changeset
|
233 |
(*** Applications of cut_rl ***) |
0 | 234 |
|
235 |
(*The conclusion of the rule gets assumed in subgoal i, |
|
236 |
while subgoal i+1,... are the premises of the rule.*) |
|
27243
d549b5b0f344
removed obsolete global instantiation tactics (cf. Isar/rule_insts.ML);
wenzelm
parents:
27209
diff
changeset
|
237 |
fun metacut_tac rule i = resolve_tac [cut_rl] i THEN biresolve_tac [(false, rule)] (i+1); |
0 | 238 |
|
13650
31bd2a8cdbe2
fixing the cut_tac method to work when there are no instantiations and the
paulson
parents:
13559
diff
changeset
|
239 |
(*"Cut" a list of rules into the goal. Their premises will become new |
31bd2a8cdbe2
fixing the cut_tac method to work when there are no instantiations and the
paulson
parents:
13559
diff
changeset
|
240 |
subgoals.*) |
31bd2a8cdbe2
fixing the cut_tac method to work when there are no instantiations and the
paulson
parents:
13559
diff
changeset
|
241 |
fun cut_rules_tac ths i = EVERY (map (fn th => metacut_tac th i) ths); |
31bd2a8cdbe2
fixing the cut_tac method to work when there are no instantiations and the
paulson
parents:
13559
diff
changeset
|
242 |
|
31bd2a8cdbe2
fixing the cut_tac method to work when there are no instantiations and the
paulson
parents:
13559
diff
changeset
|
243 |
(*As above, but inserts only facts (unconditional theorems); |
31bd2a8cdbe2
fixing the cut_tac method to work when there are no instantiations and the
paulson
parents:
13559
diff
changeset
|
244 |
generates no additional subgoals. *) |
20232 | 245 |
fun cut_facts_tac ths = cut_rules_tac (filter Thm.no_prems ths); |
0 | 246 |
|
247 |
||
248 |
(**** Indexing and filtering of theorems ****) |
|
249 |
||
250 |
(*Returns the list of potentially resolvable theorems for the goal "prem", |
|
10805 | 251 |
using the predicate could(subgoal,concl). |
0 | 252 |
Resulting list is no longer than "limit"*) |
253 |
fun filter_thms could (limit, prem, ths) = |
|
254 |
let val pb = Logic.strip_assums_concl prem; (*delete assumptions*) |
|
255 |
fun filtr (limit, []) = [] |
|
10805 | 256 |
| filtr (limit, th::ths) = |
257 |
if limit=0 then [] |
|
258 |
else if could(pb, concl_of th) then th :: filtr(limit-1, ths) |
|
259 |
else filtr(limit,ths) |
|
0 | 260 |
in filtr(limit,ths) end; |
261 |
||
262 |
||
263 |
(*** biresolution and resolution using nets ***) |
|
264 |
||
265 |
(** To preserve the order of the rules, tag them with increasing integers **) |
|
266 |
||
267 |
(*insert tags*) |
|
268 |
fun taglist k [] = [] |
|
269 |
| taglist k (x::xs) = (k,x) :: taglist (k+1) xs; |
|
270 |
||
271 |
(*remove tags and suppress duplicates -- list is assumed sorted!*) |
|
272 |
fun untaglist [] = [] |
|
273 |
| untaglist [(k:int,x)] = [x] |
|
274 |
| untaglist ((k,x) :: (rest as (k',x')::_)) = |
|
275 |
if k=k' then untaglist rest |
|
276 |
else x :: untaglist rest; |
|
277 |
||
278 |
(*return list elements in original order*) |
|
10817 | 279 |
fun orderlist kbrls = untaglist (sort (int_ord o pairself fst) kbrls); |
0 | 280 |
|
281 |
(*insert one tagged brl into the pair of nets*) |
|
23178 | 282 |
fun insert_tagged_brl (kbrl as (k, (eres, th))) (inet, enet) = |
12320 | 283 |
if eres then |
284 |
(case try Thm.major_prem_of th of |
|
16809 | 285 |
SOME prem => (inet, Net.insert_term (K false) (prem, kbrl) enet) |
15531 | 286 |
| NONE => error "insert_tagged_brl: elimination rule with no premises") |
16809 | 287 |
else (Net.insert_term (K false) (concl_of th, kbrl) inet, enet); |
0 | 288 |
|
289 |
(*build a pair of nets for biresolution*) |
|
10817 | 290 |
fun build_netpair netpair brls = |
23178 | 291 |
fold_rev insert_tagged_brl (taglist 1 brls) netpair; |
0 | 292 |
|
12320 | 293 |
(*delete one kbrl from the pair of nets*) |
22360
26ead7ed4f4b
moved eq_thm etc. to structure Thm in Pure/more_thm.ML;
wenzelm
parents:
21708
diff
changeset
|
294 |
fun eq_kbrl ((_, (_, th)), (_, (_, th'))) = Thm.eq_thm_prop (th, th') |
16809 | 295 |
|
23178 | 296 |
fun delete_tagged_brl (brl as (eres, th)) (inet, enet) = |
13925 | 297 |
(if eres then |
12320 | 298 |
(case try Thm.major_prem_of th of |
16809 | 299 |
SOME prem => (inet, Net.delete_term eq_kbrl (prem, ((), brl)) enet) |
15531 | 300 |
| NONE => (inet, enet)) (*no major premise: ignore*) |
16809 | 301 |
else (Net.delete_term eq_kbrl (Thm.concl_of th, ((), brl)) inet, enet)) |
13925 | 302 |
handle Net.DELETE => (inet,enet); |
1801 | 303 |
|
304 |
||
10817 | 305 |
(*biresolution using a pair of nets rather than rules. |
3706
e57b5902822f
Generalized and exported biresolution_from_nets_tac to allow the declaration
paulson
parents:
3575
diff
changeset
|
306 |
function "order" must sort and possibly filter the list of brls. |
e57b5902822f
Generalized and exported biresolution_from_nets_tac to allow the declaration
paulson
parents:
3575
diff
changeset
|
307 |
boolean "match" indicates matching or unification.*) |
e57b5902822f
Generalized and exported biresolution_from_nets_tac to allow the declaration
paulson
parents:
3575
diff
changeset
|
308 |
fun biresolution_from_nets_tac order match (inet,enet) = |
0 | 309 |
SUBGOAL |
310 |
(fn (prem,i) => |
|
311 |
let val hyps = Logic.strip_assums_hyp prem |
|
10817 | 312 |
and concl = Logic.strip_assums_concl prem |
19482
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
wenzelm
parents:
19473
diff
changeset
|
313 |
val kbrls = Net.unify_term inet concl @ maps (Net.unify_term enet) hyps |
3706
e57b5902822f
Generalized and exported biresolution_from_nets_tac to allow the declaration
paulson
parents:
3575
diff
changeset
|
314 |
in PRIMSEQ (biresolution match (order kbrls) i) end); |
0 | 315 |
|
3706
e57b5902822f
Generalized and exported biresolution_from_nets_tac to allow the declaration
paulson
parents:
3575
diff
changeset
|
316 |
(*versions taking pre-built nets. No filtering of brls*) |
e57b5902822f
Generalized and exported biresolution_from_nets_tac to allow the declaration
paulson
parents:
3575
diff
changeset
|
317 |
val biresolve_from_nets_tac = biresolution_from_nets_tac orderlist false; |
e57b5902822f
Generalized and exported biresolution_from_nets_tac to allow the declaration
paulson
parents:
3575
diff
changeset
|
318 |
val bimatch_from_nets_tac = biresolution_from_nets_tac orderlist true; |
0 | 319 |
|
320 |
(*fast versions using nets internally*) |
|
670 | 321 |
val net_biresolve_tac = |
322 |
biresolve_from_nets_tac o build_netpair(Net.empty,Net.empty); |
|
323 |
||
324 |
val net_bimatch_tac = |
|
325 |
bimatch_from_nets_tac o build_netpair(Net.empty,Net.empty); |
|
0 | 326 |
|
327 |
(*** Simpler version for resolve_tac -- only one net, and no hyps ***) |
|
328 |
||
329 |
(*insert one tagged rl into the net*) |
|
23178 | 330 |
fun insert_krl (krl as (k,th)) = |
331 |
Net.insert_term (K false) (concl_of th, krl); |
|
0 | 332 |
|
333 |
(*build a net of rules for resolution*) |
|
10817 | 334 |
fun build_net rls = |
23178 | 335 |
fold_rev insert_krl (taglist 1 rls) Net.empty; |
0 | 336 |
|
337 |
(*resolution using a net rather than rules; pred supports filt_resolve_tac*) |
|
338 |
fun filt_resolution_from_net_tac match pred net = |
|
339 |
SUBGOAL |
|
340 |
(fn (prem,i) => |
|
341 |
let val krls = Net.unify_term net (Logic.strip_assums_concl prem) |
|
10817 | 342 |
in |
343 |
if pred krls |
|
0 | 344 |
then PRIMSEQ |
10805 | 345 |
(biresolution match (map (pair false) (orderlist krls)) i) |
0 | 346 |
else no_tac |
347 |
end); |
|
348 |
||
349 |
(*Resolve the subgoal using the rules (making a net) unless too flexible, |
|
350 |
which means more than maxr rules are unifiable. *) |
|
10817 | 351 |
fun filt_resolve_tac rules maxr = |
0 | 352 |
let fun pred krls = length krls <= maxr |
353 |
in filt_resolution_from_net_tac false pred (build_net rules) end; |
|
354 |
||
355 |
(*versions taking pre-built nets*) |
|
356 |
val resolve_from_net_tac = filt_resolution_from_net_tac false (K true); |
|
357 |
val match_from_net_tac = filt_resolution_from_net_tac true (K true); |
|
358 |
||
359 |
(*fast versions using nets internally*) |
|
360 |
val net_resolve_tac = resolve_from_net_tac o build_net; |
|
361 |
val net_match_tac = match_from_net_tac o build_net; |
|
362 |
||
363 |
||
364 |
(*** For Natural Deduction using (bires_flg, rule) pairs ***) |
|
365 |
||
366 |
(*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
|
367 |
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
|
368 |
| subgoals_of_brl (false,rule) = nprems_of rule; |
0 | 369 |
|
370 |
(*Less-than test: for sorting to minimize number of new subgoals*) |
|
371 |
fun lessb (brl1,brl2) = subgoals_of_brl brl1 < subgoals_of_brl brl2; |
|
372 |
||
373 |
||
27243
d549b5b0f344
removed obsolete global instantiation tactics (cf. Isar/rule_insts.ML);
wenzelm
parents:
27209
diff
changeset
|
374 |
(*Renaming of parameters in a subgoal*) |
d549b5b0f344
removed obsolete global instantiation tactics (cf. Isar/rule_insts.ML);
wenzelm
parents:
27209
diff
changeset
|
375 |
fun rename_tac xs i = |
14673 | 376 |
case Library.find_first (not o Syntax.is_identifier) xs of |
15531 | 377 |
SOME x => error ("Not an identifier: " ^ x) |
25939 | 378 |
| NONE => PRIMITIVE (rename_params_rule (xs, i)); |
9535 | 379 |
|
1501 | 380 |
(*rotate_tac n i: rotate the assumptions of subgoal i by n positions, from |
381 |
right to left if n is positive, and from left to right if n is negative.*) |
|
2672
85d7e800d754
Replaced "flat" by the Basis Library function List.concat
paulson
parents:
2580
diff
changeset
|
382 |
fun rotate_tac 0 i = all_tac |
85d7e800d754
Replaced "flat" by the Basis Library function List.concat
paulson
parents:
2580
diff
changeset
|
383 |
| rotate_tac k i = PRIMITIVE (rotate_rule k i); |
1209 | 384 |
|
7248
322151fe6f02
new primitive rule permute_prems to underlie defer_tac and rotate_prems
paulson
parents:
6979
diff
changeset
|
385 |
(*Rotates the given subgoal to be the last.*) |
322151fe6f02
new primitive rule permute_prems to underlie defer_tac and rotate_prems
paulson
parents:
6979
diff
changeset
|
386 |
fun defer_tac i = PRIMITIVE (permute_prems (i-1) 1); |
322151fe6f02
new primitive rule permute_prems to underlie defer_tac and rotate_prems
paulson
parents:
6979
diff
changeset
|
387 |
|
5974 | 388 |
(* remove premises that do not satisfy p; fails if all prems satisfy p *) |
389 |
fun filter_prems_tac p = |
|
15531 | 390 |
let fun Then NONE tac = SOME tac |
391 |
| Then (SOME tac) tac' = SOME(tac THEN' tac'); |
|
19473 | 392 |
fun thins H (tac,n) = |
5974 | 393 |
if p H then (tac,n+1) |
394 |
else (Then tac (rotate_tac n THEN' etac thin_rl),0); |
|
395 |
in SUBGOAL(fn (subg,n) => |
|
396 |
let val Hs = Logic.strip_assums_hyp subg |
|
19473 | 397 |
in case fst(fold thins Hs (NONE,0)) of |
15531 | 398 |
NONE => no_tac | SOME tac => tac n |
5974 | 399 |
end) |
400 |
end; |
|
401 |
||
0 | 402 |
end; |
1501 | 403 |
|
11774 | 404 |
structure BasicTactic: BASIC_TACTIC = Tactic; |
405 |
open BasicTactic; |