author | wenzelm |
Wed, 21 Nov 2001 00:36:51 +0100 | |
changeset 12262 | 11ff5f47df6e |
parent 12212 | 657ad5edeab6 |
child 12320 | 6e70d870ddf0 |
permissions | -rw-r--r-- |
10805 | 1 |
(* Title: Pure/tactic.ML |
0 | 2 |
ID: $Id$ |
10805 | 3 |
Author: Lawrence C Paulson, Cambridge University Computer Laboratory |
0 | 4 |
Copyright 1991 University of Cambridge |
5 |
||
10805 | 6 |
Tactics. |
0 | 7 |
*) |
8 |
||
11774 | 9 |
signature BASIC_TACTIC = |
10 |
sig |
|
10805 | 11 |
val ares_tac : thm list -> int -> tactic |
11671 | 12 |
val asm_rewrite_goal_tac: bool*bool*bool -> |
13 |
(MetaSimplifier.meta_simpset -> tactic) -> MetaSimplifier.meta_simpset -> int -> tactic |
|
10805 | 14 |
val assume_tac : int -> tactic |
15 |
val atac : int ->tactic |
|
10817 | 16 |
val bimatch_from_nets_tac: |
1501 | 17 |
(int*(bool*thm)) Net.net * (int*(bool*thm)) Net.net -> int -> tactic |
10805 | 18 |
val bimatch_tac : (bool*thm)list -> int -> tactic |
10817 | 19 |
val biresolution_from_nets_tac: |
10805 | 20 |
('a list -> (bool * thm) list) -> |
21 |
bool -> 'a Net.net * 'a Net.net -> int -> tactic |
|
10817 | 22 |
val biresolve_from_nets_tac: |
1501 | 23 |
(int*(bool*thm)) Net.net * (int*(bool*thm)) Net.net -> int -> tactic |
10805 | 24 |
val biresolve_tac : (bool*thm)list -> int -> tactic |
25 |
val build_net : thm list -> (int*thm) Net.net |
|
1501 | 26 |
val build_netpair: (int*(bool*thm)) Net.net * (int*(bool*thm)) Net.net -> |
27 |
(bool*thm)list -> (int*(bool*thm)) Net.net * (int*(bool*thm)) Net.net |
|
10817 | 28 |
val compose_inst_tac : (string*string)list -> (bool*thm*int) -> |
3409
c0466958df5d
Tidying of signature. More robust renaming in freeze_thaw.
paulson
parents:
2814
diff
changeset
|
29 |
int -> tactic |
10817 | 30 |
val compose_tac : (bool * thm * int) -> int -> tactic |
10805 | 31 |
val cut_facts_tac : thm list -> int -> tactic |
10817 | 32 |
val cut_inst_tac : (string*string)list -> thm -> int -> tactic |
7491 | 33 |
val datac : thm -> int -> int -> tactic |
10805 | 34 |
val defer_tac : int -> tactic |
35 |
val distinct_subgoals_tac : tactic |
|
36 |
val dmatch_tac : thm list -> int -> tactic |
|
37 |
val dresolve_tac : thm list -> int -> tactic |
|
10817 | 38 |
val dres_inst_tac : (string*string)list -> thm -> int -> tactic |
10805 | 39 |
val dtac : thm -> int ->tactic |
7491 | 40 |
val eatac : thm -> int -> int -> tactic |
10805 | 41 |
val etac : thm -> int ->tactic |
10817 | 42 |
val eq_assume_tac : int -> tactic |
10805 | 43 |
val ematch_tac : thm list -> int -> tactic |
44 |
val eresolve_tac : thm list -> int -> tactic |
|
45 |
val eres_inst_tac : (string*string)list -> thm -> int -> tactic |
|
7491 | 46 |
val fatac : thm -> int -> int -> tactic |
10817 | 47 |
val filter_prems_tac : (term -> bool) -> int -> tactic |
10805 | 48 |
val filter_thms : (term*term->bool) -> int*term*thm list -> thm list |
49 |
val filt_resolve_tac : thm list -> int -> int -> tactic |
|
50 |
val flexflex_tac : tactic |
|
51 |
val fold_goals_tac : thm list -> tactic |
|
52 |
val fold_rule : thm list -> thm -> thm |
|
53 |
val fold_tac : thm list -> tactic |
|
10817 | 54 |
val forward_tac : thm list -> int -> tactic |
10805 | 55 |
val forw_inst_tac : (string*string)list -> thm -> int -> tactic |
56 |
val ftac : thm -> int ->tactic |
|
10817 | 57 |
val insert_tagged_brl : ('a*(bool*thm)) * |
3409
c0466958df5d
Tidying of signature. More robust renaming in freeze_thaw.
paulson
parents:
2814
diff
changeset
|
58 |
(('a*(bool*thm))Net.net * ('a*(bool*thm))Net.net) -> |
c0466958df5d
Tidying of signature. More robust renaming in freeze_thaw.
paulson
parents:
2814
diff
changeset
|
59 |
('a*(bool*thm))Net.net * ('a*(bool*thm))Net.net |
10817 | 60 |
val delete_tagged_brl : (bool*thm) * |
3409
c0466958df5d
Tidying of signature. More robust renaming in freeze_thaw.
paulson
parents:
2814
diff
changeset
|
61 |
((int*(bool*thm))Net.net * (int*(bool*thm))Net.net) -> |
1801 | 62 |
(int*(bool*thm))Net.net * (int*(bool*thm))Net.net |
10805 | 63 |
val is_fact : thm -> bool |
64 |
val lessb : (bool * thm) * (bool * thm) -> bool |
|
65 |
val lift_inst_rule : thm * int * (string*string)list * thm -> thm |
|
66 |
val make_elim : thm -> thm |
|
67 |
val match_from_net_tac : (int*thm) Net.net -> int -> tactic |
|
68 |
val match_tac : thm list -> int -> tactic |
|
69 |
val metacut_tac : thm -> int -> tactic |
|
70 |
val net_bimatch_tac : (bool*thm) list -> int -> tactic |
|
71 |
val net_biresolve_tac : (bool*thm) list -> int -> tactic |
|
72 |
val net_match_tac : thm list -> int -> tactic |
|
73 |
val net_resolve_tac : thm list -> int -> tactic |
|
74 |
val norm_hhf : thm -> thm |
|
75 |
val norm_hhf_tac : int -> tactic |
|
10817 | 76 |
val PRIMITIVE : (thm -> thm) -> tactic |
77 |
val PRIMSEQ : (thm -> thm Seq.seq) -> tactic |
|
10805 | 78 |
val prune_params_tac : tactic |
79 |
val rename_params_tac : string list -> int -> tactic |
|
80 |
val rename_tac : string -> int -> tactic |
|
81 |
val rename_last_tac : string -> string list -> int -> tactic |
|
82 |
val resolve_from_net_tac : (int*thm) Net.net -> int -> tactic |
|
83 |
val resolve_tac : thm list -> int -> tactic |
|
10817 | 84 |
val res_inst_tac : (string*string)list -> thm -> int -> tactic |
10444 | 85 |
val rewrite_goal_tac : thm list -> int -> tactic |
3575
4e9beacb5339
improved rewrite_thm / rewrite_goals to handle conditional eqns;
wenzelm
parents:
3554
diff
changeset
|
86 |
val rewrite_goals_rule: thm list -> thm -> thm |
10805 | 87 |
val rewrite_rule : thm list -> thm -> thm |
88 |
val rewrite_goals_tac : thm list -> tactic |
|
89 |
val rewrite_tac : thm list -> tactic |
|
90 |
val rewtac : thm -> tactic |
|
91 |
val rotate_tac : int -> int -> tactic |
|
92 |
val rtac : thm -> int -> tactic |
|
93 |
val rule_by_tactic : tactic -> thm -> thm |
|
94 |
val solve_tac : thm list -> int -> tactic |
|
95 |
val subgoal_tac : string -> int -> tactic |
|
96 |
val subgoals_tac : string list -> int -> tactic |
|
97 |
val subgoals_of_brl : bool * thm -> int |
|
98 |
val term_lift_inst_rule : |
|
1975
eec67972b1bf
renamed cterm_lift_inst_rule to term_lift_inst_rule and made it take
nipkow
parents:
1966
diff
changeset
|
99 |
thm * int * (indexname*typ)list * ((indexname*typ)*term)list * thm |
eec67972b1bf
renamed cterm_lift_inst_rule to term_lift_inst_rule and made it take
nipkow
parents:
1966
diff
changeset
|
100 |
-> thm |
10347 | 101 |
val instantiate_tac : (string * string) list -> tactic |
10805 | 102 |
val thin_tac : string -> int -> tactic |
103 |
val trace_goalno_tac : (int -> tactic) -> int -> tactic |
|
11774 | 104 |
end; |
0 | 105 |
|
11774 | 106 |
signature TACTIC = |
107 |
sig |
|
108 |
include BASIC_TACTIC |
|
11929 | 109 |
val innermost_params: int -> thm -> (string * typ) list |
11774 | 110 |
val untaglist: (int * 'a) list -> 'a list |
111 |
val orderlist: (int * 'a) list -> 'a list |
|
112 |
val rewrite: bool -> thm list -> cterm -> thm |
|
113 |
val rewrite_cterm: bool -> thm list -> cterm -> cterm |
|
114 |
val simplify: bool -> thm list -> thm -> thm |
|
12139 | 115 |
val conjunction_tac: tactic |
11970 | 116 |
val prove: Sign.sg -> string list -> term list -> term -> (thm list -> tactic) -> thm |
117 |
val prove_standard: Sign.sg -> string list -> term list -> term -> (thm list -> tactic) -> thm |
|
11774 | 118 |
end; |
0 | 119 |
|
11774 | 120 |
structure Tactic: TACTIC = |
0 | 121 |
struct |
122 |
||
1501 | 123 |
(*Discover which goal is chosen: SOMEGOAL(trace_goalno_tac tac) *) |
10817 | 124 |
fun trace_goalno_tac tac i st = |
4270 | 125 |
case Seq.pull(tac i st) of |
10805 | 126 |
None => Seq.empty |
12262 | 127 |
| seqcell => (tracing ("Subgoal " ^ string_of_int i ^ " selected"); |
10805 | 128 |
Seq.make(fn()=> seqcell)); |
0 | 129 |
|
130 |
(*Makes a rule by applying a tactic to an existing rule*) |
|
1501 | 131 |
fun rule_by_tactic tac rl = |
2688 | 132 |
let val (st, thaw) = freeze_thaw (zero_var_indexes rl) |
4270 | 133 |
in case Seq.pull (tac st) of |
10805 | 134 |
None => raise THM("rule_by_tactic", 0, [rl]) |
2688 | 135 |
| Some(st',_) => Thm.varifyT (thaw st') |
136 |
end; |
|
10817 | 137 |
|
0 | 138 |
(*** Basic tactics ***) |
139 |
||
140 |
(*Makes a tactic whose effect on a state is given by thmfun: thm->thm seq.*) |
|
4270 | 141 |
fun PRIMSEQ thmfun st = thmfun st handle THM _ => Seq.empty; |
0 | 142 |
|
143 |
(*Makes a tactic whose effect on a state is given by thmfun: thm->thm.*) |
|
4270 | 144 |
fun PRIMITIVE thmfun = PRIMSEQ (Seq.single o thmfun); |
0 | 145 |
|
146 |
(*** The following fail if the goal number is out of range: |
|
147 |
thus (REPEAT (resolve_tac rules i)) stops once subgoal i disappears. *) |
|
148 |
||
149 |
(*Solve subgoal i by assumption*) |
|
150 |
fun assume_tac i = PRIMSEQ (assumption i); |
|
151 |
||
152 |
(*Solve subgoal i by assumption, using no unification*) |
|
153 |
fun eq_assume_tac i = PRIMITIVE (eq_assumption i); |
|
154 |
||
155 |
(** Resolution/matching tactics **) |
|
156 |
||
157 |
(*The composition rule/state: no lifting or var renaming. |
|
158 |
The arg = (bires_flg, orule, m) ; see bicompose for explanation.*) |
|
159 |
fun compose_tac arg i = PRIMSEQ (bicompose false arg i); |
|
160 |
||
161 |
(*Converts a "destruct" rule like P&Q==>P to an "elimination" rule |
|
162 |
like [| P&Q; P==>R |] ==> R *) |
|
163 |
fun make_elim rl = zero_var_indexes (rl RS revcut_rl); |
|
164 |
||
165 |
(*Attack subgoal i by resolution, using flags to indicate elimination rules*) |
|
166 |
fun biresolve_tac brules i = PRIMSEQ (biresolution false brules i); |
|
167 |
||
168 |
(*Resolution: the simple case, works for introduction rules*) |
|
169 |
fun resolve_tac rules = biresolve_tac (map (pair false) rules); |
|
170 |
||
171 |
(*Resolution with elimination rules only*) |
|
172 |
fun eresolve_tac rules = biresolve_tac (map (pair true) rules); |
|
173 |
||
174 |
(*Forward reasoning using destruction rules.*) |
|
175 |
fun forward_tac rls = resolve_tac (map make_elim rls) THEN' assume_tac; |
|
176 |
||
177 |
(*Like forward_tac, but deletes the assumption after use.*) |
|
178 |
fun dresolve_tac rls = eresolve_tac (map make_elim rls); |
|
179 |
||
180 |
(*Shorthand versions: for resolution with a single theorem*) |
|
7491 | 181 |
val atac = assume_tac; |
182 |
fun rtac rl = resolve_tac [rl]; |
|
183 |
fun dtac rl = dresolve_tac [rl]; |
|
1460 | 184 |
fun etac rl = eresolve_tac [rl]; |
7491 | 185 |
fun ftac rl = forward_tac [rl]; |
186 |
fun datac thm j = EVERY' (dtac thm::replicate j atac); |
|
187 |
fun eatac thm j = EVERY' (etac thm::replicate j atac); |
|
188 |
fun fatac thm j = EVERY' (ftac thm::replicate j atac); |
|
0 | 189 |
|
190 |
(*Use an assumption or some rules ... A popular combination!*) |
|
191 |
fun ares_tac rules = assume_tac ORELSE' resolve_tac rules; |
|
192 |
||
5263 | 193 |
fun solve_tac rules = resolve_tac rules THEN_ALL_NEW assume_tac; |
194 |
||
0 | 195 |
(*Matching tactics -- as above, but forbid updating of state*) |
196 |
fun bimatch_tac brules i = PRIMSEQ (biresolution true brules i); |
|
197 |
fun match_tac rules = bimatch_tac (map (pair false) rules); |
|
198 |
fun ematch_tac rules = bimatch_tac (map (pair true) rules); |
|
199 |
fun dmatch_tac rls = ematch_tac (map make_elim rls); |
|
200 |
||
201 |
(*Smash all flex-flex disagreement pairs in the proof state.*) |
|
202 |
val flexflex_tac = PRIMSEQ flexflex_rule; |
|
203 |
||
3409
c0466958df5d
Tidying of signature. More robust renaming in freeze_thaw.
paulson
parents:
2814
diff
changeset
|
204 |
|
c0466958df5d
Tidying of signature. More robust renaming in freeze_thaw.
paulson
parents:
2814
diff
changeset
|
205 |
(*Remove duplicate subgoals. By Mark Staples*) |
c0466958df5d
Tidying of signature. More robust renaming in freeze_thaw.
paulson
parents:
2814
diff
changeset
|
206 |
local |
c0466958df5d
Tidying of signature. More robust renaming in freeze_thaw.
paulson
parents:
2814
diff
changeset
|
207 |
fun cterm_aconv (a,b) = #t (rep_cterm a) aconv #t (rep_cterm b); |
c0466958df5d
Tidying of signature. More robust renaming in freeze_thaw.
paulson
parents:
2814
diff
changeset
|
208 |
in |
10817 | 209 |
fun distinct_subgoals_tac state = |
3409
c0466958df5d
Tidying of signature. More robust renaming in freeze_thaw.
paulson
parents:
2814
diff
changeset
|
210 |
let val (frozth,thawfn) = freeze_thaw state |
10805 | 211 |
val froz_prems = cprems_of frozth |
212 |
val assumed = implies_elim_list frozth (map assume froz_prems) |
|
213 |
val implied = implies_intr_list (gen_distinct cterm_aconv froz_prems) |
|
214 |
assumed; |
|
4270 | 215 |
in Seq.single (thawfn implied) end |
10817 | 216 |
end; |
3409
c0466958df5d
Tidying of signature. More robust renaming in freeze_thaw.
paulson
parents:
2814
diff
changeset
|
217 |
|
c0466958df5d
Tidying of signature. More robust renaming in freeze_thaw.
paulson
parents:
2814
diff
changeset
|
218 |
|
11929 | 219 |
(*Determine print names of goal parameters (reversed)*) |
220 |
fun innermost_params i st = |
|
221 |
let val (_, _, Bi, _) = dest_state (st, i) |
|
222 |
in rename_wrt_term Bi (Logic.strip_params Bi) end; |
|
223 |
||
0 | 224 |
(*Lift and instantiate a rule wrt the given state and subgoal number *) |
1501 | 225 |
fun lift_inst_rule (st, i, sinsts, rule) = |
226 |
let val {maxidx,sign,...} = rep_thm st |
|
227 |
val (_, _, Bi, _) = dest_state(st,i) |
|
10805 | 228 |
val params = Logic.strip_params Bi (*params of subgoal i*) |
0 | 229 |
val params = rev(rename_wrt_term Bi params) (*as they are printed*) |
230 |
val paramTs = map #2 params |
|
231 |
and inc = maxidx+1 |
|
232 |
fun liftvar (Var ((a,j), T)) = Var((a, j+inc), paramTs---> incr_tvar inc T) |
|
233 |
| liftvar t = raise TERM("Variable expected", [t]); |
|
10817 | 234 |
fun liftterm t = list_abs_free (params, |
10805 | 235 |
Logic.incr_indexes(paramTs,inc) t) |
0 | 236 |
(*Lifts instantiation pair over params*) |
230 | 237 |
fun liftpair (cv,ct) = (cterm_fun liftvar cv, cterm_fun liftterm ct) |
0 | 238 |
fun lifttvar((a,i),ctyp) = |
10805 | 239 |
let val {T,sign} = rep_ctyp ctyp |
240 |
in ((a,i+inc), ctyp_of sign (incr_tvar inc T)) end |
|
1501 | 241 |
val rts = types_sorts rule and (types,sorts) = types_sorts st |
0 | 242 |
fun types'(a,~1) = (case assoc(params,a) of None => types(a,~1) | sm => sm) |
243 |
| types'(ixn) = types ixn; |
|
949
83c588d6fee9
Changed treatment of during type inference internally generated type
nipkow
parents:
947
diff
changeset
|
244 |
val used = add_term_tvarnames |
1501 | 245 |
(#prop(rep_thm st) $ #prop(rep_thm rule),[]) |
949
83c588d6fee9
Changed treatment of during type inference internally generated type
nipkow
parents:
947
diff
changeset
|
246 |
val (Tinsts,insts) = read_insts sign rts (types',sorts) used sinsts |
8129
29e239c7b8c2
Thm.instantiate no longer normalizes, but Drule.instantiate does
paulson
parents:
7596
diff
changeset
|
247 |
in Drule.instantiate (map lifttvar Tinsts, map liftpair insts) |
29e239c7b8c2
Thm.instantiate no longer normalizes, but Drule.instantiate does
paulson
parents:
7596
diff
changeset
|
248 |
(lift_rule (st,i) rule) |
0 | 249 |
end; |
250 |
||
3984 | 251 |
(* |
252 |
Like lift_inst_rule but takes terms, not strings, where the terms may contain |
|
253 |
Bounds referring to parameters of the subgoal. |
|
254 |
||
255 |
insts: [...,(vj,tj),...] |
|
256 |
||
257 |
The tj may contain references to parameters of subgoal i of the state st |
|
258 |
in the form of Bound k, i.e. the tj may be subterms of the subgoal. |
|
259 |
To saturate the lose bound vars, the tj are enclosed in abstractions |
|
260 |
corresponding to the parameters of subgoal i, thus turning them into |
|
261 |
functions. At the same time, the types of the vj are lifted. |
|
262 |
||
263 |
NB: the types in insts must be correctly instantiated already, |
|
264 |
i.e. Tinsts is not applied to insts. |
|
265 |
*) |
|
1975
eec67972b1bf
renamed cterm_lift_inst_rule to term_lift_inst_rule and made it take
nipkow
parents:
1966
diff
changeset
|
266 |
fun term_lift_inst_rule (st, i, Tinsts, insts, rule) = |
1966 | 267 |
let val {maxidx,sign,...} = rep_thm st |
268 |
val (_, _, Bi, _) = dest_state(st,i) |
|
269 |
val params = Logic.strip_params Bi (*params of subgoal i*) |
|
270 |
val paramTs = map #2 params |
|
271 |
and inc = maxidx+1 |
|
1975
eec67972b1bf
renamed cterm_lift_inst_rule to term_lift_inst_rule and made it take
nipkow
parents:
1966
diff
changeset
|
272 |
fun liftvar ((a,j), T) = Var((a, j+inc), paramTs---> incr_tvar inc T) |
eec67972b1bf
renamed cterm_lift_inst_rule to term_lift_inst_rule and made it take
nipkow
parents:
1966
diff
changeset
|
273 |
(*lift only Var, not term, which must be lifted already*) |
eec67972b1bf
renamed cterm_lift_inst_rule to term_lift_inst_rule and made it take
nipkow
parents:
1966
diff
changeset
|
274 |
fun liftpair (v,t) = (cterm_of sign (liftvar v), cterm_of sign t) |
eec67972b1bf
renamed cterm_lift_inst_rule to term_lift_inst_rule and made it take
nipkow
parents:
1966
diff
changeset
|
275 |
fun liftTpair((a,i),T) = ((a,i+inc), ctyp_of sign (incr_tvar inc T)) |
8129
29e239c7b8c2
Thm.instantiate no longer normalizes, but Drule.instantiate does
paulson
parents:
7596
diff
changeset
|
276 |
in Drule.instantiate (map liftTpair Tinsts, map liftpair insts) |
29e239c7b8c2
Thm.instantiate no longer normalizes, but Drule.instantiate does
paulson
parents:
7596
diff
changeset
|
277 |
(lift_rule (st,i) rule) |
1966 | 278 |
end; |
0 | 279 |
|
280 |
(*** Resolve after lifting and instantation; may refer to parameters of the |
|
281 |
subgoal. Fails if "i" is out of range. ***) |
|
282 |
||
283 |
(*compose version: arguments are as for bicompose.*) |
|
10817 | 284 |
fun compose_inst_tac sinsts (bires_flg, rule, nsubgoal) i st = |
8977
dd8bc754a072
res_inst_tac, etc., no longer print the "dest_state" message when the selected
paulson
parents:
8129
diff
changeset
|
285 |
if i > nprems_of st then no_tac st |
dd8bc754a072
res_inst_tac, etc., no longer print the "dest_state" message when the selected
paulson
parents:
8129
diff
changeset
|
286 |
else st |> |
dd8bc754a072
res_inst_tac, etc., no longer print the "dest_state" message when the selected
paulson
parents:
8129
diff
changeset
|
287 |
(compose_tac (bires_flg, lift_inst_rule (st, i, sinsts, rule), nsubgoal) i |
12262 | 288 |
handle TERM (msg,_) => (warning msg; no_tac) |
289 |
| THM (msg,_,_) => (warning msg; no_tac)); |
|
0 | 290 |
|
761 | 291 |
(*"Resolve" version. Note: res_inst_tac cannot behave sensibly if the |
292 |
terms that are substituted contain (term or type) unknowns from the |
|
293 |
goal, because it is unable to instantiate goal unknowns at the same time. |
|
294 |
||
2029 | 295 |
The type checker is instructed not to freeze flexible type vars that |
952
9e10962866b0
Removed an old bug which made some simultaneous instantiations fail if they
nipkow
parents:
949
diff
changeset
|
296 |
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
|
297 |
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
|
298 |
goals. |
761 | 299 |
*) |
0 | 300 |
fun res_inst_tac sinsts rule i = |
301 |
compose_inst_tac sinsts (false, rule, nprems_of rule) i; |
|
302 |
||
1501 | 303 |
(*eresolve elimination version*) |
0 | 304 |
fun eres_inst_tac sinsts rule i = |
305 |
compose_inst_tac sinsts (true, rule, nprems_of rule) i; |
|
306 |
||
270
d506ea00c825
tactic/make_elim_preserve: recoded to avoid using lift_inst_rule. Instead
lcp
parents:
230
diff
changeset
|
307 |
(*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
|
308 |
increment revcut_rl instead.*) |
10817 | 309 |
fun make_elim_preserve rl = |
270
d506ea00c825
tactic/make_elim_preserve: recoded to avoid using lift_inst_rule. Instead
lcp
parents:
230
diff
changeset
|
310 |
let val {maxidx,...} = rep_thm rl |
6390 | 311 |
fun cvar ixn = cterm_of (Theory.sign_of ProtoPure.thy) (Var(ixn,propT)); |
10817 | 312 |
val revcut_rl' = |
10805 | 313 |
instantiate ([], [(cvar("V",0), cvar("V",maxidx+1)), |
314 |
(cvar("W",0), cvar("W",maxidx+1))]) revcut_rl |
|
0 | 315 |
val arg = (false, rl, nprems_of rl) |
4270 | 316 |
val [th] = Seq.list_of (bicompose false arg 1 revcut_rl') |
0 | 317 |
in th end |
318 |
handle Bind => raise THM("make_elim_preserve", 1, [rl]); |
|
319 |
||
270
d506ea00c825
tactic/make_elim_preserve: recoded to avoid using lift_inst_rule. Instead
lcp
parents:
230
diff
changeset
|
320 |
(*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
|
321 |
fun cut_inst_tac sinsts rule = res_inst_tac sinsts (make_elim_preserve rule); |
0 | 322 |
|
270
d506ea00c825
tactic/make_elim_preserve: recoded to avoid using lift_inst_rule. Instead
lcp
parents:
230
diff
changeset
|
323 |
(*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
|
324 |
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
|
325 |
|
d506ea00c825
tactic/make_elim_preserve: recoded to avoid using lift_inst_rule. Instead
lcp
parents:
230
diff
changeset
|
326 |
(*dresolve tactic applies a RULE to replace an assumption*) |
0 | 327 |
fun dres_inst_tac sinsts rule = eres_inst_tac sinsts (make_elim_preserve rule); |
328 |
||
10347 | 329 |
(*instantiate variables in the whole state*) |
330 |
val instantiate_tac = PRIMITIVE o read_instantiate; |
|
331 |
||
1951 | 332 |
(*Deletion of an assumption*) |
333 |
fun thin_tac s = eres_inst_tac [("V",s)] thin_rl; |
|
334 |
||
270
d506ea00c825
tactic/make_elim_preserve: recoded to avoid using lift_inst_rule. Instead
lcp
parents:
230
diff
changeset
|
335 |
(*** Applications of cut_rl ***) |
0 | 336 |
|
337 |
(*Used by metacut_tac*) |
|
338 |
fun bires_cut_tac arg i = |
|
1460 | 339 |
resolve_tac [cut_rl] i THEN biresolve_tac arg (i+1) ; |
0 | 340 |
|
341 |
(*The conclusion of the rule gets assumed in subgoal i, |
|
342 |
while subgoal i+1,... are the premises of the rule.*) |
|
343 |
fun metacut_tac rule = bires_cut_tac [(false,rule)]; |
|
344 |
||
345 |
(*Recognizes theorems that are not rules, but simple propositions*) |
|
346 |
fun is_fact rl = |
|
347 |
case prems_of rl of |
|
10805 | 348 |
[] => true | _::_ => false; |
0 | 349 |
|
350 |
(*"Cut" all facts from theorem list into the goal as assumptions. *) |
|
351 |
fun cut_facts_tac ths i = |
|
352 |
EVERY (map (fn th => metacut_tac th i) (filter is_fact ths)); |
|
353 |
||
354 |
(*Introduce the given proposition as a lemma and subgoal*) |
|
10817 | 355 |
fun subgoal_tac sprop i st = |
4270 | 356 |
let val st' = Seq.hd (res_inst_tac [("psi", sprop)] cut_rl i st) |
4178
e64ff1c1bc70
subgoal_tac displays a warning if the new subgoal has type variables
paulson
parents:
3991
diff
changeset
|
357 |
val concl' = Logic.strip_assums_concl (List.nth(prems_of st', i)) |
10817 | 358 |
in |
4178
e64ff1c1bc70
subgoal_tac displays a warning if the new subgoal has type variables
paulson
parents:
3991
diff
changeset
|
359 |
if null (term_tvars concl') then () |
e64ff1c1bc70
subgoal_tac displays a warning if the new subgoal has type variables
paulson
parents:
3991
diff
changeset
|
360 |
else warning"Type variables in new subgoal: add a type constraint?"; |
4270 | 361 |
Seq.single st' |
4178
e64ff1c1bc70
subgoal_tac displays a warning if the new subgoal has type variables
paulson
parents:
3991
diff
changeset
|
362 |
end; |
0 | 363 |
|
439 | 364 |
(*Introduce a list of lemmas and subgoals*) |
365 |
fun subgoals_tac sprops = EVERY' (map subgoal_tac sprops); |
|
366 |
||
0 | 367 |
|
368 |
(**** Indexing and filtering of theorems ****) |
|
369 |
||
370 |
(*Returns the list of potentially resolvable theorems for the goal "prem", |
|
10805 | 371 |
using the predicate could(subgoal,concl). |
0 | 372 |
Resulting list is no longer than "limit"*) |
373 |
fun filter_thms could (limit, prem, ths) = |
|
374 |
let val pb = Logic.strip_assums_concl prem; (*delete assumptions*) |
|
375 |
fun filtr (limit, []) = [] |
|
10805 | 376 |
| filtr (limit, th::ths) = |
377 |
if limit=0 then [] |
|
378 |
else if could(pb, concl_of th) then th :: filtr(limit-1, ths) |
|
379 |
else filtr(limit,ths) |
|
0 | 380 |
in filtr(limit,ths) end; |
381 |
||
382 |
||
383 |
(*** biresolution and resolution using nets ***) |
|
384 |
||
385 |
(** To preserve the order of the rules, tag them with increasing integers **) |
|
386 |
||
387 |
(*insert tags*) |
|
388 |
fun taglist k [] = [] |
|
389 |
| taglist k (x::xs) = (k,x) :: taglist (k+1) xs; |
|
390 |
||
391 |
(*remove tags and suppress duplicates -- list is assumed sorted!*) |
|
392 |
fun untaglist [] = [] |
|
393 |
| untaglist [(k:int,x)] = [x] |
|
394 |
| untaglist ((k,x) :: (rest as (k',x')::_)) = |
|
395 |
if k=k' then untaglist rest |
|
396 |
else x :: untaglist rest; |
|
397 |
||
398 |
(*return list elements in original order*) |
|
10817 | 399 |
fun orderlist kbrls = untaglist (sort (int_ord o pairself fst) kbrls); |
0 | 400 |
|
401 |
(*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
|
402 |
fun insert_tagged_brl (kbrl as (k,(eres,th)), (inet,enet)) = |
10817 | 403 |
if eres then |
10805 | 404 |
case prems_of th of |
405 |
prem::_ => (inet, Net.insert_term ((prem,kbrl), enet, K false)) |
|
406 |
| [] => error"insert_tagged_brl: elimination rule with no premises" |
|
0 | 407 |
else (Net.insert_term ((concl_of th, kbrl), inet, K false), enet); |
408 |
||
409 |
(*build a pair of nets for biresolution*) |
|
10817 | 410 |
fun build_netpair netpair brls = |
1077
c2df11ae8b55
Renamed insert_kbrl to insert_tagged_brl and exported it. Now
lcp
parents:
952
diff
changeset
|
411 |
foldr insert_tagged_brl (taglist 1 brls, netpair); |
0 | 412 |
|
1801 | 413 |
(*delete one kbrl from the pair of nets; |
414 |
we don't know the value of k, so we use 0 and ignore it in the comparison*) |
|
415 |
local |
|
416 |
fun eq_kbrl ((k,(eres,th)), (k',(eres',th'))) = eq_thm (th,th') |
|
417 |
in |
|
418 |
fun delete_tagged_brl (brl as (eres,th), (inet,enet)) = |
|
10817 | 419 |
if eres then |
10805 | 420 |
case prems_of th of |
421 |
prem::_ => (inet, Net.delete_term ((prem, (0,brl)), enet, eq_kbrl)) |
|
422 |
| [] => (inet,enet) (*no major premise: ignore*) |
|
1801 | 423 |
else (Net.delete_term ((concl_of th, (0,brl)), inet, eq_kbrl), enet); |
424 |
end; |
|
425 |
||
426 |
||
10817 | 427 |
(*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
|
428 |
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
|
429 |
boolean "match" indicates matching or unification.*) |
e57b5902822f
Generalized and exported biresolution_from_nets_tac to allow the declaration
paulson
parents:
3575
diff
changeset
|
430 |
fun biresolution_from_nets_tac order match (inet,enet) = |
0 | 431 |
SUBGOAL |
432 |
(fn (prem,i) => |
|
433 |
let val hyps = Logic.strip_assums_hyp prem |
|
10817 | 434 |
and concl = Logic.strip_assums_concl prem |
0 | 435 |
val kbrls = Net.unify_term inet concl @ |
2672
85d7e800d754
Replaced "flat" by the Basis Library function List.concat
paulson
parents:
2580
diff
changeset
|
436 |
List.concat (map (Net.unify_term enet) hyps) |
3706
e57b5902822f
Generalized and exported biresolution_from_nets_tac to allow the declaration
paulson
parents:
3575
diff
changeset
|
437 |
in PRIMSEQ (biresolution match (order kbrls) i) end); |
0 | 438 |
|
3706
e57b5902822f
Generalized and exported biresolution_from_nets_tac to allow the declaration
paulson
parents:
3575
diff
changeset
|
439 |
(*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
|
440 |
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
|
441 |
val bimatch_from_nets_tac = biresolution_from_nets_tac orderlist true; |
0 | 442 |
|
443 |
(*fast versions using nets internally*) |
|
670 | 444 |
val net_biresolve_tac = |
445 |
biresolve_from_nets_tac o build_netpair(Net.empty,Net.empty); |
|
446 |
||
447 |
val net_bimatch_tac = |
|
448 |
bimatch_from_nets_tac o build_netpair(Net.empty,Net.empty); |
|
0 | 449 |
|
450 |
(*** Simpler version for resolve_tac -- only one net, and no hyps ***) |
|
451 |
||
452 |
(*insert one tagged rl into the net*) |
|
453 |
fun insert_krl (krl as (k,th), net) = |
|
454 |
Net.insert_term ((concl_of th, krl), net, K false); |
|
455 |
||
456 |
(*build a net of rules for resolution*) |
|
10817 | 457 |
fun build_net rls = |
0 | 458 |
foldr insert_krl (taglist 1 rls, Net.empty); |
459 |
||
460 |
(*resolution using a net rather than rules; pred supports filt_resolve_tac*) |
|
461 |
fun filt_resolution_from_net_tac match pred net = |
|
462 |
SUBGOAL |
|
463 |
(fn (prem,i) => |
|
464 |
let val krls = Net.unify_term net (Logic.strip_assums_concl prem) |
|
10817 | 465 |
in |
466 |
if pred krls |
|
0 | 467 |
then PRIMSEQ |
10805 | 468 |
(biresolution match (map (pair false) (orderlist krls)) i) |
0 | 469 |
else no_tac |
470 |
end); |
|
471 |
||
472 |
(*Resolve the subgoal using the rules (making a net) unless too flexible, |
|
473 |
which means more than maxr rules are unifiable. *) |
|
10817 | 474 |
fun filt_resolve_tac rules maxr = |
0 | 475 |
let fun pred krls = length krls <= maxr |
476 |
in filt_resolution_from_net_tac false pred (build_net rules) end; |
|
477 |
||
478 |
(*versions taking pre-built nets*) |
|
479 |
val resolve_from_net_tac = filt_resolution_from_net_tac false (K true); |
|
480 |
val match_from_net_tac = filt_resolution_from_net_tac true (K true); |
|
481 |
||
482 |
(*fast versions using nets internally*) |
|
483 |
val net_resolve_tac = resolve_from_net_tac o build_net; |
|
484 |
val net_match_tac = match_from_net_tac o build_net; |
|
485 |
||
486 |
||
487 |
(*** For Natural Deduction using (bires_flg, rule) pairs ***) |
|
488 |
||
489 |
(*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
|
490 |
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
|
491 |
| subgoals_of_brl (false,rule) = nprems_of rule; |
0 | 492 |
|
493 |
(*Less-than test: for sorting to minimize number of new subgoals*) |
|
494 |
fun lessb (brl1,brl2) = subgoals_of_brl brl1 < subgoals_of_brl brl2; |
|
495 |
||
496 |
||
497 |
(*** Meta-Rewriting Tactics ***) |
|
498 |
||
499 |
fun result1 tacf mss thm = |
|
4270 | 500 |
apsome fst (Seq.pull (tacf mss thm)); |
0 | 501 |
|
3575
4e9beacb5339
improved rewrite_thm / rewrite_goals to handle conditional eqns;
wenzelm
parents:
3554
diff
changeset
|
502 |
val simple_prover = |
11671 | 503 |
result1 (fn mss => ALLGOALS (resolve_tac (MetaSimplifier.prems_of_mss mss))); |
3575
4e9beacb5339
improved rewrite_thm / rewrite_goals to handle conditional eqns;
wenzelm
parents:
3554
diff
changeset
|
504 |
|
11768
48bc55f43774
unified rewrite/rewrite_cterm/simplify interface;
wenzelm
parents:
11762
diff
changeset
|
505 |
val rewrite = MetaSimplifier.rewrite_aux simple_prover; |
48bc55f43774
unified rewrite/rewrite_cterm/simplify interface;
wenzelm
parents:
11762
diff
changeset
|
506 |
val rewrite_cterm = (#2 o Thm.dest_comb o #prop o Thm.crep_thm) ooo rewrite; |
48bc55f43774
unified rewrite/rewrite_cterm/simplify interface;
wenzelm
parents:
11762
diff
changeset
|
507 |
val simplify = MetaSimplifier.simplify_aux simple_prover; |
48bc55f43774
unified rewrite/rewrite_cterm/simplify interface;
wenzelm
parents:
11762
diff
changeset
|
508 |
val rewrite_rule = simplify true; |
10415
e6d7b77a0574
moved rewriting functions from Drule to MetaSimplifier
berghofe
parents:
10347
diff
changeset
|
509 |
val rewrite_goals_rule = MetaSimplifier.rewrite_goals_rule_aux simple_prover; |
3575
4e9beacb5339
improved rewrite_thm / rewrite_goals to handle conditional eqns;
wenzelm
parents:
3554
diff
changeset
|
510 |
|
2145 | 511 |
(*Rewrite subgoal i only. SELECT_GOAL avoids inefficiencies in goals_conv.*) |
512 |
fun asm_rewrite_goal_tac mode prover_tac mss = |
|
11671 | 513 |
SELECT_GOAL |
514 |
(PRIMITIVE (MetaSimplifier.rewrite_goal_rule mode (result1 prover_tac) mss 1)); |
|
0 | 515 |
|
10444 | 516 |
fun rewrite_goal_tac rews = |
517 |
asm_rewrite_goal_tac (true, false, false) (K no_tac) (MetaSimplifier.mss_of rews); |
|
518 |
||
69
e7588b53d6b0
tactic/fold_tac,fold_goals_tac: now handle critical pairs on the
lcp
parents:
0
diff
changeset
|
519 |
(*Rewrite throughout proof state. *) |
e7588b53d6b0
tactic/fold_tac,fold_goals_tac: now handle critical pairs on the
lcp
parents:
0
diff
changeset
|
520 |
fun rewrite_tac defs = PRIMITIVE(rewrite_rule defs); |
0 | 521 |
|
522 |
(*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
|
523 |
fun rewrite_goals_tac defs = PRIMITIVE (rewrite_goals_rule defs); |
1460 | 524 |
fun rewtac def = rewrite_goals_tac [def]; |
0 | 525 |
|
10817 | 526 |
fun norm_hhf th = |
527 |
(if Logic.is_norm_hhf (#prop (Thm.rep_thm th)) then th else rewrite_rule [Drule.norm_hhf_eq] th) |
|
528 |
|> Drule.forall_elim_vars_safe; |
|
529 |
||
530 |
val norm_hhf_tac = SUBGOAL (fn (t, i) => |
|
531 |
if Logic.is_norm_hhf t then all_tac |
|
532 |
else rewrite_goal_tac [Drule.norm_hhf_eq] i); |
|
10805 | 533 |
|
0 | 534 |
|
1501 | 535 |
(*** 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
|
536 |
|
e7588b53d6b0
tactic/fold_tac,fold_goals_tac: now handle critical pairs on the
lcp
parents:
0
diff
changeset
|
537 |
(*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
|
538 |
fun term_depth (Abs(a,T,t)) = 1 + term_depth t |
2145 | 539 |
| term_depth (f$t) = 1 + Int.max(term_depth f, term_depth t) |
69
e7588b53d6b0
tactic/fold_tac,fold_goals_tac: now handle critical pairs on the
lcp
parents:
0
diff
changeset
|
540 |
| term_depth _ = 0; |
e7588b53d6b0
tactic/fold_tac,fold_goals_tac: now handle critical pairs on the
lcp
parents:
0
diff
changeset
|
541 |
|
e7588b53d6b0
tactic/fold_tac,fold_goals_tac: now handle critical pairs on the
lcp
parents:
0
diff
changeset
|
542 |
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
|
543 |
|
e7588b53d6b0
tactic/fold_tac,fold_goals_tac: now handle critical pairs on the
lcp
parents:
0
diff
changeset
|
544 |
(*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
|
545 |
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
|
546 |
fun sort_lhs_depths defs = |
e7588b53d6b0
tactic/fold_tac,fold_goals_tac: now handle critical pairs on the
lcp
parents:
0
diff
changeset
|
547 |
let val keylist = make_keylist (term_depth o lhs_of_thm) defs |
4438 | 548 |
val keys = distinct (sort (rev_order o int_ord) (map #2 keylist)) |
69
e7588b53d6b0
tactic/fold_tac,fold_goals_tac: now handle critical pairs on the
lcp
parents:
0
diff
changeset
|
549 |
in map (keyfilter keylist) keys end; |
e7588b53d6b0
tactic/fold_tac,fold_goals_tac: now handle critical pairs on the
lcp
parents:
0
diff
changeset
|
550 |
|
7596 | 551 |
val rev_defs = sort_lhs_depths o map symmetric; |
69
e7588b53d6b0
tactic/fold_tac,fold_goals_tac: now handle critical pairs on the
lcp
parents:
0
diff
changeset
|
552 |
|
7596 | 553 |
fun fold_rule defs thm = foldl (fn (th, ds) => rewrite_rule ds th) (thm, rev_defs defs); |
554 |
fun fold_tac defs = EVERY (map rewrite_tac (rev_defs defs)); |
|
555 |
fun fold_goals_tac defs = EVERY (map rewrite_goals_tac (rev_defs defs)); |
|
69
e7588b53d6b0
tactic/fold_tac,fold_goals_tac: now handle critical pairs on the
lcp
parents:
0
diff
changeset
|
556 |
|
e7588b53d6b0
tactic/fold_tac,fold_goals_tac: now handle critical pairs on the
lcp
parents:
0
diff
changeset
|
557 |
|
e7588b53d6b0
tactic/fold_tac,fold_goals_tac: now handle critical pairs on the
lcp
parents:
0
diff
changeset
|
558 |
(*** Renaming of parameters in a subgoal |
e7588b53d6b0
tactic/fold_tac,fold_goals_tac: now handle critical pairs on the
lcp
parents:
0
diff
changeset
|
559 |
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
|
560 |
separated by blanks ***) |
0 | 561 |
|
562 |
(*Calling this will generate the warning "Same as previous level" since |
|
563 |
it affects nothing but the names of bound variables!*) |
|
9535 | 564 |
fun rename_params_tac xs i = |
565 |
(if !Logic.auto_rename |
|
10817 | 566 |
then (warning "Resetting Logic.auto_rename"; |
10805 | 567 |
Logic.auto_rename := false) |
9535 | 568 |
else (); PRIMITIVE (rename_params_rule (xs, i))); |
569 |
||
10817 | 570 |
fun rename_tac str i = |
571 |
let val cs = Symbol.explode str in |
|
4693 | 572 |
case #2 (take_prefix (Symbol.is_letdig orf Symbol.is_blank) cs) of |
9535 | 573 |
[] => rename_params_tac (scanwords Symbol.is_letdig cs) i |
0 | 574 |
| c::_ => error ("Illegal character: " ^ c) |
575 |
end; |
|
576 |
||
1501 | 577 |
(*Rename recent parameters using names generated from a and the suffixes, |
578 |
provided the string a, which represents a term, is an identifier. *) |
|
10817 | 579 |
fun rename_last_tac a sufs i = |
0 | 580 |
let val names = map (curry op^ a) sufs |
581 |
in if Syntax.is_identifier a |
|
582 |
then PRIMITIVE (rename_params_rule (names,i)) |
|
583 |
else all_tac |
|
584 |
end; |
|
585 |
||
2043 | 586 |
(*Prunes all redundant parameters from the proof state by rewriting. |
587 |
DOES NOT rewrite main goal, where quantification over an unused bound |
|
588 |
variable is sometimes done to avoid the need for cut_facts_tac.*) |
|
589 |
val prune_params_tac = rewrite_goals_tac [triv_forall_equality]; |
|
0 | 590 |
|
1501 | 591 |
(*rotate_tac n i: rotate the assumptions of subgoal i by n positions, from |
592 |
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
|
593 |
fun rotate_tac 0 i = all_tac |
85d7e800d754
Replaced "flat" by the Basis Library function List.concat
paulson
parents:
2580
diff
changeset
|
594 |
| rotate_tac k i = PRIMITIVE (rotate_rule k i); |
1209 | 595 |
|
7248
322151fe6f02
new primitive rule permute_prems to underlie defer_tac and rotate_prems
paulson
parents:
6979
diff
changeset
|
596 |
(*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
|
597 |
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
|
598 |
|
5974 | 599 |
(* remove premises that do not satisfy p; fails if all prems satisfy p *) |
600 |
fun filter_prems_tac p = |
|
601 |
let fun Then None tac = Some tac |
|
602 |
| Then (Some tac) tac' = Some(tac THEN' tac'); |
|
603 |
fun thins ((tac,n),H) = |
|
604 |
if p H then (tac,n+1) |
|
605 |
else (Then tac (rotate_tac n THEN' etac thin_rl),0); |
|
606 |
in SUBGOAL(fn (subg,n) => |
|
607 |
let val Hs = Logic.strip_assums_hyp subg |
|
608 |
in case fst(foldl thins ((None,0),Hs)) of |
|
609 |
None => no_tac | Some tac => tac n |
|
610 |
end) |
|
611 |
end; |
|
612 |
||
11961
e5911a25d094
prove: primitive goal interface for internal use;
wenzelm
parents:
11929
diff
changeset
|
613 |
|
12139 | 614 |
(*meta-level conjunction*) |
615 |
val conj_tac = SUBGOAL (fn (Const ("all", _) $ Abs (_, _, Const ("==>", _) $ |
|
616 |
(Const ("==>", _) $ _ $ (Const ("==>", _) $ _ $ Bound 0)) $ Bound 0), i) => |
|
617 |
(fn st => |
|
618 |
compose_tac (false, Drule.incr_indexes_wrt [] [] [] [st] Drule.conj_intr_thm, 2) i st) |
|
619 |
| _ => no_tac); |
|
620 |
||
621 |
val conjunction_tac = ALLGOALS (REPEAT_ALL_NEW conj_tac); |
|
622 |
||
623 |
||
624 |
||
11970 | 625 |
(** minimal goal interface for internal use *) |
11961
e5911a25d094
prove: primitive goal interface for internal use;
wenzelm
parents:
11929
diff
changeset
|
626 |
|
11970 | 627 |
fun prove sign xs asms prop tac = |
11961
e5911a25d094
prove: primitive goal interface for internal use;
wenzelm
parents:
11929
diff
changeset
|
628 |
let |
e5911a25d094
prove: primitive goal interface for internal use;
wenzelm
parents:
11929
diff
changeset
|
629 |
val statement = Logic.list_implies (asms, prop); |
e5911a25d094
prove: primitive goal interface for internal use;
wenzelm
parents:
11929
diff
changeset
|
630 |
val frees = map Term.dest_Free (Term.term_frees statement); |
11970 | 631 |
val fixed_frees = filter_out (fn (x, _) => x mem_string xs) frees; |
632 |
val fixed_tfrees = foldr Term.add_typ_tfree_names (map #2 fixed_frees, []); |
|
11961
e5911a25d094
prove: primitive goal interface for internal use;
wenzelm
parents:
11929
diff
changeset
|
633 |
val params = mapfilter (fn x => apsome (pair x) (assoc_string (frees, x))) xs; |
e5911a25d094
prove: primitive goal interface for internal use;
wenzelm
parents:
11929
diff
changeset
|
634 |
|
12212 | 635 |
fun err msg = raise ERROR_MESSAGE |
636 |
(msg ^ "\nThe error(s) above occurred for the goal statement:\n" ^ |
|
637 |
Sign.string_of_term sign (Term.list_all_free (params, statement))); |
|
11961
e5911a25d094
prove: primitive goal interface for internal use;
wenzelm
parents:
11929
diff
changeset
|
638 |
|
12170 | 639 |
fun cert_safe t = Thm.cterm_of sign (Envir.beta_norm t) |
11961
e5911a25d094
prove: primitive goal interface for internal use;
wenzelm
parents:
11929
diff
changeset
|
640 |
handle TERM (msg, _) => err msg | TYPE (msg, _, _) => err msg; |
e5911a25d094
prove: primitive goal interface for internal use;
wenzelm
parents:
11929
diff
changeset
|
641 |
|
e5911a25d094
prove: primitive goal interface for internal use;
wenzelm
parents:
11929
diff
changeset
|
642 |
val _ = cert_safe statement; |
11974 | 643 |
val _ = Term.no_dummy_patterns statement handle TERM (msg, _) => err msg; |
11961
e5911a25d094
prove: primitive goal interface for internal use;
wenzelm
parents:
11929
diff
changeset
|
644 |
|
11974 | 645 |
val cparams = map (cert_safe o Free) params; |
11961
e5911a25d094
prove: primitive goal interface for internal use;
wenzelm
parents:
11929
diff
changeset
|
646 |
val casms = map cert_safe asms; |
e5911a25d094
prove: primitive goal interface for internal use;
wenzelm
parents:
11929
diff
changeset
|
647 |
val prems = map (norm_hhf o Thm.assume) casms; |
e5911a25d094
prove: primitive goal interface for internal use;
wenzelm
parents:
11929
diff
changeset
|
648 |
val goal = Drule.mk_triv_goal (cert_safe prop); |
e5911a25d094
prove: primitive goal interface for internal use;
wenzelm
parents:
11929
diff
changeset
|
649 |
|
e5911a25d094
prove: primitive goal interface for internal use;
wenzelm
parents:
11929
diff
changeset
|
650 |
val goal' = |
e5911a25d094
prove: primitive goal interface for internal use;
wenzelm
parents:
11929
diff
changeset
|
651 |
(case Seq.pull (tac prems goal) of Some (goal', _) => goal' | _ => err "Tactic failed."); |
e5911a25d094
prove: primitive goal interface for internal use;
wenzelm
parents:
11929
diff
changeset
|
652 |
val ngoals = Thm.nprems_of goal'; |
e5911a25d094
prove: primitive goal interface for internal use;
wenzelm
parents:
11929
diff
changeset
|
653 |
val raw_result = goal' RS Drule.rev_triv_goal; |
e5911a25d094
prove: primitive goal interface for internal use;
wenzelm
parents:
11929
diff
changeset
|
654 |
val prop' = #prop (Thm.rep_thm raw_result); |
e5911a25d094
prove: primitive goal interface for internal use;
wenzelm
parents:
11929
diff
changeset
|
655 |
in |
e5911a25d094
prove: primitive goal interface for internal use;
wenzelm
parents:
11929
diff
changeset
|
656 |
if ngoals <> 0 then |
e5911a25d094
prove: primitive goal interface for internal use;
wenzelm
parents:
11929
diff
changeset
|
657 |
err ("Proof failed.\n" ^ Pretty.string_of (Pretty.chunks (Display.pretty_goals ngoals goal')) |
e5911a25d094
prove: primitive goal interface for internal use;
wenzelm
parents:
11929
diff
changeset
|
658 |
^ ("\n" ^ string_of_int ngoals ^ " unsolved goal(s)!")) |
11970 | 659 |
else if not (Pattern.matches (Sign.tsig_of sign) (prop, prop')) then |
660 |
err ("Proved a different theorem: " ^ Sign.string_of_term sign prop') |
|
11961
e5911a25d094
prove: primitive goal interface for internal use;
wenzelm
parents:
11929
diff
changeset
|
661 |
else |
e5911a25d094
prove: primitive goal interface for internal use;
wenzelm
parents:
11929
diff
changeset
|
662 |
raw_result |
e5911a25d094
prove: primitive goal interface for internal use;
wenzelm
parents:
11929
diff
changeset
|
663 |
|> Drule.implies_intr_list casms |
11974 | 664 |
|> Drule.forall_intr_list cparams |
11961
e5911a25d094
prove: primitive goal interface for internal use;
wenzelm
parents:
11929
diff
changeset
|
665 |
|> norm_hhf |
11970 | 666 |
|> Thm.varifyT' fixed_tfrees |
667 |
|> Drule.zero_var_indexes |
|
11961
e5911a25d094
prove: primitive goal interface for internal use;
wenzelm
parents:
11929
diff
changeset
|
668 |
end; |
e5911a25d094
prove: primitive goal interface for internal use;
wenzelm
parents:
11929
diff
changeset
|
669 |
|
11970 | 670 |
fun prove_standard sign xs asms prop tac = Drule.standard (prove sign xs asms prop tac); |
671 |
||
0 | 672 |
end; |
1501 | 673 |
|
11774 | 674 |
structure BasicTactic: BASIC_TACTIC = Tactic; |
675 |
open BasicTactic; |