wenzelm@252
|
1 |
(* Title: Pure/drule.ML
|
clasohm@0
|
2 |
ID: $Id$
|
wenzelm@252
|
3 |
Author: Lawrence C Paulson, Cambridge University Computer Laboratory
|
clasohm@0
|
4 |
Copyright 1993 University of Cambridge
|
clasohm@0
|
5 |
|
wenzelm@3766
|
6 |
Derived rules and other operations on theorems.
|
clasohm@0
|
7 |
*)
|
clasohm@0
|
8 |
|
wenzelm@21578
|
9 |
infix 0 RS RSN RL RLN MRS MRL OF COMP INCR_COMP COMP_INCR;
|
clasohm@0
|
10 |
|
wenzelm@5903
|
11 |
signature BASIC_DRULE =
|
wenzelm@3766
|
12 |
sig
|
wenzelm@18179
|
13 |
val mk_implies: cterm * cterm -> cterm
|
wenzelm@18179
|
14 |
val list_implies: cterm list * cterm -> cterm
|
wenzelm@18179
|
15 |
val strip_imp_prems: cterm -> cterm list
|
wenzelm@18179
|
16 |
val strip_imp_concl: cterm -> cterm
|
wenzelm@18179
|
17 |
val cprems_of: thm -> cterm list
|
wenzelm@18179
|
18 |
val cterm_fun: (term -> term) -> (cterm -> cterm)
|
wenzelm@18179
|
19 |
val ctyp_fun: (typ -> typ) -> (ctyp -> ctyp)
|
wenzelm@18206
|
20 |
val read_insts: theory -> (indexname -> typ option) * (indexname -> sort option) ->
|
wenzelm@18206
|
21 |
(indexname -> typ option) * (indexname -> sort option) -> string list ->
|
wenzelm@18206
|
22 |
(indexname * string) list -> (ctyp * ctyp) list * (cterm * cterm) list
|
wenzelm@4285
|
23 |
val types_sorts: thm -> (indexname-> typ option) * (indexname-> sort option)
|
wenzelm@18179
|
24 |
val forall_intr_list: cterm list -> thm -> thm
|
wenzelm@18179
|
25 |
val forall_intr_frees: thm -> thm
|
wenzelm@18179
|
26 |
val forall_intr_vars: thm -> thm
|
wenzelm@18179
|
27 |
val forall_elim_list: cterm list -> thm -> thm
|
wenzelm@18179
|
28 |
val forall_elim_var: int -> thm -> thm
|
wenzelm@18179
|
29 |
val forall_elim_vars: int -> thm -> thm
|
wenzelm@18179
|
30 |
val gen_all: thm -> thm
|
wenzelm@18179
|
31 |
val lift_all: cterm -> thm -> thm
|
wenzelm@18179
|
32 |
val freeze_thaw: thm -> thm * (thm -> thm)
|
paulson@15495
|
33 |
val freeze_thaw_robust: thm -> thm * (int -> thm -> thm)
|
wenzelm@18179
|
34 |
val implies_elim_list: thm -> thm list -> thm
|
wenzelm@18179
|
35 |
val implies_intr_list: cterm list -> thm -> thm
|
wenzelm@18206
|
36 |
val instantiate: (ctyp * ctyp) list * (cterm * cterm) list -> thm -> thm
|
wenzelm@21603
|
37 |
val zero_var_indexes_list: thm list -> thm list
|
wenzelm@18179
|
38 |
val zero_var_indexes: thm -> thm
|
wenzelm@18179
|
39 |
val implies_intr_hyps: thm -> thm
|
wenzelm@18179
|
40 |
val standard: thm -> thm
|
wenzelm@18179
|
41 |
val standard': thm -> thm
|
wenzelm@18179
|
42 |
val rotate_prems: int -> thm -> thm
|
wenzelm@18179
|
43 |
val rearrange_prems: int list -> thm -> thm
|
wenzelm@18179
|
44 |
val RSN: thm * (int * thm) -> thm
|
wenzelm@18179
|
45 |
val RS: thm * thm -> thm
|
wenzelm@18179
|
46 |
val RLN: thm list * (int * thm list) -> thm list
|
wenzelm@18179
|
47 |
val RL: thm list * thm list -> thm list
|
wenzelm@18179
|
48 |
val MRS: thm list * thm -> thm
|
wenzelm@18179
|
49 |
val MRL: thm list list * thm list -> thm list
|
wenzelm@18179
|
50 |
val OF: thm * thm list -> thm
|
wenzelm@18179
|
51 |
val compose: thm * int * thm -> thm list
|
wenzelm@18179
|
52 |
val COMP: thm * thm -> thm
|
wenzelm@21578
|
53 |
val INCR_COMP: thm * thm -> thm
|
wenzelm@21578
|
54 |
val COMP_INCR: thm * thm -> thm
|
wenzelm@16425
|
55 |
val read_instantiate_sg: theory -> (string*string)list -> thm -> thm
|
wenzelm@18179
|
56 |
val read_instantiate: (string*string)list -> thm -> thm
|
wenzelm@18179
|
57 |
val cterm_instantiate: (cterm*cterm)list -> thm -> thm
|
wenzelm@18179
|
58 |
val size_of_thm: thm -> int
|
wenzelm@18179
|
59 |
val reflexive_thm: thm
|
wenzelm@18179
|
60 |
val symmetric_thm: thm
|
wenzelm@18179
|
61 |
val transitive_thm: thm
|
wenzelm@18179
|
62 |
val symmetric_fun: thm -> thm
|
wenzelm@18179
|
63 |
val extensional: thm -> thm
|
wenzelm@18820
|
64 |
val equals_cong: thm
|
wenzelm@18179
|
65 |
val imp_cong: thm
|
wenzelm@18179
|
66 |
val swap_prems_eq: thm
|
wenzelm@18179
|
67 |
val asm_rl: thm
|
wenzelm@18179
|
68 |
val cut_rl: thm
|
wenzelm@18179
|
69 |
val revcut_rl: thm
|
wenzelm@18179
|
70 |
val thin_rl: thm
|
wenzelm@4285
|
71 |
val triv_forall_equality: thm
|
wenzelm@19051
|
72 |
val distinct_prems_rl: thm
|
wenzelm@18179
|
73 |
val swap_prems_rl: thm
|
wenzelm@18179
|
74 |
val equal_intr_rule: thm
|
wenzelm@18179
|
75 |
val equal_elim_rule1: thm
|
wenzelm@19421
|
76 |
val equal_elim_rule2: thm
|
wenzelm@18179
|
77 |
val instantiate': ctyp option list -> cterm option list -> thm -> thm
|
wenzelm@5903
|
78 |
end;
|
wenzelm@5903
|
79 |
|
wenzelm@5903
|
80 |
signature DRULE =
|
wenzelm@5903
|
81 |
sig
|
wenzelm@5903
|
82 |
include BASIC_DRULE
|
wenzelm@19999
|
83 |
val generalize: string list * string list -> thm -> thm
|
paulson@15949
|
84 |
val list_comb: cterm * cterm list -> cterm
|
berghofe@12908
|
85 |
val strip_comb: cterm -> cterm * cterm list
|
berghofe@15262
|
86 |
val strip_type: ctyp -> ctyp list * ctyp
|
paulson@15949
|
87 |
val beta_conv: cterm -> cterm -> cterm
|
wenzelm@15669
|
88 |
val add_used: thm -> string list -> string list
|
berghofe@17713
|
89 |
val flexflex_unique: thm -> thm
|
wenzelm@19421
|
90 |
val store_thm: bstring -> thm -> thm
|
wenzelm@19421
|
91 |
val store_standard_thm: bstring -> thm -> thm
|
wenzelm@19421
|
92 |
val store_thm_open: bstring -> thm -> thm
|
wenzelm@19421
|
93 |
val store_standard_thm_open: bstring -> thm -> thm
|
wenzelm@11975
|
94 |
val compose_single: thm * int * thm -> thm
|
wenzelm@18468
|
95 |
val imp_cong_rule: thm -> thm -> thm
|
wenzelm@22939
|
96 |
val arg_cong_rule: cterm -> thm -> thm
|
wenzelm@23568
|
97 |
val binop_cong_rule: cterm -> thm -> thm -> thm
|
wenzelm@22939
|
98 |
val fun_cong_rule: thm -> cterm -> thm
|
skalberg@15001
|
99 |
val beta_eta_conversion: cterm -> thm
|
berghofe@15925
|
100 |
val eta_long_conversion: cterm -> thm
|
paulson@20861
|
101 |
val eta_contraction_rule: thm -> thm
|
wenzelm@11975
|
102 |
val norm_hhf_eq: thm
|
wenzelm@12800
|
103 |
val is_norm_hhf: term -> bool
|
wenzelm@16425
|
104 |
val norm_hhf: theory -> term -> term
|
wenzelm@20298
|
105 |
val norm_hhf_cterm: cterm -> cterm
|
wenzelm@18025
|
106 |
val protect: cterm -> cterm
|
wenzelm@18025
|
107 |
val protectI: thm
|
wenzelm@18025
|
108 |
val protectD: thm
|
wenzelm@18179
|
109 |
val protect_cong: thm
|
wenzelm@18025
|
110 |
val implies_intr_protected: cterm list -> thm -> thm
|
wenzelm@19775
|
111 |
val termI: thm
|
wenzelm@19775
|
112 |
val mk_term: cterm -> thm
|
wenzelm@19775
|
113 |
val dest_term: thm -> cterm
|
wenzelm@21519
|
114 |
val cterm_rule: (thm -> thm) -> cterm -> cterm
|
wenzelm@20881
|
115 |
val term_rule: theory -> (thm -> thm) -> term -> term
|
wenzelm@24005
|
116 |
val dummy_thm: thm
|
wenzelm@19523
|
117 |
val sort_triv: theory -> typ * sort -> thm list
|
wenzelm@19504
|
118 |
val unconstrainTs: thm -> thm
|
wenzelm@23423
|
119 |
val with_subgoal: int -> (thm -> thm) -> thm -> thm
|
berghofe@14081
|
120 |
val rename_bvars: (string * string) list -> thm -> thm
|
berghofe@14081
|
121 |
val rename_bvars': string option list -> thm -> thm
|
paulson@24426
|
122 |
val incr_type_indexes: int -> thm -> thm
|
wenzelm@19124
|
123 |
val incr_indexes: thm -> thm -> thm
|
wenzelm@19124
|
124 |
val incr_indexes2: thm -> thm -> thm -> thm
|
wenzelm@12297
|
125 |
val remdups_rl: thm
|
wenzelm@18225
|
126 |
val multi_resolve: thm list -> thm -> thm Seq.seq
|
wenzelm@18225
|
127 |
val multi_resolves: thm list -> thm list -> thm Seq.seq
|
berghofe@13325
|
128 |
val abs_def: thm -> thm
|
wenzelm@16425
|
129 |
val read_instantiate_sg': theory -> (indexname * string) list -> thm -> thm
|
berghofe@15797
|
130 |
val read_instantiate': (indexname * string) list -> thm -> thm
|
wenzelm@3766
|
131 |
end;
|
clasohm@0
|
132 |
|
wenzelm@5903
|
133 |
structure Drule: DRULE =
|
clasohm@0
|
134 |
struct
|
clasohm@0
|
135 |
|
wenzelm@3991
|
136 |
|
wenzelm@16682
|
137 |
(** some cterm->cterm operations: faster than calling cterm_of! **)
|
lcp@708
|
138 |
|
lcp@708
|
139 |
(* A1==>...An==>B goes to [A1,...,An], where B is not an implication *)
|
paulson@2004
|
140 |
fun strip_imp_prems ct =
|
wenzelm@22906
|
141 |
let val (cA, cB) = Thm.dest_implies ct
|
wenzelm@20579
|
142 |
in cA :: strip_imp_prems cB end
|
wenzelm@20579
|
143 |
handle TERM _ => [];
|
lcp@708
|
144 |
|
paulson@2004
|
145 |
(* A1==>...An==>B goes to B, where B is not an implication *)
|
paulson@2004
|
146 |
fun strip_imp_concl ct =
|
wenzelm@20579
|
147 |
(case Thm.term_of ct of
|
wenzelm@20579
|
148 |
Const ("==>", _) $ _ $ _ => strip_imp_concl (Thm.dest_arg ct)
|
wenzelm@20579
|
149 |
| _ => ct);
|
paulson@2004
|
150 |
|
lcp@708
|
151 |
(*The premises of a theorem, as a cterm list*)
|
berghofe@13659
|
152 |
val cprems_of = strip_imp_prems o cprop_of;
|
lcp@708
|
153 |
|
wenzelm@26627
|
154 |
fun cterm_fun f ct = Thm.cterm_of (Thm.theory_of_cterm ct) (f (Thm.term_of ct));
|
wenzelm@26627
|
155 |
fun ctyp_fun f cT = Thm.ctyp_of (Thm.theory_of_ctyp cT) (f (Thm.typ_of cT));
|
berghofe@15797
|
156 |
|
wenzelm@26487
|
157 |
fun certify t = Thm.cterm_of (Context.the_theory (Context.the_thread_data ())) t;
|
paulson@9547
|
158 |
|
wenzelm@26487
|
159 |
val implies = certify Term.implies;
|
wenzelm@19183
|
160 |
fun mk_implies (A, B) = Thm.capply (Thm.capply implies A) B;
|
paulson@9547
|
161 |
|
paulson@9547
|
162 |
(*cterm version of list_implies: [A1,...,An], B goes to [|A1;==>;An|]==>B *)
|
paulson@9547
|
163 |
fun list_implies([], B) = B
|
paulson@9547
|
164 |
| list_implies(A::AS, B) = mk_implies (A, list_implies(AS,B));
|
paulson@9547
|
165 |
|
paulson@15949
|
166 |
(*cterm version of list_comb: maps (f, [t1,...,tn]) to f(t1,...,tn) *)
|
paulson@15949
|
167 |
fun list_comb (f, []) = f
|
paulson@15949
|
168 |
| list_comb (f, t::ts) = list_comb (Thm.capply f t, ts);
|
paulson@15949
|
169 |
|
berghofe@12908
|
170 |
(*cterm version of strip_comb: maps f(t1,...,tn) to (f, [t1,...,tn]) *)
|
wenzelm@18179
|
171 |
fun strip_comb ct =
|
berghofe@12908
|
172 |
let
|
berghofe@12908
|
173 |
fun stripc (p as (ct, cts)) =
|
berghofe@12908
|
174 |
let val (ct1, ct2) = Thm.dest_comb ct
|
berghofe@12908
|
175 |
in stripc (ct1, ct2 :: cts) end handle CTERM _ => p
|
berghofe@12908
|
176 |
in stripc (ct, []) end;
|
berghofe@12908
|
177 |
|
berghofe@15262
|
178 |
(* cterm version of strip_type: maps [T1,...,Tn]--->T to ([T1,T2,...,Tn], T) *)
|
berghofe@15262
|
179 |
fun strip_type cT = (case Thm.typ_of cT of
|
berghofe@15262
|
180 |
Type ("fun", _) =>
|
berghofe@15262
|
181 |
let
|
berghofe@15262
|
182 |
val [cT1, cT2] = Thm.dest_ctyp cT;
|
berghofe@15262
|
183 |
val (cTs, cT') = strip_type cT2
|
berghofe@15262
|
184 |
in (cT1 :: cTs, cT') end
|
berghofe@15262
|
185 |
| _ => ([], cT));
|
berghofe@15262
|
186 |
|
paulson@15949
|
187 |
(*Beta-conversion for cterms, where x is an abstraction. Simply returns the rhs
|
paulson@15949
|
188 |
of the meta-equality returned by the beta_conversion rule.*)
|
wenzelm@18179
|
189 |
fun beta_conv x y =
|
wenzelm@20579
|
190 |
Thm.dest_arg (cprop_of (Thm.beta_conversion false (Thm.capply x y)));
|
paulson@15949
|
191 |
|
wenzelm@15875
|
192 |
|
lcp@708
|
193 |
|
lcp@229
|
194 |
(** reading of instantiations **)
|
lcp@229
|
195 |
|
lcp@229
|
196 |
fun absent ixn =
|
wenzelm@22681
|
197 |
error("No such variable in term: " ^ Term.string_of_vname ixn);
|
lcp@229
|
198 |
|
lcp@229
|
199 |
fun inst_failure ixn =
|
wenzelm@22681
|
200 |
error("Instantiation of " ^ Term.string_of_vname ixn ^ " fails");
|
lcp@229
|
201 |
|
wenzelm@16425
|
202 |
fun read_insts thy (rtypes,rsorts) (types,sorts) used insts =
|
wenzelm@10403
|
203 |
let
|
berghofe@15442
|
204 |
fun is_tv ((a, _), _) =
|
berghofe@15442
|
205 |
(case Symbol.explode a of "'" :: _ => true | _ => false);
|
skalberg@15570
|
206 |
val (tvs, vs) = List.partition is_tv insts;
|
berghofe@15797
|
207 |
fun sort_of ixn = case rsorts ixn of SOME S => S | NONE => absent ixn;
|
berghofe@15442
|
208 |
fun readT (ixn, st) =
|
berghofe@15797
|
209 |
let val S = sort_of ixn;
|
wenzelm@22681
|
210 |
val T = Sign.read_def_typ (thy,sorts) st;
|
wenzelm@16425
|
211 |
in if Sign.typ_instance thy (T, TVar(ixn,S)) then (ixn,T)
|
nipkow@4281
|
212 |
else inst_failure ixn
|
nipkow@4281
|
213 |
end
|
nipkow@4281
|
214 |
val tye = map readT tvs;
|
nipkow@4281
|
215 |
fun mkty(ixn,st) = (case rtypes ixn of
|
skalberg@15531
|
216 |
SOME T => (ixn,(st,typ_subst_TVars tye T))
|
skalberg@15531
|
217 |
| NONE => absent ixn);
|
nipkow@4281
|
218 |
val ixnsTs = map mkty vs;
|
nipkow@4281
|
219 |
val ixns = map fst ixnsTs
|
nipkow@4281
|
220 |
and sTs = map snd ixnsTs
|
wenzelm@22681
|
221 |
val (cts,tye2) = Thm.read_def_cterms(thy,types,sorts) used false sTs;
|
nipkow@4281
|
222 |
fun mkcVar(ixn,T) =
|
nipkow@4281
|
223 |
let val U = typ_subst_TVars tye2 T
|
wenzelm@16425
|
224 |
in cterm_of thy (Var(ixn,U)) end
|
nipkow@4281
|
225 |
val ixnTs = ListPair.zip(ixns, map snd sTs)
|
wenzelm@16425
|
226 |
in (map (fn (ixn, T) => (ctyp_of thy (TVar (ixn, sort_of ixn)),
|
wenzelm@16425
|
227 |
ctyp_of thy T)) (tye2 @ tye),
|
nipkow@4281
|
228 |
ListPair.zip(map mkcVar ixnTs,cts))
|
nipkow@4281
|
229 |
end;
|
lcp@229
|
230 |
|
lcp@229
|
231 |
|
wenzelm@252
|
232 |
(*** Find the type (sort) associated with a (T)Var or (T)Free in a term
|
clasohm@0
|
233 |
Used for establishing default types (of variables) and sorts (of
|
clasohm@0
|
234 |
type variables) when reading another term.
|
clasohm@0
|
235 |
Index -1 indicates that a (T)Free rather than a (T)Var is wanted.
|
clasohm@0
|
236 |
***)
|
clasohm@0
|
237 |
|
clasohm@0
|
238 |
fun types_sorts thm =
|
wenzelm@20329
|
239 |
let
|
wenzelm@22695
|
240 |
val vars = Thm.fold_terms Term.add_vars thm [];
|
wenzelm@22695
|
241 |
val frees = Thm.fold_terms Term.add_frees thm [];
|
wenzelm@22695
|
242 |
val tvars = Thm.fold_terms Term.add_tvars thm [];
|
wenzelm@22695
|
243 |
val tfrees = Thm.fold_terms Term.add_tfrees thm [];
|
wenzelm@20329
|
244 |
fun types (a, i) =
|
wenzelm@20329
|
245 |
if i < 0 then AList.lookup (op =) frees a else AList.lookup (op =) vars (a, i);
|
wenzelm@20329
|
246 |
fun sorts (a, i) =
|
wenzelm@20329
|
247 |
if i < 0 then AList.lookup (op =) tfrees a else AList.lookup (op =) tvars (a, i);
|
wenzelm@20329
|
248 |
in (types, sorts) end;
|
clasohm@0
|
249 |
|
wenzelm@20329
|
250 |
val add_used =
|
wenzelm@22695
|
251 |
(Thm.fold_terms o fold_types o fold_atyps)
|
wenzelm@20329
|
252 |
(fn TFree (a, _) => insert (op =) a
|
wenzelm@20329
|
253 |
| TVar ((a, _), _) => insert (op =) a
|
wenzelm@20329
|
254 |
| _ => I);
|
wenzelm@15669
|
255 |
|
wenzelm@7636
|
256 |
|
wenzelm@9455
|
257 |
|
clasohm@0
|
258 |
(** Standardization of rules **)
|
clasohm@0
|
259 |
|
wenzelm@19523
|
260 |
(* type classes and sorts *)
|
wenzelm@19523
|
261 |
|
wenzelm@19523
|
262 |
fun sort_triv thy (T, S) =
|
wenzelm@19523
|
263 |
let
|
wenzelm@19523
|
264 |
val certT = Thm.ctyp_of thy;
|
wenzelm@19523
|
265 |
val cT = certT T;
|
wenzelm@19523
|
266 |
fun class_triv c =
|
wenzelm@19523
|
267 |
Thm.class_triv thy c
|
wenzelm@24848
|
268 |
|> Thm.instantiate ([(certT (TVar ((Name.aT, 0), [c])), cT)], []);
|
wenzelm@19523
|
269 |
in map class_triv S end;
|
wenzelm@19523
|
270 |
|
wenzelm@19504
|
271 |
fun unconstrainTs th =
|
wenzelm@20298
|
272 |
fold (Thm.unconstrainT o Thm.ctyp_of (Thm.theory_of_thm th) o TVar)
|
wenzelm@22695
|
273 |
(Thm.fold_terms Term.add_tvars th []) th;
|
wenzelm@19504
|
274 |
|
wenzelm@19730
|
275 |
(*Generalization over a list of variables*)
|
wenzelm@19730
|
276 |
val forall_intr_list = fold_rev forall_intr;
|
clasohm@0
|
277 |
|
clasohm@0
|
278 |
(*Generalization over all suitable Free variables*)
|
clasohm@0
|
279 |
fun forall_intr_frees th =
|
wenzelm@19730
|
280 |
let
|
wenzelm@26627
|
281 |
val thy = Thm.theory_of_thm th;
|
wenzelm@26627
|
282 |
val {prop, hyps, tpairs, ...} = rep_thm th;
|
wenzelm@19730
|
283 |
val fixed = fold Term.add_frees (Thm.terms_of_tpairs tpairs @ hyps) [];
|
wenzelm@19730
|
284 |
val frees = Term.fold_aterms (fn Free v =>
|
wenzelm@19730
|
285 |
if member (op =) fixed v then I else insert (op =) v | _ => I) prop [];
|
wenzelm@19730
|
286 |
in fold (forall_intr o cterm_of thy o Free) frees th end;
|
clasohm@0
|
287 |
|
wenzelm@18535
|
288 |
(*Generalization over Vars -- canonical order*)
|
wenzelm@18535
|
289 |
fun forall_intr_vars th =
|
wenzelm@20298
|
290 |
fold forall_intr
|
wenzelm@22695
|
291 |
(map (Thm.cterm_of (Thm.theory_of_thm th) o Var) (Thm.fold_terms Term.add_vars th [])) th;
|
wenzelm@18535
|
292 |
|
wenzelm@7898
|
293 |
val forall_elim_var = PureThy.forall_elim_var;
|
wenzelm@7898
|
294 |
val forall_elim_vars = PureThy.forall_elim_vars;
|
clasohm@0
|
295 |
|
wenzelm@18025
|
296 |
fun outer_params t =
|
wenzelm@20077
|
297 |
let val vs = Term.strip_all_vars t
|
wenzelm@20077
|
298 |
in Name.variant_list [] (map (Name.clean o #1) vs) ~~ map #2 vs end;
|
wenzelm@18025
|
299 |
|
wenzelm@18025
|
300 |
(*generalize outermost parameters*)
|
wenzelm@18025
|
301 |
fun gen_all th =
|
wenzelm@12719
|
302 |
let
|
wenzelm@26627
|
303 |
val thy = Thm.theory_of_thm th;
|
wenzelm@26627
|
304 |
val {prop, maxidx, ...} = Thm.rep_thm th;
|
wenzelm@18025
|
305 |
val cert = Thm.cterm_of thy;
|
wenzelm@18025
|
306 |
fun elim (x, T) = Thm.forall_elim (cert (Var ((x, maxidx + 1), T)));
|
wenzelm@18025
|
307 |
in fold elim (outer_params prop) th end;
|
wenzelm@18025
|
308 |
|
wenzelm@18025
|
309 |
(*lift vars wrt. outermost goal parameters
|
wenzelm@18118
|
310 |
-- reverses the effect of gen_all modulo higher-order unification*)
|
wenzelm@18025
|
311 |
fun lift_all goal th =
|
wenzelm@18025
|
312 |
let
|
wenzelm@18025
|
313 |
val thy = Theory.merge (Thm.theory_of_cterm goal, Thm.theory_of_thm th);
|
wenzelm@18025
|
314 |
val cert = Thm.cterm_of thy;
|
wenzelm@19421
|
315 |
val maxidx = Thm.maxidx_of th;
|
wenzelm@18025
|
316 |
val ps = outer_params (Thm.term_of goal)
|
wenzelm@18025
|
317 |
|> map (fn (x, T) => Var ((x, maxidx + 1), Logic.incr_tvar (maxidx + 1) T));
|
wenzelm@18025
|
318 |
val Ts = map Term.fastype_of ps;
|
wenzelm@22695
|
319 |
val inst = Thm.fold_terms Term.add_vars th [] |> map (fn (xi, T) =>
|
wenzelm@18025
|
320 |
(cert (Var (xi, T)), cert (Term.list_comb (Var (xi, Ts ---> T), ps))));
|
wenzelm@18025
|
321 |
in
|
wenzelm@18025
|
322 |
th |> Thm.instantiate ([], inst)
|
wenzelm@18025
|
323 |
|> fold_rev (Thm.forall_intr o cert) ps
|
wenzelm@18025
|
324 |
end;
|
wenzelm@18025
|
325 |
|
wenzelm@19999
|
326 |
(*direct generalization*)
|
wenzelm@19999
|
327 |
fun generalize names th = Thm.generalize names (Thm.maxidx_of th + 1) th;
|
wenzelm@9554
|
328 |
|
wenzelm@16949
|
329 |
(*specialization over a list of cterms*)
|
wenzelm@16949
|
330 |
val forall_elim_list = fold forall_elim;
|
clasohm@0
|
331 |
|
wenzelm@16949
|
332 |
(*maps A1,...,An |- B to [| A1;...;An |] ==> B*)
|
wenzelm@16949
|
333 |
val implies_intr_list = fold_rev implies_intr;
|
clasohm@0
|
334 |
|
wenzelm@16949
|
335 |
(*maps [| A1;...;An |] ==> B and [A1,...,An] to B*)
|
wenzelm@24978
|
336 |
fun implies_elim_list impth ths = fold Thm.elim_implies ths impth;
|
clasohm@0
|
337 |
|
clasohm@0
|
338 |
(*Reset Var indexes to zero, renaming to preserve distinctness*)
|
wenzelm@21603
|
339 |
fun zero_var_indexes_list [] = []
|
wenzelm@21603
|
340 |
| zero_var_indexes_list ths =
|
wenzelm@21603
|
341 |
let
|
wenzelm@21603
|
342 |
val thy = Theory.merge_list (map Thm.theory_of_thm ths);
|
wenzelm@21603
|
343 |
val certT = Thm.ctyp_of thy and cert = Thm.cterm_of thy;
|
wenzelm@21603
|
344 |
val (instT, inst) = TermSubst.zero_var_indexes_inst (map Thm.full_prop_of ths);
|
wenzelm@21603
|
345 |
val cinstT = map (fn (v, T) => (certT (TVar v), certT T)) instT;
|
wenzelm@21603
|
346 |
val cinst = map (fn (v, t) => (cert (Var v), cert t)) inst;
|
wenzelm@21603
|
347 |
in map (Thm.adjust_maxidx_thm ~1 o Thm.instantiate (cinstT, cinst)) ths end;
|
wenzelm@21603
|
348 |
|
wenzelm@21603
|
349 |
val zero_var_indexes = singleton zero_var_indexes_list;
|
clasohm@0
|
350 |
|
clasohm@0
|
351 |
|
paulson@14394
|
352 |
(** Standard form of object-rule: no hypotheses, flexflex constraints,
|
paulson@14394
|
353 |
Frees, or outer quantifiers; all generality expressed by Vars of index 0.**)
|
wenzelm@10515
|
354 |
|
wenzelm@16595
|
355 |
(*Discharge all hypotheses.*)
|
wenzelm@16595
|
356 |
fun implies_intr_hyps th =
|
wenzelm@16595
|
357 |
fold Thm.implies_intr (#hyps (Thm.crep_thm th)) th;
|
wenzelm@16595
|
358 |
|
paulson@14394
|
359 |
(*Squash a theorem's flexflex constraints provided it can be done uniquely.
|
paulson@14394
|
360 |
This step can lose information.*)
|
paulson@14387
|
361 |
fun flexflex_unique th =
|
berghofe@17713
|
362 |
if null (tpairs_of th) then th else
|
paulson@23439
|
363 |
case distinct Thm.eq_thm (Seq.list_of (flexflex_rule th)) of
|
paulson@23439
|
364 |
[th] => th
|
paulson@23439
|
365 |
| [] => raise THM("flexflex_unique: impossible constraints", 0, [th])
|
paulson@23439
|
366 |
| _ => raise THM("flexflex_unique: multiple unifiers", 0, [th]);
|
paulson@14387
|
367 |
|
wenzelm@21603
|
368 |
|
wenzelm@21603
|
369 |
(* legacy standard operations *)
|
wenzelm@21603
|
370 |
|
wenzelm@16949
|
371 |
val standard' =
|
wenzelm@16949
|
372 |
implies_intr_hyps
|
wenzelm@16949
|
373 |
#> forall_intr_frees
|
wenzelm@19421
|
374 |
#> `Thm.maxidx_of
|
wenzelm@16949
|
375 |
#-> (fn maxidx =>
|
wenzelm@16949
|
376 |
forall_elim_vars (maxidx + 1)
|
wenzelm@20904
|
377 |
#> Thm.strip_shyps
|
wenzelm@16949
|
378 |
#> zero_var_indexes
|
wenzelm@26627
|
379 |
#> Thm.varifyT);
|
wenzelm@1218
|
380 |
|
wenzelm@16949
|
381 |
val standard =
|
wenzelm@21600
|
382 |
flexflex_unique
|
wenzelm@16949
|
383 |
#> standard'
|
wenzelm@26627
|
384 |
#> Thm.close_derivation;
|
berghofe@11512
|
385 |
|
clasohm@0
|
386 |
|
wenzelm@8328
|
387 |
(*Convert all Vars in a theorem to Frees. Also return a function for
|
paulson@4610
|
388 |
reversing that operation. DOES NOT WORK FOR TYPE VARIABLES.
|
paulson@4610
|
389 |
Similar code in type/freeze_thaw*)
|
paulson@15495
|
390 |
|
paulson@15495
|
391 |
fun freeze_thaw_robust th =
|
wenzelm@19878
|
392 |
let val fth = Thm.freezeT th
|
wenzelm@26627
|
393 |
val thy = Thm.theory_of_thm fth
|
wenzelm@26627
|
394 |
val {prop, tpairs, ...} = rep_thm fth
|
paulson@15495
|
395 |
in
|
wenzelm@23178
|
396 |
case List.foldr add_term_vars [] (prop :: Thm.terms_of_tpairs tpairs) of
|
paulson@15495
|
397 |
[] => (fth, fn i => fn x => x) (*No vars: nothing to do!*)
|
paulson@15495
|
398 |
| vars =>
|
paulson@19753
|
399 |
let fun newName (Var(ix,_)) = (ix, gensym (string_of_indexname ix))
|
paulson@19753
|
400 |
val alist = map newName vars
|
paulson@15495
|
401 |
fun mk_inst (Var(v,T)) =
|
wenzelm@16425
|
402 |
(cterm_of thy (Var(v,T)),
|
haftmann@17325
|
403 |
cterm_of thy (Free(((the o AList.lookup (op =) alist) v), T)))
|
paulson@15495
|
404 |
val insts = map mk_inst vars
|
paulson@15495
|
405 |
fun thaw i th' = (*i is non-negative increment for Var indexes*)
|
paulson@15495
|
406 |
th' |> forall_intr_list (map #2 insts)
|
wenzelm@22906
|
407 |
|> forall_elim_list (map (Thm.incr_indexes_cterm i o #1) insts)
|
paulson@15495
|
408 |
in (Thm.instantiate ([],insts) fth, thaw) end
|
paulson@15495
|
409 |
end;
|
paulson@15495
|
410 |
|
paulson@15495
|
411 |
(*Basic version of the function above. No option to rename Vars apart in thaw.
|
wenzelm@19999
|
412 |
The Frees created from Vars have nice names. FIXME: does not check for
|
paulson@19753
|
413 |
clashes with variables in the assumptions, so delete and use freeze_thaw_robust instead?*)
|
paulson@4610
|
414 |
fun freeze_thaw th =
|
wenzelm@19878
|
415 |
let val fth = Thm.freezeT th
|
wenzelm@26627
|
416 |
val thy = Thm.theory_of_thm fth
|
wenzelm@26627
|
417 |
val {prop, tpairs, ...} = rep_thm fth
|
paulson@7248
|
418 |
in
|
wenzelm@23178
|
419 |
case List.foldr add_term_vars [] (prop :: Thm.terms_of_tpairs tpairs) of
|
paulson@7248
|
420 |
[] => (fth, fn x => x)
|
paulson@7248
|
421 |
| vars =>
|
wenzelm@8328
|
422 |
let fun newName (Var(ix,_), (pairs,used)) =
|
wenzelm@20077
|
423 |
let val v = Name.variant used (string_of_indexname ix)
|
wenzelm@8328
|
424 |
in ((ix,v)::pairs, v::used) end;
|
wenzelm@23178
|
425 |
val (alist, _) = List.foldr newName ([], Library.foldr add_term_names
|
skalberg@15574
|
426 |
(prop :: Thm.terms_of_tpairs tpairs, [])) vars
|
wenzelm@8328
|
427 |
fun mk_inst (Var(v,T)) =
|
wenzelm@16425
|
428 |
(cterm_of thy (Var(v,T)),
|
haftmann@17325
|
429 |
cterm_of thy (Free(((the o AList.lookup (op =) alist) v), T)))
|
wenzelm@8328
|
430 |
val insts = map mk_inst vars
|
wenzelm@8328
|
431 |
fun thaw th' =
|
wenzelm@8328
|
432 |
th' |> forall_intr_list (map #2 insts)
|
wenzelm@8328
|
433 |
|> forall_elim_list (map #1 insts)
|
wenzelm@8328
|
434 |
in (Thm.instantiate ([],insts) fth, thaw) end
|
paulson@7248
|
435 |
end;
|
paulson@4610
|
436 |
|
paulson@7248
|
437 |
(*Rotates a rule's premises to the left by k*)
|
wenzelm@23537
|
438 |
fun rotate_prems 0 = I
|
wenzelm@23537
|
439 |
| rotate_prems k = permute_prems 0 k;
|
wenzelm@23537
|
440 |
|
wenzelm@23423
|
441 |
fun with_subgoal i f = rotate_prems (i - 1) #> f #> rotate_prems (1 - i);
|
paulson@4610
|
442 |
|
oheimb@11163
|
443 |
(* permute prems, where the i-th position in the argument list (counting from 0)
|
oheimb@11163
|
444 |
gives the position within the original thm to be transferred to position i.
|
oheimb@11163
|
445 |
Any remaining trailing positions are left unchanged. *)
|
oheimb@11163
|
446 |
val rearrange_prems = let
|
oheimb@11163
|
447 |
fun rearr new [] thm = thm
|
wenzelm@11815
|
448 |
| rearr new (p::ps) thm = rearr (new+1)
|
oheimb@11163
|
449 |
(map (fn q => if new<=q andalso q<p then q+1 else q) ps)
|
oheimb@11163
|
450 |
(permute_prems (new+1) (new-p) (permute_prems new (p-new) thm))
|
oheimb@11163
|
451 |
in rearr 0 end;
|
paulson@4610
|
452 |
|
wenzelm@252
|
453 |
(*Resolution: exactly one resolvent must be produced.*)
|
clasohm@0
|
454 |
fun tha RSN (i,thb) =
|
wenzelm@19861
|
455 |
case Seq.chop 2 (biresolution false [(false,tha)] i thb) of
|
clasohm@0
|
456 |
([th],_) => th
|
clasohm@0
|
457 |
| ([],_) => raise THM("RSN: no unifiers", i, [tha,thb])
|
clasohm@0
|
458 |
| _ => raise THM("RSN: multiple unifiers", i, [tha,thb]);
|
clasohm@0
|
459 |
|
clasohm@0
|
460 |
(*resolution: P==>Q, Q==>R gives P==>R. *)
|
clasohm@0
|
461 |
fun tha RS thb = tha RSN (1,thb);
|
clasohm@0
|
462 |
|
clasohm@0
|
463 |
(*For joining lists of rules*)
|
wenzelm@252
|
464 |
fun thas RLN (i,thbs) =
|
clasohm@0
|
465 |
let val resolve = biresolution false (map (pair false) thas) i
|
wenzelm@4270
|
466 |
fun resb thb = Seq.list_of (resolve thb) handle THM _ => []
|
wenzelm@19482
|
467 |
in maps resb thbs end;
|
clasohm@0
|
468 |
|
clasohm@0
|
469 |
fun thas RL thbs = thas RLN (1,thbs);
|
clasohm@0
|
470 |
|
lcp@11
|
471 |
(*Resolve a list of rules against bottom_rl from right to left;
|
lcp@11
|
472 |
makes proof trees*)
|
wenzelm@252
|
473 |
fun rls MRS bottom_rl =
|
lcp@11
|
474 |
let fun rs_aux i [] = bottom_rl
|
wenzelm@252
|
475 |
| rs_aux i (rl::rls) = rl RSN (i, rs_aux (i+1) rls)
|
lcp@11
|
476 |
in rs_aux 1 rls end;
|
lcp@11
|
477 |
|
lcp@11
|
478 |
(*As above, but for rule lists*)
|
wenzelm@252
|
479 |
fun rlss MRL bottom_rls =
|
lcp@11
|
480 |
let fun rs_aux i [] = bottom_rls
|
wenzelm@252
|
481 |
| rs_aux i (rls::rlss) = rls RLN (i, rs_aux (i+1) rlss)
|
lcp@11
|
482 |
in rs_aux 1 rlss end;
|
lcp@11
|
483 |
|
wenzelm@9288
|
484 |
(*A version of MRS with more appropriate argument order*)
|
wenzelm@9288
|
485 |
fun bottom_rl OF rls = rls MRS bottom_rl;
|
wenzelm@9288
|
486 |
|
wenzelm@252
|
487 |
(*compose Q and [...,Qi,Q(i+1),...]==>R to [...,Q(i+1),...]==>R
|
clasohm@0
|
488 |
with no lifting or renaming! Q may contain ==> or meta-quants
|
clasohm@0
|
489 |
ALWAYS deletes premise i *)
|
wenzelm@252
|
490 |
fun compose(tha,i,thb) =
|
paulson@24426
|
491 |
distinct Thm.eq_thm (Seq.list_of (bicompose false (false,tha,0) i thb));
|
clasohm@0
|
492 |
|
wenzelm@6946
|
493 |
fun compose_single (tha,i,thb) =
|
paulson@24426
|
494 |
case compose (tha,i,thb) of
|
wenzelm@6946
|
495 |
[th] => th
|
paulson@24426
|
496 |
| _ => raise THM ("compose: unique result expected", i, [tha,thb]);
|
wenzelm@6946
|
497 |
|
clasohm@0
|
498 |
(*compose Q and [Q1,Q2,...,Qk]==>R to [Q2,...,Qk]==>R getting unique result*)
|
clasohm@0
|
499 |
fun tha COMP thb =
|
paulson@24426
|
500 |
case compose(tha,1,thb) of
|
wenzelm@252
|
501 |
[th] => th
|
clasohm@0
|
502 |
| _ => raise THM("COMP", 1, [tha,thb]);
|
clasohm@0
|
503 |
|
wenzelm@13105
|
504 |
|
wenzelm@4016
|
505 |
(** theorem equality **)
|
clasohm@0
|
506 |
|
clasohm@0
|
507 |
(*Useful "distance" function for BEST_FIRST*)
|
wenzelm@16720
|
508 |
val size_of_thm = size_of_term o Thm.full_prop_of;
|
clasohm@0
|
509 |
|
lcp@1194
|
510 |
|
lcp@1194
|
511 |
|
clasohm@0
|
512 |
(*** Meta-Rewriting Rules ***)
|
clasohm@0
|
513 |
|
wenzelm@26487
|
514 |
val read_prop = certify o SimpleSyntax.read_prop;
|
wenzelm@26487
|
515 |
|
wenzelm@26487
|
516 |
fun store_thm name th =
|
wenzelm@26487
|
517 |
Context.>>> (Context.map_theory_result (PureThy.store_thm (name, th)));
|
paulson@4610
|
518 |
|
wenzelm@26487
|
519 |
fun store_thm_open name th =
|
wenzelm@26487
|
520 |
Context.>>> (Context.map_theory_result (PureThy.store_thm_open (name, th)));
|
wenzelm@26487
|
521 |
|
wenzelm@26487
|
522 |
fun store_standard_thm name th = store_thm name (standard th);
|
wenzelm@12135
|
523 |
fun store_standard_thm_open name thm = store_thm_open name (standard' thm);
|
wenzelm@4016
|
524 |
|
clasohm@0
|
525 |
val reflexive_thm =
|
wenzelm@26487
|
526 |
let val cx = certify (Var(("x",0),TVar(("'a",0),[])))
|
wenzelm@12135
|
527 |
in store_standard_thm_open "reflexive" (Thm.reflexive cx) end;
|
clasohm@0
|
528 |
|
clasohm@0
|
529 |
val symmetric_thm =
|
wenzelm@24241
|
530 |
let val xy = read_prop "x::'a == y::'a"
|
wenzelm@16595
|
531 |
in store_standard_thm_open "symmetric" (Thm.implies_intr xy (Thm.symmetric (Thm.assume xy))) end;
|
clasohm@0
|
532 |
|
clasohm@0
|
533 |
val transitive_thm =
|
wenzelm@24241
|
534 |
let val xy = read_prop "x::'a == y::'a"
|
wenzelm@24241
|
535 |
val yz = read_prop "y::'a == z::'a"
|
clasohm@0
|
536 |
val xythm = Thm.assume xy and yzthm = Thm.assume yz
|
wenzelm@12135
|
537 |
in store_standard_thm_open "transitive" (Thm.implies_intr yz (Thm.transitive xythm yzthm)) end;
|
clasohm@0
|
538 |
|
nipkow@4679
|
539 |
fun symmetric_fun thm = thm RS symmetric_thm;
|
nipkow@4679
|
540 |
|
berghofe@11512
|
541 |
fun extensional eq =
|
berghofe@11512
|
542 |
let val eq' =
|
wenzelm@22906
|
543 |
abstract_rule "x" (Thm.dest_arg (fst (Thm.dest_equals (cprop_of eq)))) eq
|
berghofe@11512
|
544 |
in equal_elim (eta_conversion (cprop_of eq')) eq' end;
|
berghofe@11512
|
545 |
|
wenzelm@18820
|
546 |
val equals_cong =
|
wenzelm@24241
|
547 |
store_standard_thm_open "equals_cong" (Thm.reflexive (read_prop "x::'a == y::'a"));
|
wenzelm@18820
|
548 |
|
berghofe@10414
|
549 |
val imp_cong =
|
berghofe@10414
|
550 |
let
|
wenzelm@24241
|
551 |
val ABC = read_prop "A ==> B::prop == C::prop"
|
wenzelm@24241
|
552 |
val AB = read_prop "A ==> B"
|
wenzelm@24241
|
553 |
val AC = read_prop "A ==> C"
|
wenzelm@24241
|
554 |
val A = read_prop "A"
|
berghofe@10414
|
555 |
in
|
wenzelm@12135
|
556 |
store_standard_thm_open "imp_cong" (implies_intr ABC (equal_intr
|
berghofe@10414
|
557 |
(implies_intr AB (implies_intr A
|
berghofe@10414
|
558 |
(equal_elim (implies_elim (assume ABC) (assume A))
|
berghofe@10414
|
559 |
(implies_elim (assume AB) (assume A)))))
|
berghofe@10414
|
560 |
(implies_intr AC (implies_intr A
|
berghofe@10414
|
561 |
(equal_elim (symmetric (implies_elim (assume ABC) (assume A)))
|
berghofe@10414
|
562 |
(implies_elim (assume AC) (assume A)))))))
|
berghofe@10414
|
563 |
end;
|
berghofe@10414
|
564 |
|
berghofe@10414
|
565 |
val swap_prems_eq =
|
berghofe@10414
|
566 |
let
|
wenzelm@24241
|
567 |
val ABC = read_prop "A ==> B ==> C"
|
wenzelm@24241
|
568 |
val BAC = read_prop "B ==> A ==> C"
|
wenzelm@24241
|
569 |
val A = read_prop "A"
|
wenzelm@24241
|
570 |
val B = read_prop "B"
|
berghofe@10414
|
571 |
in
|
wenzelm@12135
|
572 |
store_standard_thm_open "swap_prems_eq" (equal_intr
|
berghofe@10414
|
573 |
(implies_intr ABC (implies_intr B (implies_intr A
|
berghofe@10414
|
574 |
(implies_elim (implies_elim (assume ABC) (assume A)) (assume B)))))
|
berghofe@10414
|
575 |
(implies_intr BAC (implies_intr A (implies_intr B
|
berghofe@10414
|
576 |
(implies_elim (implies_elim (assume BAC) (assume B)) (assume A))))))
|
berghofe@10414
|
577 |
end;
|
lcp@229
|
578 |
|
wenzelm@22938
|
579 |
val imp_cong_rule = Thm.combination o Thm.combination (Thm.reflexive implies);
|
wenzelm@22938
|
580 |
|
wenzelm@23537
|
581 |
fun arg_cong_rule ct th = Thm.combination (Thm.reflexive ct) th; (*AP_TERM in LCF/HOL*)
|
wenzelm@23537
|
582 |
fun fun_cong_rule th ct = Thm.combination th (Thm.reflexive ct); (*AP_THM in LCF/HOL*)
|
wenzelm@23568
|
583 |
fun binop_cong_rule ct th1 th2 = Thm.combination (arg_cong_rule ct th1) th2;
|
clasohm@0
|
584 |
|
skalberg@15001
|
585 |
local
|
wenzelm@22906
|
586 |
val dest_eq = Thm.dest_equals o cprop_of
|
skalberg@15001
|
587 |
val rhs_of = snd o dest_eq
|
skalberg@15001
|
588 |
in
|
skalberg@15001
|
589 |
fun beta_eta_conversion t =
|
skalberg@15001
|
590 |
let val thm = beta_conversion true t
|
skalberg@15001
|
591 |
in transitive thm (eta_conversion (rhs_of thm)) end
|
skalberg@15001
|
592 |
end;
|
skalberg@15001
|
593 |
|
berghofe@15925
|
594 |
fun eta_long_conversion ct = transitive (beta_eta_conversion ct)
|
berghofe@15925
|
595 |
(symmetric (beta_eta_conversion (cterm_fun (Pattern.eta_long []) ct)));
|
berghofe@15925
|
596 |
|
paulson@20861
|
597 |
(*Contract all eta-redexes in the theorem, lest they give rise to needless abstractions*)
|
paulson@20861
|
598 |
fun eta_contraction_rule th =
|
paulson@20861
|
599 |
equal_elim (eta_conversion (cprop_of th)) th;
|
paulson@20861
|
600 |
|
wenzelm@24947
|
601 |
|
wenzelm@24947
|
602 |
(* abs_def *)
|
wenzelm@24947
|
603 |
|
wenzelm@24947
|
604 |
(*
|
wenzelm@24947
|
605 |
f ?x1 ... ?xn == u
|
wenzelm@24947
|
606 |
--------------------
|
wenzelm@24947
|
607 |
f == %x1 ... xn. u
|
wenzelm@24947
|
608 |
*)
|
wenzelm@24947
|
609 |
|
wenzelm@24947
|
610 |
local
|
wenzelm@24947
|
611 |
|
wenzelm@24947
|
612 |
fun contract_lhs th =
|
wenzelm@24947
|
613 |
Thm.transitive (Thm.symmetric (beta_eta_conversion
|
wenzelm@24947
|
614 |
(fst (Thm.dest_equals (cprop_of th))))) th;
|
wenzelm@24947
|
615 |
|
wenzelm@24947
|
616 |
fun var_args ct =
|
wenzelm@24947
|
617 |
(case try Thm.dest_comb ct of
|
wenzelm@24947
|
618 |
SOME (f, arg) =>
|
wenzelm@24947
|
619 |
(case Thm.term_of arg of
|
wenzelm@24947
|
620 |
Var ((x, _), _) => update (eq_snd (op aconvc)) (x, arg) (var_args f)
|
wenzelm@24947
|
621 |
| _ => [])
|
wenzelm@24947
|
622 |
| NONE => []);
|
wenzelm@24947
|
623 |
|
wenzelm@24947
|
624 |
in
|
wenzelm@24947
|
625 |
|
wenzelm@24947
|
626 |
fun abs_def th =
|
wenzelm@18337
|
627 |
let
|
wenzelm@24947
|
628 |
val th' = contract_lhs th;
|
wenzelm@24947
|
629 |
val args = var_args (Thm.lhs_of th');
|
wenzelm@24947
|
630 |
in contract_lhs (fold (uncurry Thm.abstract_rule) args th') end;
|
wenzelm@24947
|
631 |
|
wenzelm@24947
|
632 |
end;
|
wenzelm@24947
|
633 |
|
wenzelm@18337
|
634 |
|
wenzelm@18468
|
635 |
|
wenzelm@15669
|
636 |
(*** Some useful meta-theorems ***)
|
clasohm@0
|
637 |
|
clasohm@0
|
638 |
(*The rule V/V, obtains assumption solving for eresolve_tac*)
|
wenzelm@24241
|
639 |
val asm_rl = store_standard_thm_open "asm_rl" (Thm.trivial (read_prop "?psi"));
|
wenzelm@7380
|
640 |
val _ = store_thm "_" asm_rl;
|
clasohm@0
|
641 |
|
clasohm@0
|
642 |
(*Meta-level cut rule: [| V==>W; V |] ==> W *)
|
wenzelm@4016
|
643 |
val cut_rl =
|
wenzelm@12135
|
644 |
store_standard_thm_open "cut_rl"
|
wenzelm@24241
|
645 |
(Thm.trivial (read_prop "?psi ==> ?theta"));
|
clasohm@0
|
646 |
|
wenzelm@252
|
647 |
(*Generalized elim rule for one conclusion; cut_rl with reversed premises:
|
clasohm@0
|
648 |
[| PROP V; PROP V ==> PROP W |] ==> PROP W *)
|
clasohm@0
|
649 |
val revcut_rl =
|
wenzelm@24241
|
650 |
let val V = read_prop "V"
|
wenzelm@24241
|
651 |
and VW = read_prop "V ==> W";
|
wenzelm@4016
|
652 |
in
|
wenzelm@12135
|
653 |
store_standard_thm_open "revcut_rl"
|
wenzelm@4016
|
654 |
(implies_intr V (implies_intr VW (implies_elim (assume VW) (assume V))))
|
clasohm@0
|
655 |
end;
|
clasohm@0
|
656 |
|
lcp@668
|
657 |
(*for deleting an unwanted assumption*)
|
lcp@668
|
658 |
val thin_rl =
|
wenzelm@24241
|
659 |
let val V = read_prop "V"
|
wenzelm@24241
|
660 |
and W = read_prop "W";
|
wenzelm@12135
|
661 |
in store_standard_thm_open "thin_rl" (implies_intr V (implies_intr W (assume W))) end;
|
lcp@668
|
662 |
|
clasohm@0
|
663 |
(* (!!x. PROP ?V) == PROP ?V Allows removal of redundant parameters*)
|
clasohm@0
|
664 |
val triv_forall_equality =
|
wenzelm@24241
|
665 |
let val V = read_prop "V"
|
wenzelm@24241
|
666 |
and QV = read_prop "!!x::'a. V"
|
wenzelm@26487
|
667 |
and x = certify (Free ("x", Term.aT []));
|
wenzelm@4016
|
668 |
in
|
wenzelm@12135
|
669 |
store_standard_thm_open "triv_forall_equality"
|
berghofe@11512
|
670 |
(equal_intr (implies_intr QV (forall_elim x (assume QV)))
|
berghofe@11512
|
671 |
(implies_intr V (forall_intr x (assume V))))
|
clasohm@0
|
672 |
end;
|
clasohm@0
|
673 |
|
wenzelm@19051
|
674 |
(* (PROP ?Phi ==> PROP ?Phi ==> PROP ?Psi) ==>
|
wenzelm@19051
|
675 |
(PROP ?Phi ==> PROP ?Psi)
|
wenzelm@19051
|
676 |
*)
|
wenzelm@19051
|
677 |
val distinct_prems_rl =
|
wenzelm@19051
|
678 |
let
|
wenzelm@24241
|
679 |
val AAB = read_prop "Phi ==> Phi ==> Psi"
|
wenzelm@24241
|
680 |
val A = read_prop "Phi";
|
wenzelm@19051
|
681 |
in
|
wenzelm@19051
|
682 |
store_standard_thm_open "distinct_prems_rl"
|
wenzelm@19051
|
683 |
(implies_intr_list [AAB, A] (implies_elim_list (assume AAB) [assume A, assume A]))
|
wenzelm@19051
|
684 |
end;
|
wenzelm@19051
|
685 |
|
nipkow@1756
|
686 |
(* (PROP ?PhiA ==> PROP ?PhiB ==> PROP ?Psi) ==>
|
nipkow@1756
|
687 |
(PROP ?PhiB ==> PROP ?PhiA ==> PROP ?Psi)
|
nipkow@1756
|
688 |
`thm COMP swap_prems_rl' swaps the first two premises of `thm'
|
nipkow@1756
|
689 |
*)
|
nipkow@1756
|
690 |
val swap_prems_rl =
|
wenzelm@24241
|
691 |
let val cmajor = read_prop "PhiA ==> PhiB ==> Psi";
|
nipkow@1756
|
692 |
val major = assume cmajor;
|
wenzelm@24241
|
693 |
val cminor1 = read_prop "PhiA";
|
nipkow@1756
|
694 |
val minor1 = assume cminor1;
|
wenzelm@24241
|
695 |
val cminor2 = read_prop "PhiB";
|
nipkow@1756
|
696 |
val minor2 = assume cminor2;
|
wenzelm@12135
|
697 |
in store_standard_thm_open "swap_prems_rl"
|
nipkow@1756
|
698 |
(implies_intr cmajor (implies_intr cminor2 (implies_intr cminor1
|
nipkow@1756
|
699 |
(implies_elim (implies_elim major minor1) minor2))))
|
nipkow@1756
|
700 |
end;
|
nipkow@1756
|
701 |
|
nipkow@3653
|
702 |
(* [| PROP ?phi ==> PROP ?psi; PROP ?psi ==> PROP ?phi |]
|
nipkow@3653
|
703 |
==> PROP ?phi == PROP ?psi
|
wenzelm@8328
|
704 |
Introduction rule for == as a meta-theorem.
|
nipkow@3653
|
705 |
*)
|
nipkow@3653
|
706 |
val equal_intr_rule =
|
wenzelm@24241
|
707 |
let val PQ = read_prop "phi ==> psi"
|
wenzelm@24241
|
708 |
and QP = read_prop "psi ==> phi"
|
wenzelm@4016
|
709 |
in
|
wenzelm@12135
|
710 |
store_standard_thm_open "equal_intr_rule"
|
wenzelm@4016
|
711 |
(implies_intr PQ (implies_intr QP (equal_intr (assume PQ) (assume QP))))
|
nipkow@3653
|
712 |
end;
|
nipkow@3653
|
713 |
|
wenzelm@19421
|
714 |
(* PROP ?phi == PROP ?psi ==> PROP ?phi ==> PROP ?psi *)
|
wenzelm@13368
|
715 |
val equal_elim_rule1 =
|
wenzelm@24241
|
716 |
let val eq = read_prop "phi::prop == psi::prop"
|
wenzelm@24241
|
717 |
and P = read_prop "phi"
|
wenzelm@13368
|
718 |
in store_standard_thm_open "equal_elim_rule1"
|
wenzelm@13368
|
719 |
(Thm.equal_elim (assume eq) (assume P) |> implies_intr_list [eq, P])
|
wenzelm@13368
|
720 |
end;
|
wenzelm@4285
|
721 |
|
wenzelm@19421
|
722 |
(* PROP ?psi == PROP ?phi ==> PROP ?phi ==> PROP ?psi *)
|
wenzelm@19421
|
723 |
val equal_elim_rule2 =
|
wenzelm@19421
|
724 |
store_standard_thm_open "equal_elim_rule2" (symmetric_thm RS equal_elim_rule1);
|
wenzelm@19421
|
725 |
|
wenzelm@12297
|
726 |
(* "[| PROP ?phi; PROP ?phi; PROP ?psi |] ==> PROP ?psi" *)
|
wenzelm@12297
|
727 |
val remdups_rl =
|
wenzelm@24241
|
728 |
let val P = read_prop "phi" and Q = read_prop "psi";
|
wenzelm@12297
|
729 |
in store_standard_thm_open "remdups_rl" (implies_intr_list [P, P, Q] (Thm.assume Q)) end;
|
wenzelm@12297
|
730 |
|
wenzelm@12297
|
731 |
|
wenzelm@9554
|
732 |
(*(PROP ?phi ==> (!!x. PROP ?psi(x))) == (!!x. PROP ?phi ==> PROP ?psi(x))
|
wenzelm@12297
|
733 |
Rewrite rule for HHF normalization.*)
|
wenzelm@9554
|
734 |
|
wenzelm@9554
|
735 |
val norm_hhf_eq =
|
wenzelm@9554
|
736 |
let
|
wenzelm@14854
|
737 |
val aT = TFree ("'a", []);
|
wenzelm@9554
|
738 |
val all = Term.all aT;
|
wenzelm@9554
|
739 |
val x = Free ("x", aT);
|
wenzelm@9554
|
740 |
val phi = Free ("phi", propT);
|
wenzelm@9554
|
741 |
val psi = Free ("psi", aT --> propT);
|
wenzelm@9554
|
742 |
|
wenzelm@26487
|
743 |
val cx = certify x;
|
wenzelm@26487
|
744 |
val cphi = certify phi;
|
wenzelm@26487
|
745 |
val lhs = certify (Logic.mk_implies (phi, all $ Abs ("x", aT, psi $ Bound 0)));
|
wenzelm@26487
|
746 |
val rhs = certify (all $ Abs ("x", aT, Logic.mk_implies (phi, psi $ Bound 0)));
|
wenzelm@9554
|
747 |
in
|
wenzelm@9554
|
748 |
Thm.equal_intr
|
wenzelm@9554
|
749 |
(Thm.implies_elim (Thm.assume lhs) (Thm.assume cphi)
|
wenzelm@9554
|
750 |
|> Thm.forall_elim cx
|
wenzelm@9554
|
751 |
|> Thm.implies_intr cphi
|
wenzelm@9554
|
752 |
|> Thm.forall_intr cx
|
wenzelm@9554
|
753 |
|> Thm.implies_intr lhs)
|
wenzelm@9554
|
754 |
(Thm.implies_elim
|
wenzelm@9554
|
755 |
(Thm.assume rhs |> Thm.forall_elim cx) (Thm.assume cphi)
|
wenzelm@9554
|
756 |
|> Thm.forall_intr cx
|
wenzelm@9554
|
757 |
|> Thm.implies_intr cphi
|
wenzelm@9554
|
758 |
|> Thm.implies_intr rhs)
|
wenzelm@12135
|
759 |
|> store_standard_thm_open "norm_hhf_eq"
|
wenzelm@9554
|
760 |
end;
|
wenzelm@9554
|
761 |
|
wenzelm@18179
|
762 |
val norm_hhf_prop = Logic.dest_equals (Thm.prop_of norm_hhf_eq);
|
wenzelm@18179
|
763 |
|
wenzelm@12800
|
764 |
fun is_norm_hhf tm =
|
wenzelm@12800
|
765 |
let
|
wenzelm@12800
|
766 |
fun is_norm (Const ("==>", _) $ _ $ (Const ("all", _) $ _)) = false
|
wenzelm@12800
|
767 |
| is_norm (t $ u) = is_norm t andalso is_norm u
|
wenzelm@12800
|
768 |
| is_norm (Abs (_, _, t)) = is_norm t
|
wenzelm@12800
|
769 |
| is_norm _ = true;
|
wenzelm@18929
|
770 |
in is_norm (Envir.beta_eta_contract tm) end;
|
wenzelm@12800
|
771 |
|
wenzelm@16425
|
772 |
fun norm_hhf thy t =
|
wenzelm@12800
|
773 |
if is_norm_hhf t then t
|
wenzelm@18179
|
774 |
else Pattern.rewrite_term thy [norm_hhf_prop] [] t;
|
wenzelm@18179
|
775 |
|
wenzelm@20298
|
776 |
fun norm_hhf_cterm ct =
|
wenzelm@20298
|
777 |
if is_norm_hhf (Thm.term_of ct) then ct
|
wenzelm@20298
|
778 |
else cterm_fun (Pattern.rewrite_term (Thm.theory_of_cterm ct) [norm_hhf_prop] []) ct;
|
wenzelm@20298
|
779 |
|
wenzelm@12800
|
780 |
|
wenzelm@21603
|
781 |
(* var indexes *)
|
wenzelm@21603
|
782 |
|
paulson@24426
|
783 |
(*Increment the indexes of only the type variables*)
|
paulson@24426
|
784 |
fun incr_type_indexes inc th =
|
paulson@24426
|
785 |
let val tvs = term_tvars (prop_of th)
|
paulson@24426
|
786 |
and thy = theory_of_thm th
|
paulson@24426
|
787 |
fun inc_tvar ((a,i),s) = pairself (ctyp_of thy) (TVar ((a,i),s), TVar ((a,i+inc),s))
|
paulson@24426
|
788 |
in Thm.instantiate (map inc_tvar tvs, []) th end;
|
paulson@24426
|
789 |
|
wenzelm@21603
|
790 |
fun incr_indexes th = Thm.incr_indexes (Thm.maxidx_of th + 1);
|
wenzelm@21603
|
791 |
|
wenzelm@21603
|
792 |
fun incr_indexes2 th1 th2 =
|
wenzelm@21603
|
793 |
Thm.incr_indexes (Int.max (Thm.maxidx_of th1, Thm.maxidx_of th2) + 1);
|
wenzelm@21603
|
794 |
|
wenzelm@21603
|
795 |
fun th1 INCR_COMP th2 = incr_indexes th2 th1 COMP th2;
|
wenzelm@21603
|
796 |
fun th1 COMP_INCR th2 = th1 COMP incr_indexes th1 th2;
|
wenzelm@21603
|
797 |
|
wenzelm@9554
|
798 |
|
wenzelm@16425
|
799 |
(*** Instantiate theorem th, reading instantiations in theory thy ****)
|
paulson@8129
|
800 |
|
paulson@8129
|
801 |
(*Version that normalizes the result: Thm.instantiate no longer does that*)
|
wenzelm@21603
|
802 |
fun instantiate instpair th =
|
wenzelm@21603
|
803 |
Thm.adjust_maxidx_thm ~1 (Thm.instantiate instpair th COMP_INCR asm_rl);
|
paulson@8129
|
804 |
|
wenzelm@16425
|
805 |
fun read_instantiate_sg' thy sinsts th =
|
paulson@8129
|
806 |
let val ts = types_sorts th;
|
wenzelm@15669
|
807 |
val used = add_used th [];
|
wenzelm@16425
|
808 |
in instantiate (read_insts thy ts ts used sinsts) th end;
|
berghofe@15797
|
809 |
|
wenzelm@16425
|
810 |
fun read_instantiate_sg thy sinsts th =
|
wenzelm@20298
|
811 |
read_instantiate_sg' thy (map (apfst Syntax.read_indexname) sinsts) th;
|
paulson@8129
|
812 |
|
paulson@8129
|
813 |
(*Instantiate theorem th, reading instantiations under theory of th*)
|
paulson@8129
|
814 |
fun read_instantiate sinsts th =
|
wenzelm@16425
|
815 |
read_instantiate_sg (Thm.theory_of_thm th) sinsts th;
|
paulson@8129
|
816 |
|
berghofe@15797
|
817 |
fun read_instantiate' sinsts th =
|
wenzelm@16425
|
818 |
read_instantiate_sg' (Thm.theory_of_thm th) sinsts th;
|
berghofe@15797
|
819 |
|
paulson@8129
|
820 |
|
paulson@8129
|
821 |
(*Left-to-right replacements: tpairs = [...,(vi,ti),...].
|
paulson@8129
|
822 |
Instantiates distinct Vars by terms, inferring type instantiations. *)
|
paulson@8129
|
823 |
local
|
wenzelm@16425
|
824 |
fun add_types ((ct,cu), (thy,tye,maxidx)) =
|
wenzelm@26627
|
825 |
let
|
wenzelm@26627
|
826 |
val thyt = Thm.theory_of_cterm ct;
|
wenzelm@26627
|
827 |
val thyu = Thm.theory_of_cterm cu;
|
wenzelm@26627
|
828 |
val {t, T, maxidx = maxt, ...} = Thm.rep_cterm ct;
|
wenzelm@26627
|
829 |
val {t = u, T = U, maxidx = maxu, ...} = Thm.rep_cterm cu;
|
paulson@8129
|
830 |
val maxi = Int.max(maxidx, Int.max(maxt, maxu));
|
wenzelm@16425
|
831 |
val thy' = Theory.merge(thy, Theory.merge(thyt, thyu))
|
wenzelm@16949
|
832 |
val (tye',maxi') = Sign.typ_unify thy' (T, U) (tye, maxi)
|
berghofe@25470
|
833 |
handle Type.TUNIFY => raise TYPE ("Ill-typed instantiation:\nType\n" ^
|
berghofe@25470
|
834 |
Sign.string_of_typ thy' (Envir.norm_type tye T) ^
|
berghofe@25470
|
835 |
"\nof variable " ^
|
berghofe@25470
|
836 |
Sign.string_of_term thy' (Term.map_types (Envir.norm_type tye) t) ^
|
berghofe@25470
|
837 |
"\ncannot be unified with type\n" ^
|
berghofe@25470
|
838 |
Sign.string_of_typ thy' (Envir.norm_type tye U) ^ "\nof term " ^
|
berghofe@25470
|
839 |
Sign.string_of_term thy' (Term.map_types (Envir.norm_type tye) u),
|
berghofe@25470
|
840 |
[T, U], [t, u])
|
wenzelm@16425
|
841 |
in (thy', tye', maxi') end;
|
paulson@8129
|
842 |
in
|
paulson@22561
|
843 |
fun cterm_instantiate [] th = th
|
paulson@22561
|
844 |
| cterm_instantiate ctpairs0 th =
|
wenzelm@23178
|
845 |
let val (thy,tye,_) = List.foldr add_types (Thm.theory_of_thm th, Vartab.empty, 0) ctpairs0
|
wenzelm@18179
|
846 |
fun instT(ct,cu) =
|
paulson@22287
|
847 |
let val inst = cterm_of thy o Term.map_types (Envir.norm_type tye) o term_of
|
paulson@14340
|
848 |
in (inst ct, inst cu) end
|
paulson@22307
|
849 |
fun ctyp2 (ixn, (S, T)) = (ctyp_of thy (TVar (ixn, S)), ctyp_of thy (Envir.norm_type tye T))
|
berghofe@8406
|
850 |
in instantiate (map ctyp2 (Vartab.dest tye), map instT ctpairs0) th end
|
paulson@8129
|
851 |
handle TERM _ =>
|
wenzelm@16425
|
852 |
raise THM("cterm_instantiate: incompatible theories",0,[th])
|
paulson@8129
|
853 |
| TYPE (msg, _, _) => raise THM(msg, 0, [th])
|
paulson@8129
|
854 |
end;
|
paulson@8129
|
855 |
|
paulson@8129
|
856 |
|
wenzelm@19775
|
857 |
(** protected propositions and embedded terms **)
|
wenzelm@4789
|
858 |
|
wenzelm@4789
|
859 |
local
|
wenzelm@26487
|
860 |
val A = certify (Free ("A", propT));
|
wenzelm@26424
|
861 |
val get_axiom = Thm.unvarify o Thm.get_axiom (Context.the_theory (Context.the_thread_data ()));
|
wenzelm@26424
|
862 |
val prop_def = get_axiom "prop_def";
|
wenzelm@26424
|
863 |
val term_def = get_axiom "term_def";
|
wenzelm@4789
|
864 |
in
|
wenzelm@26487
|
865 |
val protect = Thm.capply (certify Logic.protectC);
|
wenzelm@21437
|
866 |
val protectI = store_thm "protectI" (PureThy.kind_rule Thm.internalK (standard
|
wenzelm@18025
|
867 |
(Thm.equal_elim (Thm.symmetric prop_def) (Thm.assume A))));
|
wenzelm@21437
|
868 |
val protectD = store_thm "protectD" (PureThy.kind_rule Thm.internalK (standard
|
wenzelm@18025
|
869 |
(Thm.equal_elim prop_def (Thm.assume (protect A)))));
|
wenzelm@18179
|
870 |
val protect_cong = store_standard_thm_open "protect_cong" (Thm.reflexive (protect A));
|
wenzelm@19775
|
871 |
|
wenzelm@21437
|
872 |
val termI = store_thm "termI" (PureThy.kind_rule Thm.internalK (standard
|
wenzelm@19775
|
873 |
(Thm.equal_elim (Thm.symmetric term_def) (Thm.forall_intr A (Thm.trivial A)))));
|
wenzelm@4789
|
874 |
end;
|
wenzelm@4789
|
875 |
|
wenzelm@18025
|
876 |
fun implies_intr_protected asms th =
|
wenzelm@18118
|
877 |
let val asms' = map protect asms in
|
wenzelm@18118
|
878 |
implies_elim_list
|
wenzelm@18118
|
879 |
(implies_intr_list asms th)
|
wenzelm@18118
|
880 |
(map (fn asm' => Thm.assume asm' RS protectD) asms')
|
wenzelm@18118
|
881 |
|> implies_intr_list asms'
|
wenzelm@18118
|
882 |
end;
|
wenzelm@11815
|
883 |
|
wenzelm@19775
|
884 |
fun mk_term ct =
|
wenzelm@19775
|
885 |
let
|
wenzelm@26627
|
886 |
val thy = Thm.theory_of_cterm ct;
|
wenzelm@19775
|
887 |
val cert = Thm.cterm_of thy;
|
wenzelm@19775
|
888 |
val certT = Thm.ctyp_of thy;
|
wenzelm@26627
|
889 |
val T = Thm.typ_of (Thm.ctyp_of_term ct);
|
wenzelm@19775
|
890 |
val a = certT (TVar (("'a", 0), []));
|
wenzelm@19775
|
891 |
val x = cert (Var (("x", 0), T));
|
wenzelm@19775
|
892 |
in Thm.instantiate ([(a, certT T)], [(x, ct)]) termI end;
|
wenzelm@19775
|
893 |
|
wenzelm@19775
|
894 |
fun dest_term th =
|
wenzelm@21566
|
895 |
let val cprop = strip_imp_concl (Thm.cprop_of th) in
|
wenzelm@19775
|
896 |
if can Logic.dest_term (Thm.term_of cprop) then
|
wenzelm@20579
|
897 |
Thm.dest_arg cprop
|
wenzelm@19775
|
898 |
else raise THM ("dest_term", 0, [th])
|
wenzelm@19775
|
899 |
end;
|
wenzelm@19775
|
900 |
|
wenzelm@21519
|
901 |
fun cterm_rule f = dest_term o f o mk_term;
|
wenzelm@21519
|
902 |
fun term_rule thy f t = Thm.term_of (cterm_rule f (Thm.cterm_of thy t));
|
wenzelm@20881
|
903 |
|
wenzelm@26487
|
904 |
val dummy_thm = mk_term (certify (Term.dummy_pattern propT));
|
wenzelm@24005
|
905 |
|
wenzelm@24005
|
906 |
|
wenzelm@4789
|
907 |
|
wenzelm@5688
|
908 |
(** variations on instantiate **)
|
wenzelm@4285
|
909 |
|
wenzelm@4285
|
910 |
(* instantiate by left-to-right occurrence of variables *)
|
wenzelm@4285
|
911 |
|
wenzelm@4285
|
912 |
fun instantiate' cTs cts thm =
|
wenzelm@4285
|
913 |
let
|
wenzelm@4285
|
914 |
fun err msg =
|
wenzelm@4285
|
915 |
raise TYPE ("instantiate': " ^ msg,
|
wenzelm@19482
|
916 |
map_filter (Option.map Thm.typ_of) cTs,
|
wenzelm@19482
|
917 |
map_filter (Option.map Thm.term_of) cts);
|
wenzelm@4285
|
918 |
|
wenzelm@4285
|
919 |
fun inst_of (v, ct) =
|
wenzelm@16425
|
920 |
(Thm.cterm_of (Thm.theory_of_cterm ct) (Var v), ct)
|
wenzelm@4285
|
921 |
handle TYPE (msg, _, _) => err msg;
|
wenzelm@4285
|
922 |
|
berghofe@15797
|
923 |
fun tyinst_of (v, cT) =
|
wenzelm@16425
|
924 |
(Thm.ctyp_of (Thm.theory_of_ctyp cT) (TVar v), cT)
|
berghofe@15797
|
925 |
handle TYPE (msg, _, _) => err msg;
|
berghofe@15797
|
926 |
|
wenzelm@20298
|
927 |
fun zip_vars xs ys =
|
wenzelm@20298
|
928 |
zip_options xs ys handle Library.UnequalLengths =>
|
wenzelm@20298
|
929 |
err "more instantiations than variables in thm";
|
wenzelm@4285
|
930 |
|
wenzelm@4285
|
931 |
(*instantiate types first!*)
|
wenzelm@4285
|
932 |
val thm' =
|
wenzelm@4285
|
933 |
if forall is_none cTs then thm
|
wenzelm@20298
|
934 |
else Thm.instantiate
|
wenzelm@22695
|
935 |
(map tyinst_of (zip_vars (rev (Thm.fold_terms Term.add_tvars thm [])) cTs), []) thm;
|
wenzelm@20579
|
936 |
val thm'' =
|
wenzelm@4285
|
937 |
if forall is_none cts then thm'
|
wenzelm@20298
|
938 |
else Thm.instantiate
|
wenzelm@22695
|
939 |
([], map inst_of (zip_vars (rev (Thm.fold_terms Term.add_vars thm' [])) cts)) thm';
|
wenzelm@20298
|
940 |
in thm'' end;
|
wenzelm@4285
|
941 |
|
wenzelm@4285
|
942 |
|
berghofe@14081
|
943 |
|
berghofe@14081
|
944 |
(** renaming of bound variables **)
|
berghofe@14081
|
945 |
|
berghofe@14081
|
946 |
(* replace bound variables x_i in thm by y_i *)
|
berghofe@14081
|
947 |
(* where vs = [(x_1, y_1), ..., (x_n, y_n)] *)
|
berghofe@14081
|
948 |
|
berghofe@14081
|
949 |
fun rename_bvars [] thm = thm
|
berghofe@14081
|
950 |
| rename_bvars vs thm =
|
wenzelm@26627
|
951 |
let
|
wenzelm@26627
|
952 |
val cert = Thm.cterm_of (Thm.theory_of_thm thm);
|
wenzelm@26627
|
953 |
fun ren (Abs (x, T, t)) = Abs (AList.lookup (op =) vs x |> the_default x, T, ren t)
|
wenzelm@26627
|
954 |
| ren (t $ u) = ren t $ ren u
|
wenzelm@26627
|
955 |
| ren t = t;
|
wenzelm@26627
|
956 |
in equal_elim (reflexive (cert (ren (Thm.prop_of thm)))) thm end;
|
berghofe@14081
|
957 |
|
berghofe@14081
|
958 |
|
berghofe@14081
|
959 |
(* renaming in left-to-right order *)
|
berghofe@14081
|
960 |
|
berghofe@14081
|
961 |
fun rename_bvars' xs thm =
|
berghofe@14081
|
962 |
let
|
wenzelm@26627
|
963 |
val cert = Thm.cterm_of (Thm.theory_of_thm thm);
|
wenzelm@26627
|
964 |
val prop = Thm.prop_of thm;
|
berghofe@14081
|
965 |
fun rename [] t = ([], t)
|
berghofe@14081
|
966 |
| rename (x' :: xs) (Abs (x, T, t)) =
|
berghofe@14081
|
967 |
let val (xs', t') = rename xs t
|
wenzelm@18929
|
968 |
in (xs', Abs (the_default x x', T, t')) end
|
berghofe@14081
|
969 |
| rename xs (t $ u) =
|
berghofe@14081
|
970 |
let
|
berghofe@14081
|
971 |
val (xs', t') = rename xs t;
|
berghofe@14081
|
972 |
val (xs'', u') = rename xs' u
|
berghofe@14081
|
973 |
in (xs'', t' $ u') end
|
berghofe@14081
|
974 |
| rename xs t = (xs, t);
|
berghofe@14081
|
975 |
in case rename xs prop of
|
wenzelm@26627
|
976 |
([], prop') => equal_elim (reflexive (cert prop')) thm
|
berghofe@14081
|
977 |
| _ => error "More names than abstractions in theorem"
|
berghofe@14081
|
978 |
end;
|
berghofe@14081
|
979 |
|
berghofe@14081
|
980 |
|
wenzelm@11975
|
981 |
|
wenzelm@18225
|
982 |
(** multi_resolve **)
|
wenzelm@18225
|
983 |
|
wenzelm@18225
|
984 |
local
|
wenzelm@18225
|
985 |
|
wenzelm@18225
|
986 |
fun res th i rule =
|
wenzelm@18225
|
987 |
Thm.biresolution false [(false, th)] i rule handle THM _ => Seq.empty;
|
wenzelm@18225
|
988 |
|
wenzelm@18225
|
989 |
fun multi_res _ [] rule = Seq.single rule
|
wenzelm@18225
|
990 |
| multi_res i (th :: ths) rule = Seq.maps (res th i) (multi_res (i + 1) ths rule);
|
wenzelm@18225
|
991 |
|
wenzelm@18225
|
992 |
in
|
wenzelm@18225
|
993 |
|
wenzelm@18225
|
994 |
val multi_resolve = multi_res 1;
|
wenzelm@18225
|
995 |
fun multi_resolves facts rules = Seq.maps (multi_resolve facts) (Seq.of_list rules);
|
wenzelm@18225
|
996 |
|
wenzelm@18225
|
997 |
end;
|
wenzelm@18225
|
998 |
|
wenzelm@11975
|
999 |
end;
|
wenzelm@5903
|
1000 |
|
wenzelm@5903
|
1001 |
structure BasicDrule: BASIC_DRULE = Drule;
|
wenzelm@5903
|
1002 |
open BasicDrule;
|