author | wenzelm |
Fri, 28 Oct 2011 15:38:41 +0200 | |
changeset 45289 | 25e9e7f527b4 |
parent 42290 | b1f544c84040 |
child 46459 | 73823dbbecc4 |
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 |
36546 | 10 |
val rule_by_tactic: Proof.context -> tactic -> thm -> thm |
23223 | 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 |
|
31251 | 22 |
val dtac: thm -> int -> tactic |
23 |
val etac: thm -> int -> tactic |
|
24 |
val ftac: thm -> int -> tactic |
|
23223 | 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 filt_resolve_tac: thm list -> int -> int -> tactic |
|
50 |
val resolve_from_net_tac: (int * thm) Net.net -> int -> tactic |
|
51 |
val match_from_net_tac: (int * thm) Net.net -> int -> tactic |
|
52 |
val net_resolve_tac: thm list -> int -> tactic |
|
53 |
val net_match_tac: thm list -> int -> tactic |
|
54 |
val subgoals_of_brl: bool * thm -> int |
|
55 |
val lessb: (bool * thm) * (bool * thm) -> bool |
|
27243
d549b5b0f344
removed obsolete global instantiation tactics (cf. Isar/rule_insts.ML);
wenzelm
parents:
27209
diff
changeset
|
56 |
val rename_tac: string list -> int -> tactic |
23223 | 57 |
val rotate_tac: int -> int -> tactic |
58 |
val defer_tac: int -> tactic |
|
59 |
val filter_prems_tac: (term -> bool) -> int -> tactic |
|
11774 | 60 |
end; |
0 | 61 |
|
11774 | 62 |
signature TACTIC = |
63 |
sig |
|
64 |
include BASIC_TACTIC |
|
11929 | 65 |
val innermost_params: int -> thm -> (string * typ) list |
23223 | 66 |
val insert_tagged_brl: 'a * (bool * thm) -> |
67 |
('a * (bool * thm)) Net.net * ('a * (bool * thm)) Net.net -> |
|
68 |
('a * (bool * thm)) Net.net * ('a * (bool * thm)) Net.net |
|
69 |
val build_netpair: (int * (bool * thm)) Net.net * (int * (bool * thm)) Net.net -> |
|
70 |
(bool * thm) list -> (int * (bool * thm)) Net.net * (int * (bool * thm)) Net.net |
|
71 |
val delete_tagged_brl: 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 eq_kbrl: ('a * (bool * thm)) * ('a * (bool * thm)) -> bool |
|
32971 | 75 |
val build_net: thm list -> (int * thm) Net.net |
11774 | 76 |
end; |
0 | 77 |
|
11774 | 78 |
structure Tactic: TACTIC = |
0 | 79 |
struct |
80 |
||
1501 | 81 |
(*Discover which goal is chosen: SOMEGOAL(trace_goalno_tac tac) *) |
10817 | 82 |
fun trace_goalno_tac tac i st = |
4270 | 83 |
case Seq.pull(tac i st) of |
15531 | 84 |
NONE => Seq.empty |
12262 | 85 |
| seqcell => (tracing ("Subgoal " ^ string_of_int i ^ " selected"); |
10805 | 86 |
Seq.make(fn()=> seqcell)); |
0 | 87 |
|
88 |
(*Makes a rule by applying a tactic to an existing rule*) |
|
36546 | 89 |
fun rule_by_tactic ctxt tac rl = |
19925
3f9341831812
eliminated freeze/varify in favour of Variable.import/export/trade;
wenzelm
parents:
19743
diff
changeset
|
90 |
let |
36546 | 91 |
val ctxt' = Variable.declare_thm rl ctxt; |
92 |
val ((_, [st]), ctxt'') = Variable.import true [rl] ctxt'; |
|
19925
3f9341831812
eliminated freeze/varify in favour of Variable.import/export/trade;
wenzelm
parents:
19743
diff
changeset
|
93 |
in |
3f9341831812
eliminated freeze/varify in favour of Variable.import/export/trade;
wenzelm
parents:
19743
diff
changeset
|
94 |
(case Seq.pull (tac st) of |
3f9341831812
eliminated freeze/varify in favour of Variable.import/export/trade;
wenzelm
parents:
19743
diff
changeset
|
95 |
NONE => raise THM ("rule_by_tactic", 0, [rl]) |
36546 | 96 |
| SOME (st', _) => zero_var_indexes (singleton (Variable.export ctxt'' ctxt') st')) |
2688 | 97 |
end; |
10817 | 98 |
|
19925
3f9341831812
eliminated freeze/varify in favour of Variable.import/export/trade;
wenzelm
parents:
19743
diff
changeset
|
99 |
|
0 | 100 |
(*** Basic tactics ***) |
101 |
||
102 |
(*** The following fail if the goal number is out of range: |
|
103 |
thus (REPEAT (resolve_tac rules i)) stops once subgoal i disappears. *) |
|
104 |
||
105 |
(*Solve subgoal i by assumption*) |
|
31945 | 106 |
fun assume_tac i = PRIMSEQ (Thm.assumption i); |
0 | 107 |
|
108 |
(*Solve subgoal i by assumption, using no unification*) |
|
31945 | 109 |
fun eq_assume_tac i = PRIMITIVE (Thm.eq_assumption i); |
0 | 110 |
|
23223 | 111 |
|
0 | 112 |
(** Resolution/matching tactics **) |
113 |
||
114 |
(*The composition rule/state: no lifting or var renaming. |
|
31945 | 115 |
The arg = (bires_flg, orule, m); see Thm.bicompose for explanation.*) |
116 |
fun compose_tac arg i = PRIMSEQ (Thm.bicompose false arg i); |
|
0 | 117 |
|
118 |
(*Converts a "destruct" rule like P&Q==>P to an "elimination" rule |
|
119 |
like [| P&Q; P==>R |] ==> R *) |
|
120 |
fun make_elim rl = zero_var_indexes (rl RS revcut_rl); |
|
121 |
||
122 |
(*Attack subgoal i by resolution, using flags to indicate elimination rules*) |
|
31945 | 123 |
fun biresolve_tac brules i = PRIMSEQ (Thm.biresolution false brules i); |
0 | 124 |
|
125 |
(*Resolution: the simple case, works for introduction rules*) |
|
126 |
fun resolve_tac rules = biresolve_tac (map (pair false) rules); |
|
127 |
||
128 |
(*Resolution with elimination rules only*) |
|
129 |
fun eresolve_tac rules = biresolve_tac (map (pair true) rules); |
|
130 |
||
131 |
(*Forward reasoning using destruction rules.*) |
|
132 |
fun forward_tac rls = resolve_tac (map make_elim rls) THEN' assume_tac; |
|
133 |
||
134 |
(*Like forward_tac, but deletes the assumption after use.*) |
|
135 |
fun dresolve_tac rls = eresolve_tac (map make_elim rls); |
|
136 |
||
137 |
(*Shorthand versions: for resolution with a single theorem*) |
|
7491 | 138 |
val atac = assume_tac; |
139 |
fun rtac rl = resolve_tac [rl]; |
|
140 |
fun dtac rl = dresolve_tac [rl]; |
|
1460 | 141 |
fun etac rl = eresolve_tac [rl]; |
7491 | 142 |
fun ftac rl = forward_tac [rl]; |
143 |
fun datac thm j = EVERY' (dtac thm::replicate j atac); |
|
144 |
fun eatac thm j = EVERY' (etac thm::replicate j atac); |
|
145 |
fun fatac thm j = EVERY' (ftac thm::replicate j atac); |
|
0 | 146 |
|
147 |
(*Use an assumption or some rules ... A popular combination!*) |
|
148 |
fun ares_tac rules = assume_tac ORELSE' resolve_tac rules; |
|
149 |
||
5263 | 150 |
fun solve_tac rules = resolve_tac rules THEN_ALL_NEW assume_tac; |
151 |
||
0 | 152 |
(*Matching tactics -- as above, but forbid updating of state*) |
31945 | 153 |
fun bimatch_tac brules i = PRIMSEQ (Thm.biresolution true brules i); |
0 | 154 |
fun match_tac rules = bimatch_tac (map (pair false) rules); |
155 |
fun ematch_tac rules = bimatch_tac (map (pair true) rules); |
|
156 |
fun dmatch_tac rls = ematch_tac (map make_elim rls); |
|
157 |
||
158 |
(*Smash all flex-flex disagreement pairs in the proof state.*) |
|
36944 | 159 |
val flexflex_tac = PRIMSEQ Thm.flexflex_rule; |
0 | 160 |
|
19056
6ac9dfe98e54
sane version of distinct_subgoals_tac, based on composition with Drule.distinct_prems_rl;
wenzelm
parents:
18977
diff
changeset
|
161 |
(*Remove duplicate subgoals.*) |
22560
f19ddf96c323
now exports distinct_subgoal_tac (needed by MetisAPI)
paulson
parents:
22360
diff
changeset
|
162 |
val perm_tac = PRIMITIVE oo Thm.permute_prems; |
f19ddf96c323
now exports distinct_subgoal_tac (needed by MetisAPI)
paulson
parents:
22360
diff
changeset
|
163 |
|
f19ddf96c323
now exports distinct_subgoal_tac (needed by MetisAPI)
paulson
parents:
22360
diff
changeset
|
164 |
fun distinct_tac (i, k) = |
f19ddf96c323
now exports distinct_subgoal_tac (needed by MetisAPI)
paulson
parents:
22360
diff
changeset
|
165 |
perm_tac 0 (i - 1) THEN |
f19ddf96c323
now exports distinct_subgoal_tac (needed by MetisAPI)
paulson
parents:
22360
diff
changeset
|
166 |
perm_tac 1 (k - 1) THEN |
f19ddf96c323
now exports distinct_subgoal_tac (needed by MetisAPI)
paulson
parents:
22360
diff
changeset
|
167 |
DETERM (PRIMSEQ (fn st => |
f19ddf96c323
now exports distinct_subgoal_tac (needed by MetisAPI)
paulson
parents:
22360
diff
changeset
|
168 |
Thm.compose_no_flatten false (st, 0) 1 |
f19ddf96c323
now exports distinct_subgoal_tac (needed by MetisAPI)
paulson
parents:
22360
diff
changeset
|
169 |
(Drule.incr_indexes st Drule.distinct_prems_rl))) THEN |
f19ddf96c323
now exports distinct_subgoal_tac (needed by MetisAPI)
paulson
parents:
22360
diff
changeset
|
170 |
perm_tac 1 (1 - k) THEN |
f19ddf96c323
now exports distinct_subgoal_tac (needed by MetisAPI)
paulson
parents:
22360
diff
changeset
|
171 |
perm_tac 0 (1 - i); |
f19ddf96c323
now exports distinct_subgoal_tac (needed by MetisAPI)
paulson
parents:
22360
diff
changeset
|
172 |
|
f19ddf96c323
now exports distinct_subgoal_tac (needed by MetisAPI)
paulson
parents:
22360
diff
changeset
|
173 |
fun distinct_subgoal_tac i st = |
33957 | 174 |
(case drop (i - 1) (Thm.prems_of st) of |
22560
f19ddf96c323
now exports distinct_subgoal_tac (needed by MetisAPI)
paulson
parents:
22360
diff
changeset
|
175 |
[] => no_tac st |
f19ddf96c323
now exports distinct_subgoal_tac (needed by MetisAPI)
paulson
parents:
22360
diff
changeset
|
176 |
| A :: Bs => |
f19ddf96c323
now exports distinct_subgoal_tac (needed by MetisAPI)
paulson
parents:
22360
diff
changeset
|
177 |
st |> EVERY (fold (fn (B, k) => |
23223 | 178 |
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
|
179 |
|
10817 | 180 |
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
|
181 |
let |
6ac9dfe98e54
sane version of distinct_subgoals_tac, based on composition with Drule.distinct_prems_rl;
wenzelm
parents:
18977
diff
changeset
|
182 |
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
|
183 |
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
|
184 |
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
|
185 |
|
11929 | 186 |
(*Determine print names of goal parameters (reversed)*) |
187 |
fun innermost_params i st = |
|
36944 | 188 |
let val (_, _, Bi, _) = Thm.dest_state (st, i) |
29276 | 189 |
in Term.rename_wrt_term Bi (Logic.strip_params Bi) end; |
11929 | 190 |
|
1951 | 191 |
|
270
d506ea00c825
tactic/make_elim_preserve: recoded to avoid using lift_inst_rule. Instead
lcp
parents:
230
diff
changeset
|
192 |
(*** Applications of cut_rl ***) |
0 | 193 |
|
194 |
(*The conclusion of the rule gets assumed in subgoal i, |
|
195 |
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
|
196 |
fun metacut_tac rule i = resolve_tac [cut_rl] i THEN biresolve_tac [(false, rule)] (i+1); |
0 | 197 |
|
13650
31bd2a8cdbe2
fixing the cut_tac method to work when there are no instantiations and the
paulson
parents:
13559
diff
changeset
|
198 |
(*"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
|
199 |
subgoals.*) |
31bd2a8cdbe2
fixing the cut_tac method to work when there are no instantiations and the
paulson
parents:
13559
diff
changeset
|
200 |
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
|
201 |
|
31bd2a8cdbe2
fixing the cut_tac method to work when there are no instantiations and the
paulson
parents:
13559
diff
changeset
|
202 |
(*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
|
203 |
generates no additional subgoals. *) |
20232 | 204 |
fun cut_facts_tac ths = cut_rules_tac (filter Thm.no_prems ths); |
0 | 205 |
|
206 |
||
207 |
(**** Indexing and filtering of theorems ****) |
|
208 |
||
209 |
(*Returns the list of potentially resolvable theorems for the goal "prem", |
|
10805 | 210 |
using the predicate could(subgoal,concl). |
0 | 211 |
Resulting list is no longer than "limit"*) |
212 |
fun filter_thms could (limit, prem, ths) = |
|
213 |
let val pb = Logic.strip_assums_concl prem; (*delete assumptions*) |
|
214 |
fun filtr (limit, []) = [] |
|
10805 | 215 |
| filtr (limit, th::ths) = |
216 |
if limit=0 then [] |
|
217 |
else if could(pb, concl_of th) then th :: filtr(limit-1, ths) |
|
218 |
else filtr(limit,ths) |
|
0 | 219 |
in filtr(limit,ths) end; |
220 |
||
221 |
||
222 |
(*** biresolution and resolution using nets ***) |
|
223 |
||
224 |
(** To preserve the order of the rules, tag them with increasing integers **) |
|
225 |
||
226 |
(*insert one tagged brl into the pair of nets*) |
|
23178 | 227 |
fun insert_tagged_brl (kbrl as (k, (eres, th))) (inet, enet) = |
12320 | 228 |
if eres then |
229 |
(case try Thm.major_prem_of th of |
|
16809 | 230 |
SOME prem => (inet, Net.insert_term (K false) (prem, kbrl) enet) |
15531 | 231 |
| NONE => error "insert_tagged_brl: elimination rule with no premises") |
16809 | 232 |
else (Net.insert_term (K false) (concl_of th, kbrl) inet, enet); |
0 | 233 |
|
234 |
(*build a pair of nets for biresolution*) |
|
10817 | 235 |
fun build_netpair netpair brls = |
30558
2ef9892114fd
renamed Tactic.taglist/untaglist/orderlist to tag_list/untag_list/order_list (in library.ML);
wenzelm
parents:
29276
diff
changeset
|
236 |
fold_rev insert_tagged_brl (tag_list 1 brls) netpair; |
0 | 237 |
|
12320 | 238 |
(*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
|
239 |
fun eq_kbrl ((_, (_, th)), (_, (_, th'))) = Thm.eq_thm_prop (th, th') |
16809 | 240 |
|
23178 | 241 |
fun delete_tagged_brl (brl as (eres, th)) (inet, enet) = |
13925 | 242 |
(if eres then |
12320 | 243 |
(case try Thm.major_prem_of th of |
16809 | 244 |
SOME prem => (inet, Net.delete_term eq_kbrl (prem, ((), brl)) enet) |
15531 | 245 |
| NONE => (inet, enet)) (*no major premise: ignore*) |
16809 | 246 |
else (Net.delete_term eq_kbrl (Thm.concl_of th, ((), brl)) inet, enet)) |
13925 | 247 |
handle Net.DELETE => (inet,enet); |
1801 | 248 |
|
249 |
||
10817 | 250 |
(*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
|
251 |
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
|
252 |
boolean "match" indicates matching or unification.*) |
e57b5902822f
Generalized and exported biresolution_from_nets_tac to allow the declaration
paulson
parents:
3575
diff
changeset
|
253 |
fun biresolution_from_nets_tac order match (inet,enet) = |
0 | 254 |
SUBGOAL |
255 |
(fn (prem,i) => |
|
256 |
let val hyps = Logic.strip_assums_hyp prem |
|
10817 | 257 |
and concl = Logic.strip_assums_concl prem |
19482
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
wenzelm
parents:
19473
diff
changeset
|
258 |
val kbrls = Net.unify_term inet concl @ maps (Net.unify_term enet) hyps |
31945 | 259 |
in PRIMSEQ (Thm.biresolution match (order kbrls) i) end); |
0 | 260 |
|
3706
e57b5902822f
Generalized and exported biresolution_from_nets_tac to allow the declaration
paulson
parents:
3575
diff
changeset
|
261 |
(*versions taking pre-built nets. No filtering of brls*) |
30558
2ef9892114fd
renamed Tactic.taglist/untaglist/orderlist to tag_list/untag_list/order_list (in library.ML);
wenzelm
parents:
29276
diff
changeset
|
262 |
val biresolve_from_nets_tac = biresolution_from_nets_tac order_list false; |
2ef9892114fd
renamed Tactic.taglist/untaglist/orderlist to tag_list/untag_list/order_list (in library.ML);
wenzelm
parents:
29276
diff
changeset
|
263 |
val bimatch_from_nets_tac = biresolution_from_nets_tac order_list true; |
0 | 264 |
|
265 |
(*fast versions using nets internally*) |
|
670 | 266 |
val net_biresolve_tac = |
267 |
biresolve_from_nets_tac o build_netpair(Net.empty,Net.empty); |
|
268 |
||
269 |
val net_bimatch_tac = |
|
270 |
bimatch_from_nets_tac o build_netpair(Net.empty,Net.empty); |
|
0 | 271 |
|
272 |
(*** Simpler version for resolve_tac -- only one net, and no hyps ***) |
|
273 |
||
274 |
(*insert one tagged rl into the net*) |
|
23178 | 275 |
fun insert_krl (krl as (k,th)) = |
276 |
Net.insert_term (K false) (concl_of th, krl); |
|
0 | 277 |
|
278 |
(*build a net of rules for resolution*) |
|
10817 | 279 |
fun build_net rls = |
30558
2ef9892114fd
renamed Tactic.taglist/untaglist/orderlist to tag_list/untag_list/order_list (in library.ML);
wenzelm
parents:
29276
diff
changeset
|
280 |
fold_rev insert_krl (tag_list 1 rls) Net.empty; |
0 | 281 |
|
282 |
(*resolution using a net rather than rules; pred supports filt_resolve_tac*) |
|
283 |
fun filt_resolution_from_net_tac match pred net = |
|
284 |
SUBGOAL |
|
285 |
(fn (prem,i) => |
|
286 |
let val krls = Net.unify_term net (Logic.strip_assums_concl prem) |
|
10817 | 287 |
in |
288 |
if pred krls |
|
0 | 289 |
then PRIMSEQ |
31945 | 290 |
(Thm.biresolution match (map (pair false) (order_list krls)) i) |
0 | 291 |
else no_tac |
292 |
end); |
|
293 |
||
294 |
(*Resolve the subgoal using the rules (making a net) unless too flexible, |
|
295 |
which means more than maxr rules are unifiable. *) |
|
10817 | 296 |
fun filt_resolve_tac rules maxr = |
0 | 297 |
let fun pred krls = length krls <= maxr |
298 |
in filt_resolution_from_net_tac false pred (build_net rules) end; |
|
299 |
||
300 |
(*versions taking pre-built nets*) |
|
301 |
val resolve_from_net_tac = filt_resolution_from_net_tac false (K true); |
|
302 |
val match_from_net_tac = filt_resolution_from_net_tac true (K true); |
|
303 |
||
304 |
(*fast versions using nets internally*) |
|
305 |
val net_resolve_tac = resolve_from_net_tac o build_net; |
|
306 |
val net_match_tac = match_from_net_tac o build_net; |
|
307 |
||
308 |
||
309 |
(*** For Natural Deduction using (bires_flg, rule) pairs ***) |
|
310 |
||
311 |
(*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
|
312 |
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
|
313 |
| subgoals_of_brl (false,rule) = nprems_of rule; |
0 | 314 |
|
315 |
(*Less-than test: for sorting to minimize number of new subgoals*) |
|
316 |
fun lessb (brl1,brl2) = subgoals_of_brl brl1 < subgoals_of_brl brl2; |
|
317 |
||
318 |
||
27243
d549b5b0f344
removed obsolete global instantiation tactics (cf. Isar/rule_insts.ML);
wenzelm
parents:
27209
diff
changeset
|
319 |
(*Renaming of parameters in a subgoal*) |
d549b5b0f344
removed obsolete global instantiation tactics (cf. Isar/rule_insts.ML);
wenzelm
parents:
27209
diff
changeset
|
320 |
fun rename_tac xs i = |
42290
b1f544c84040
discontinued special treatment of structure Lexicon;
wenzelm
parents:
36944
diff
changeset
|
321 |
case Library.find_first (not o Lexicon.is_identifier) xs of |
15531 | 322 |
SOME x => error ("Not an identifier: " ^ x) |
31945 | 323 |
| NONE => PRIMITIVE (Thm.rename_params_rule (xs, i)); |
9535 | 324 |
|
1501 | 325 |
(*rotate_tac n i: rotate the assumptions of subgoal i by n positions, from |
326 |
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
|
327 |
fun rotate_tac 0 i = all_tac |
31945 | 328 |
| rotate_tac k i = PRIMITIVE (Thm.rotate_rule k i); |
1209 | 329 |
|
7248
322151fe6f02
new primitive rule permute_prems to underlie defer_tac and rotate_prems
paulson
parents:
6979
diff
changeset
|
330 |
(*Rotates the given subgoal to be the last.*) |
31945 | 331 |
fun defer_tac i = PRIMITIVE (Thm.permute_prems (i - 1) 1); |
7248
322151fe6f02
new primitive rule permute_prems to underlie defer_tac and rotate_prems
paulson
parents:
6979
diff
changeset
|
332 |
|
5974 | 333 |
(* remove premises that do not satisfy p; fails if all prems satisfy p *) |
334 |
fun filter_prems_tac p = |
|
15531 | 335 |
let fun Then NONE tac = SOME tac |
336 |
| Then (SOME tac) tac' = SOME(tac THEN' tac'); |
|
19473 | 337 |
fun thins H (tac,n) = |
5974 | 338 |
if p H then (tac,n+1) |
339 |
else (Then tac (rotate_tac n THEN' etac thin_rl),0); |
|
340 |
in SUBGOAL(fn (subg,n) => |
|
341 |
let val Hs = Logic.strip_assums_hyp subg |
|
19473 | 342 |
in case fst(fold thins Hs (NONE,0)) of |
15531 | 343 |
NONE => no_tac | SOME tac => tac n |
5974 | 344 |
end) |
345 |
end; |
|
346 |
||
0 | 347 |
end; |
1501 | 348 |
|
32971 | 349 |
structure Basic_Tactic: BASIC_TACTIC = Tactic; |
350 |
open Basic_Tactic; |