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