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@9288
|
9 |
infix 0 RS RSN RL RLN MRS MRL OF COMP;
|
clasohm@0
|
10 |
|
wenzelm@5903
|
11 |
signature BASIC_DRULE =
|
wenzelm@3766
|
12 |
sig
|
paulson@9547
|
13 |
val mk_implies : cterm * cterm -> cterm
|
paulson@9547
|
14 |
val list_implies : cterm list * cterm -> cterm
|
wenzelm@4285
|
15 |
val dest_implies : cterm -> cterm * cterm
|
berghofe@10414
|
16 |
val dest_equals : cterm -> cterm * cterm
|
wenzelm@8328
|
17 |
val skip_flexpairs : cterm -> cterm
|
wenzelm@8328
|
18 |
val strip_imp_prems : cterm -> cterm list
|
berghofe@10414
|
19 |
val strip_imp_concl : cterm -> cterm
|
wenzelm@8328
|
20 |
val cprems_of : thm -> cterm list
|
wenzelm@8328
|
21 |
val read_insts :
|
wenzelm@4285
|
22 |
Sign.sg -> (indexname -> typ option) * (indexname -> sort option)
|
wenzelm@4285
|
23 |
-> (indexname -> typ option) * (indexname -> sort option)
|
wenzelm@4285
|
24 |
-> string list -> (string*string)list
|
wenzelm@4285
|
25 |
-> (indexname*ctyp)list * (cterm*cterm)list
|
wenzelm@4285
|
26 |
val types_sorts: thm -> (indexname-> typ option) * (indexname-> sort option)
|
wenzelm@7636
|
27 |
val strip_shyps_warning : thm -> thm
|
wenzelm@8328
|
28 |
val forall_intr_list : cterm list -> thm -> thm
|
wenzelm@8328
|
29 |
val forall_intr_frees : thm -> thm
|
wenzelm@8328
|
30 |
val forall_intr_vars : thm -> thm
|
wenzelm@8328
|
31 |
val forall_elim_list : cterm list -> thm -> thm
|
wenzelm@8328
|
32 |
val forall_elim_var : int -> thm -> thm
|
wenzelm@8328
|
33 |
val forall_elim_vars : int -> thm -> thm
|
wenzelm@12725
|
34 |
val gen_all : thm -> thm
|
wenzelm@8328
|
35 |
val freeze_thaw : thm -> thm * (thm -> thm)
|
wenzelm@8328
|
36 |
val implies_elim_list : thm -> thm list -> thm
|
wenzelm@8328
|
37 |
val implies_intr_list : cterm list -> thm -> thm
|
paulson@8129
|
38 |
val instantiate :
|
paulson@8129
|
39 |
(indexname * ctyp) list * (cterm * cterm) list -> thm -> thm
|
wenzelm@8328
|
40 |
val zero_var_indexes : thm -> thm
|
wenzelm@8328
|
41 |
val standard : thm -> thm
|
berghofe@11512
|
42 |
val standard' : thm -> thm
|
paulson@4610
|
43 |
val rotate_prems : int -> thm -> thm
|
oheimb@11163
|
44 |
val rearrange_prems : int list -> thm -> thm
|
wenzelm@8328
|
45 |
val assume_ax : theory -> string -> thm
|
wenzelm@8328
|
46 |
val RSN : thm * (int * thm) -> thm
|
wenzelm@8328
|
47 |
val RS : thm * thm -> thm
|
wenzelm@8328
|
48 |
val RLN : thm list * (int * thm list) -> thm list
|
wenzelm@8328
|
49 |
val RL : thm list * thm list -> thm list
|
wenzelm@8328
|
50 |
val MRS : thm list * thm -> thm
|
wenzelm@8328
|
51 |
val MRL : thm list list * thm list -> thm list
|
wenzelm@9288
|
52 |
val OF : thm * thm list -> thm
|
wenzelm@8328
|
53 |
val compose : thm * int * thm -> thm list
|
wenzelm@8328
|
54 |
val COMP : thm * thm -> thm
|
clasohm@0
|
55 |
val read_instantiate_sg: Sign.sg -> (string*string)list -> thm -> thm
|
wenzelm@8328
|
56 |
val read_instantiate : (string*string)list -> thm -> thm
|
wenzelm@8328
|
57 |
val cterm_instantiate : (cterm*cterm)list -> thm -> thm
|
wenzelm@13105
|
58 |
val eq_thm_sg : thm * thm -> bool
|
wenzelm@13105
|
59 |
val eq_thm_prop : thm * thm -> bool
|
wenzelm@8328
|
60 |
val weak_eq_thm : thm * thm -> bool
|
wenzelm@8328
|
61 |
val size_of_thm : thm -> int
|
wenzelm@8328
|
62 |
val reflexive_thm : thm
|
wenzelm@8328
|
63 |
val symmetric_thm : thm
|
wenzelm@8328
|
64 |
val transitive_thm : thm
|
paulson@2004
|
65 |
val refl_implies : thm
|
nipkow@4679
|
66 |
val symmetric_fun : thm -> thm
|
berghofe@11512
|
67 |
val extensional : thm -> thm
|
berghofe@10414
|
68 |
val imp_cong : thm
|
berghofe@10414
|
69 |
val swap_prems_eq : thm
|
wenzelm@8328
|
70 |
val equal_abs_elim : cterm -> thm -> thm
|
wenzelm@4285
|
71 |
val equal_abs_elim_list: cterm list -> thm -> thm
|
wenzelm@4285
|
72 |
val flexpair_abs_elim_list: cterm list -> thm -> thm
|
wenzelm@8328
|
73 |
val asm_rl : thm
|
wenzelm@8328
|
74 |
val cut_rl : thm
|
wenzelm@8328
|
75 |
val revcut_rl : thm
|
wenzelm@8328
|
76 |
val thin_rl : thm
|
wenzelm@4285
|
77 |
val triv_forall_equality: thm
|
nipkow@1756
|
78 |
val swap_prems_rl : thm
|
wenzelm@4285
|
79 |
val equal_intr_rule : thm
|
wenzelm@13368
|
80 |
val equal_elim_rule1 : thm
|
paulson@8550
|
81 |
val inst : string -> string -> thm -> thm
|
wenzelm@8328
|
82 |
val instantiate' : ctyp option list -> cterm option list -> thm -> thm
|
wenzelm@8328
|
83 |
val incr_indexes_wrt : int list -> ctyp list -> cterm list -> thm list -> thm -> thm
|
wenzelm@5903
|
84 |
end;
|
wenzelm@5903
|
85 |
|
wenzelm@5903
|
86 |
signature DRULE =
|
wenzelm@5903
|
87 |
sig
|
wenzelm@5903
|
88 |
include BASIC_DRULE
|
berghofe@12908
|
89 |
val strip_comb: cterm -> cterm * cterm list
|
wenzelm@11975
|
90 |
val rule_attribute: ('a -> thm -> thm) -> 'a attribute
|
wenzelm@11975
|
91 |
val tag_rule: tag -> thm -> thm
|
wenzelm@11975
|
92 |
val untag_rule: string -> thm -> thm
|
wenzelm@11975
|
93 |
val tag: tag -> 'a attribute
|
wenzelm@11975
|
94 |
val untag: string -> 'a attribute
|
wenzelm@11975
|
95 |
val get_kind: thm -> string
|
wenzelm@11975
|
96 |
val kind: string -> 'a attribute
|
wenzelm@11975
|
97 |
val theoremK: string
|
wenzelm@11975
|
98 |
val lemmaK: string
|
wenzelm@11975
|
99 |
val corollaryK: string
|
wenzelm@11975
|
100 |
val internalK: string
|
wenzelm@11975
|
101 |
val kind_internal: 'a attribute
|
wenzelm@11975
|
102 |
val has_internal: tag list -> bool
|
wenzelm@11975
|
103 |
val impose_hyps: cterm list -> thm -> thm
|
wenzelm@11975
|
104 |
val close_derivation: thm -> thm
|
wenzelm@12005
|
105 |
val local_standard: thm -> thm
|
wenzelm@11975
|
106 |
val compose_single: thm * int * thm -> thm
|
wenzelm@12373
|
107 |
val add_rule: thm -> thm list -> thm list
|
wenzelm@12373
|
108 |
val del_rule: thm -> thm list -> thm list
|
wenzelm@11975
|
109 |
val add_rules: thm list -> thm list -> thm list
|
wenzelm@11975
|
110 |
val del_rules: thm list -> thm list -> thm list
|
wenzelm@11975
|
111 |
val merge_rules: thm list * thm list -> thm list
|
wenzelm@11975
|
112 |
val norm_hhf_eq: thm
|
wenzelm@12800
|
113 |
val is_norm_hhf: term -> bool
|
wenzelm@12800
|
114 |
val norm_hhf: Sign.sg -> term -> term
|
wenzelm@11975
|
115 |
val triv_goal: thm
|
wenzelm@11975
|
116 |
val rev_triv_goal: thm
|
wenzelm@11815
|
117 |
val implies_intr_goals: cterm list -> thm -> thm
|
wenzelm@11975
|
118 |
val freeze_all: thm -> thm
|
wenzelm@11975
|
119 |
val mk_triv_goal: cterm -> thm
|
wenzelm@11975
|
120 |
val tvars_of_terms: term list -> (indexname * sort) list
|
wenzelm@11975
|
121 |
val vars_of_terms: term list -> (indexname * typ) list
|
wenzelm@11975
|
122 |
val tvars_of: thm -> (indexname * sort) list
|
wenzelm@11975
|
123 |
val vars_of: thm -> (indexname * typ) list
|
wenzelm@11975
|
124 |
val unvarifyT: thm -> thm
|
wenzelm@11975
|
125 |
val unvarify: thm -> thm
|
wenzelm@12495
|
126 |
val tvars_intr_list: string list -> thm -> thm * (string * indexname) list
|
wenzelm@12297
|
127 |
val remdups_rl: thm
|
wenzelm@11975
|
128 |
val conj_intr: thm -> thm -> thm
|
wenzelm@11975
|
129 |
val conj_intr_list: thm list -> thm
|
wenzelm@11975
|
130 |
val conj_elim: thm -> thm * thm
|
wenzelm@11975
|
131 |
val conj_elim_list: thm -> thm list
|
wenzelm@12135
|
132 |
val conj_elim_precise: int -> thm -> thm list
|
wenzelm@12135
|
133 |
val conj_intr_thm: thm
|
berghofe@13325
|
134 |
val abs_def: thm -> thm
|
wenzelm@3766
|
135 |
end;
|
clasohm@0
|
136 |
|
wenzelm@5903
|
137 |
structure Drule: DRULE =
|
clasohm@0
|
138 |
struct
|
clasohm@0
|
139 |
|
wenzelm@3991
|
140 |
|
lcp@708
|
141 |
(** some cterm->cterm operations: much faster than calling cterm_of! **)
|
lcp@708
|
142 |
|
paulson@2004
|
143 |
(** SAME NAMES as in structure Logic: use compound identifiers! **)
|
paulson@2004
|
144 |
|
clasohm@1703
|
145 |
(*dest_implies for cterms. Note T=prop below*)
|
paulson@2004
|
146 |
fun dest_implies ct =
|
wenzelm@8328
|
147 |
case term_of ct of
|
wenzelm@8328
|
148 |
(Const("==>", _) $ _ $ _) =>
|
wenzelm@10767
|
149 |
let val (ct1,ct2) = Thm.dest_comb ct
|
wenzelm@10767
|
150 |
in (#2 (Thm.dest_comb ct1), ct2) end
|
paulson@2004
|
151 |
| _ => raise TERM ("dest_implies", [term_of ct]) ;
|
clasohm@1703
|
152 |
|
berghofe@10414
|
153 |
fun dest_equals ct =
|
berghofe@10414
|
154 |
case term_of ct of
|
berghofe@10414
|
155 |
(Const("==", _) $ _ $ _) =>
|
wenzelm@10767
|
156 |
let val (ct1,ct2) = Thm.dest_comb ct
|
wenzelm@10767
|
157 |
in (#2 (Thm.dest_comb ct1), ct2) end
|
berghofe@10414
|
158 |
| _ => raise TERM ("dest_equals", [term_of ct]) ;
|
berghofe@10414
|
159 |
|
clasohm@1703
|
160 |
|
lcp@708
|
161 |
(*Discard flexflex pairs; return a cterm*)
|
paulson@2004
|
162 |
fun skip_flexpairs ct =
|
lcp@708
|
163 |
case term_of ct of
|
wenzelm@8328
|
164 |
(Const("==>", _) $ (Const("=?=",_)$_$_) $ _) =>
|
wenzelm@8328
|
165 |
skip_flexpairs (#2 (dest_implies ct))
|
lcp@708
|
166 |
| _ => ct;
|
lcp@708
|
167 |
|
lcp@708
|
168 |
(* A1==>...An==>B goes to [A1,...,An], where B is not an implication *)
|
paulson@2004
|
169 |
fun strip_imp_prems ct =
|
paulson@2004
|
170 |
let val (cA,cB) = dest_implies ct
|
paulson@2004
|
171 |
in cA :: strip_imp_prems cB end
|
lcp@708
|
172 |
handle TERM _ => [];
|
lcp@708
|
173 |
|
paulson@2004
|
174 |
(* A1==>...An==>B goes to B, where B is not an implication *)
|
paulson@2004
|
175 |
fun strip_imp_concl ct =
|
wenzelm@8328
|
176 |
case term_of ct of (Const("==>", _) $ _ $ _) =>
|
wenzelm@10767
|
177 |
strip_imp_concl (#2 (Thm.dest_comb ct))
|
paulson@2004
|
178 |
| _ => ct;
|
paulson@2004
|
179 |
|
lcp@708
|
180 |
(*The premises of a theorem, as a cterm list*)
|
paulson@2004
|
181 |
val cprems_of = strip_imp_prems o skip_flexpairs o cprop_of;
|
lcp@708
|
182 |
|
paulson@9547
|
183 |
val proto_sign = Theory.sign_of ProtoPure.thy;
|
paulson@9547
|
184 |
|
paulson@9547
|
185 |
val implies = cterm_of proto_sign Term.implies;
|
paulson@9547
|
186 |
|
paulson@9547
|
187 |
(*cterm version of mk_implies*)
|
wenzelm@10767
|
188 |
fun mk_implies(A,B) = Thm.capply (Thm.capply implies A) B;
|
paulson@9547
|
189 |
|
paulson@9547
|
190 |
(*cterm version of list_implies: [A1,...,An], B goes to [|A1;==>;An|]==>B *)
|
paulson@9547
|
191 |
fun list_implies([], B) = B
|
paulson@9547
|
192 |
| list_implies(A::AS, B) = mk_implies (A, list_implies(AS,B));
|
paulson@9547
|
193 |
|
berghofe@12908
|
194 |
(*cterm version of strip_comb: maps f(t1,...,tn) to (f, [t1,...,tn]) *)
|
berghofe@12908
|
195 |
fun strip_comb ct =
|
berghofe@12908
|
196 |
let
|
berghofe@12908
|
197 |
fun stripc (p as (ct, cts)) =
|
berghofe@12908
|
198 |
let val (ct1, ct2) = Thm.dest_comb ct
|
berghofe@12908
|
199 |
in stripc (ct1, ct2 :: cts) end handle CTERM _ => p
|
berghofe@12908
|
200 |
in stripc (ct, []) end;
|
berghofe@12908
|
201 |
|
lcp@708
|
202 |
|
lcp@229
|
203 |
(** reading of instantiations **)
|
lcp@229
|
204 |
|
lcp@229
|
205 |
fun absent ixn =
|
lcp@229
|
206 |
error("No such variable in term: " ^ Syntax.string_of_vname ixn);
|
lcp@229
|
207 |
|
lcp@229
|
208 |
fun inst_failure ixn =
|
lcp@229
|
209 |
error("Instantiation of " ^ Syntax.string_of_vname ixn ^ " fails");
|
lcp@229
|
210 |
|
nipkow@4281
|
211 |
fun read_insts sign (rtypes,rsorts) (types,sorts) used insts =
|
wenzelm@10403
|
212 |
let
|
nipkow@4281
|
213 |
fun split([],tvs,vs) = (tvs,vs)
|
wenzelm@4691
|
214 |
| split((sv,st)::l,tvs,vs) = (case Symbol.explode sv of
|
wenzelm@4691
|
215 |
"'"::cs => split(l,(Syntax.indexname cs,st)::tvs,vs)
|
wenzelm@4691
|
216 |
| cs => split(l,tvs,(Syntax.indexname cs,st)::vs));
|
nipkow@4281
|
217 |
val (tvs,vs) = split(insts,[],[]);
|
nipkow@4281
|
218 |
fun readT((a,i),st) =
|
nipkow@4281
|
219 |
let val ixn = ("'" ^ a,i);
|
nipkow@4281
|
220 |
val S = case rsorts ixn of Some S => S | None => absent ixn;
|
nipkow@4281
|
221 |
val T = Sign.read_typ (sign,sorts) st;
|
wenzelm@10403
|
222 |
in if Sign.typ_instance sign (T, TVar(ixn,S)) then (ixn,T)
|
nipkow@4281
|
223 |
else inst_failure ixn
|
nipkow@4281
|
224 |
end
|
nipkow@4281
|
225 |
val tye = map readT tvs;
|
nipkow@4281
|
226 |
fun mkty(ixn,st) = (case rtypes ixn of
|
nipkow@4281
|
227 |
Some T => (ixn,(st,typ_subst_TVars tye T))
|
nipkow@4281
|
228 |
| None => absent ixn);
|
nipkow@4281
|
229 |
val ixnsTs = map mkty vs;
|
nipkow@4281
|
230 |
val ixns = map fst ixnsTs
|
nipkow@4281
|
231 |
and sTs = map snd ixnsTs
|
nipkow@4281
|
232 |
val (cts,tye2) = read_def_cterms(sign,types,sorts) used false sTs;
|
nipkow@4281
|
233 |
fun mkcVar(ixn,T) =
|
nipkow@4281
|
234 |
let val U = typ_subst_TVars tye2 T
|
nipkow@4281
|
235 |
in cterm_of sign (Var(ixn,U)) end
|
nipkow@4281
|
236 |
val ixnTs = ListPair.zip(ixns, map snd sTs)
|
nipkow@4281
|
237 |
in (map (fn (ixn,T) => (ixn,ctyp_of sign T)) (tye2 @ tye),
|
nipkow@4281
|
238 |
ListPair.zip(map mkcVar ixnTs,cts))
|
nipkow@4281
|
239 |
end;
|
lcp@229
|
240 |
|
lcp@229
|
241 |
|
wenzelm@252
|
242 |
(*** Find the type (sort) associated with a (T)Var or (T)Free in a term
|
clasohm@0
|
243 |
Used for establishing default types (of variables) and sorts (of
|
clasohm@0
|
244 |
type variables) when reading another term.
|
clasohm@0
|
245 |
Index -1 indicates that a (T)Free rather than a (T)Var is wanted.
|
clasohm@0
|
246 |
***)
|
clasohm@0
|
247 |
|
clasohm@0
|
248 |
fun types_sorts thm =
|
clasohm@0
|
249 |
let val {prop,hyps,...} = rep_thm thm;
|
wenzelm@252
|
250 |
val big = list_comb(prop,hyps); (* bogus term! *)
|
wenzelm@252
|
251 |
val vars = map dest_Var (term_vars big);
|
wenzelm@252
|
252 |
val frees = map dest_Free (term_frees big);
|
wenzelm@252
|
253 |
val tvars = term_tvars big;
|
wenzelm@252
|
254 |
val tfrees = term_tfrees big;
|
wenzelm@252
|
255 |
fun typ(a,i) = if i<0 then assoc(frees,a) else assoc(vars,(a,i));
|
wenzelm@252
|
256 |
fun sort(a,i) = if i<0 then assoc(tfrees,a) else assoc(tvars,(a,i));
|
clasohm@0
|
257 |
in (typ,sort) end;
|
clasohm@0
|
258 |
|
wenzelm@7636
|
259 |
|
wenzelm@9455
|
260 |
|
wenzelm@9455
|
261 |
(** basic attributes **)
|
wenzelm@9455
|
262 |
|
wenzelm@9455
|
263 |
(* dependent rules *)
|
wenzelm@9455
|
264 |
|
wenzelm@9455
|
265 |
fun rule_attribute f (x, thm) = (x, (f x thm));
|
wenzelm@9455
|
266 |
|
wenzelm@9455
|
267 |
|
wenzelm@9455
|
268 |
(* add / delete tags *)
|
wenzelm@9455
|
269 |
|
wenzelm@9455
|
270 |
fun map_tags f thm =
|
wenzelm@9455
|
271 |
Thm.put_name_tags (Thm.name_of_thm thm, f (#2 (Thm.get_name_tags thm))) thm;
|
wenzelm@9455
|
272 |
|
wenzelm@9455
|
273 |
fun tag_rule tg = map_tags (fn tgs => if tg mem tgs then tgs else tgs @ [tg]);
|
wenzelm@9455
|
274 |
fun untag_rule s = map_tags (filter_out (equal s o #1));
|
wenzelm@9455
|
275 |
|
wenzelm@9455
|
276 |
fun tag tg x = rule_attribute (K (tag_rule tg)) x;
|
wenzelm@9455
|
277 |
fun untag s x = rule_attribute (K (untag_rule s)) x;
|
wenzelm@9455
|
278 |
|
wenzelm@9455
|
279 |
fun simple_tag name x = tag (name, []) x;
|
wenzelm@9455
|
280 |
|
wenzelm@11741
|
281 |
|
wenzelm@11741
|
282 |
(* theorem kinds *)
|
wenzelm@11741
|
283 |
|
wenzelm@11741
|
284 |
val theoremK = "theorem";
|
wenzelm@11741
|
285 |
val lemmaK = "lemma";
|
wenzelm@11741
|
286 |
val corollaryK = "corollary";
|
wenzelm@11741
|
287 |
val internalK = "internal";
|
wenzelm@9455
|
288 |
|
wenzelm@11741
|
289 |
fun get_kind thm =
|
wenzelm@11741
|
290 |
(case Library.assoc (#2 (Thm.get_name_tags thm), "kind") of
|
wenzelm@11741
|
291 |
Some (k :: _) => k
|
wenzelm@11741
|
292 |
| _ => "unknown");
|
wenzelm@11741
|
293 |
|
wenzelm@11741
|
294 |
fun kind_rule k = tag_rule ("kind", [k]) o untag_rule "kind";
|
wenzelm@12710
|
295 |
fun kind k x = if k = "" then x else rule_attribute (K (kind_rule k)) x;
|
wenzelm@11741
|
296 |
fun kind_internal x = kind internalK x;
|
wenzelm@11741
|
297 |
fun has_internal tags = exists (equal internalK o fst) tags;
|
wenzelm@9455
|
298 |
|
wenzelm@9455
|
299 |
|
wenzelm@9455
|
300 |
|
clasohm@0
|
301 |
(** Standardization of rules **)
|
clasohm@0
|
302 |
|
wenzelm@7636
|
303 |
(*Strip extraneous shyps as far as possible*)
|
wenzelm@7636
|
304 |
fun strip_shyps_warning thm =
|
wenzelm@7636
|
305 |
let
|
wenzelm@7636
|
306 |
val str_of_sort = Sign.str_of_sort (Thm.sign_of_thm thm);
|
wenzelm@7636
|
307 |
val thm' = Thm.strip_shyps thm;
|
wenzelm@7636
|
308 |
val xshyps = Thm.extra_shyps thm';
|
wenzelm@7636
|
309 |
in
|
wenzelm@7636
|
310 |
if null xshyps then ()
|
wenzelm@7636
|
311 |
else warning ("Pending sort hypotheses: " ^ commas (map str_of_sort xshyps));
|
wenzelm@7636
|
312 |
thm'
|
wenzelm@7636
|
313 |
end;
|
wenzelm@7636
|
314 |
|
clasohm@0
|
315 |
(*Generalization over a list of variables, IGNORING bad ones*)
|
clasohm@0
|
316 |
fun forall_intr_list [] th = th
|
clasohm@0
|
317 |
| forall_intr_list (y::ys) th =
|
wenzelm@252
|
318 |
let val gth = forall_intr_list ys th
|
wenzelm@252
|
319 |
in forall_intr y gth handle THM _ => gth end;
|
clasohm@0
|
320 |
|
clasohm@0
|
321 |
(*Generalization over all suitable Free variables*)
|
clasohm@0
|
322 |
fun forall_intr_frees th =
|
clasohm@0
|
323 |
let val {prop,sign,...} = rep_thm th
|
clasohm@0
|
324 |
in forall_intr_list
|
wenzelm@4440
|
325 |
(map (cterm_of sign) (sort (make_ord atless) (term_frees prop)))
|
clasohm@0
|
326 |
th
|
clasohm@0
|
327 |
end;
|
clasohm@0
|
328 |
|
wenzelm@7898
|
329 |
val forall_elim_var = PureThy.forall_elim_var;
|
wenzelm@7898
|
330 |
val forall_elim_vars = PureThy.forall_elim_vars;
|
clasohm@0
|
331 |
|
wenzelm@12725
|
332 |
fun gen_all thm =
|
wenzelm@12719
|
333 |
let
|
wenzelm@12719
|
334 |
val {sign, prop, maxidx, ...} = Thm.rep_thm thm;
|
wenzelm@12719
|
335 |
fun elim (th, (x, T)) = Thm.forall_elim (Thm.cterm_of sign (Var ((x, maxidx + 1), T))) th;
|
wenzelm@12719
|
336 |
val vs = Term.strip_all_vars prop;
|
wenzelm@12719
|
337 |
in foldl elim (thm, Term.variantlist (map #1 vs, []) ~~ map #2 vs) end;
|
wenzelm@9554
|
338 |
|
clasohm@0
|
339 |
(*Specialization over a list of cterms*)
|
clasohm@0
|
340 |
fun forall_elim_list cts th = foldr (uncurry forall_elim) (rev cts, th);
|
clasohm@0
|
341 |
|
wenzelm@11815
|
342 |
(* maps A1,...,An |- B to [| A1;...;An |] ==> B *)
|
clasohm@0
|
343 |
fun implies_intr_list cAs th = foldr (uncurry implies_intr) (cAs,th);
|
clasohm@0
|
344 |
|
clasohm@0
|
345 |
(* maps [| A1;...;An |] ==> B and [A1,...,An] to B *)
|
clasohm@0
|
346 |
fun implies_elim_list impth ths = foldl (uncurry implies_elim) (impth,ths);
|
clasohm@0
|
347 |
|
wenzelm@11960
|
348 |
(* maps |- B to A1,...,An |- B *)
|
wenzelm@11960
|
349 |
fun impose_hyps chyps th =
|
wenzelm@12092
|
350 |
let val chyps' = gen_rems (op aconv o apfst Thm.term_of) (chyps, #hyps (Thm.rep_thm th))
|
wenzelm@12092
|
351 |
in implies_elim_list (implies_intr_list chyps' th) (map Thm.assume chyps') end;
|
wenzelm@11960
|
352 |
|
clasohm@0
|
353 |
(*Reset Var indexes to zero, renaming to preserve distinctness*)
|
wenzelm@252
|
354 |
fun zero_var_indexes th =
|
clasohm@0
|
355 |
let val {prop,sign,...} = rep_thm th;
|
clasohm@0
|
356 |
val vars = term_vars prop
|
clasohm@0
|
357 |
val bs = foldl add_new_id ([], map (fn Var((a,_),_)=>a) vars)
|
wenzelm@252
|
358 |
val inrs = add_term_tvars(prop,[]);
|
wenzelm@252
|
359 |
val nms' = rev(foldl add_new_id ([], map (#1 o #1) inrs));
|
paulson@2266
|
360 |
val tye = ListPair.map (fn ((v,rs),a) => (v, TVar((a,0),rs)))
|
wenzelm@8328
|
361 |
(inrs, nms')
|
wenzelm@252
|
362 |
val ctye = map (fn (v,T) => (v,ctyp_of sign T)) tye;
|
wenzelm@252
|
363 |
fun varpairs([],[]) = []
|
wenzelm@252
|
364 |
| varpairs((var as Var(v,T)) :: vars, b::bs) =
|
wenzelm@252
|
365 |
let val T' = typ_subst_TVars tye T
|
wenzelm@252
|
366 |
in (cterm_of sign (Var(v,T')),
|
wenzelm@252
|
367 |
cterm_of sign (Var((b,0),T'))) :: varpairs(vars,bs)
|
wenzelm@252
|
368 |
end
|
wenzelm@252
|
369 |
| varpairs _ = raise TERM("varpairs", []);
|
paulson@8129
|
370 |
in Thm.instantiate (ctye, varpairs(vars,rev bs)) th end;
|
clasohm@0
|
371 |
|
clasohm@0
|
372 |
|
clasohm@0
|
373 |
(*Standard form of object-rule: no hypotheses, Frees, or outer quantifiers;
|
clasohm@0
|
374 |
all generality expressed by Vars having index 0.*)
|
wenzelm@10515
|
375 |
|
wenzelm@10515
|
376 |
fun close_derivation thm =
|
wenzelm@10515
|
377 |
if Thm.get_name_tags thm = ("", []) then Thm.name_thm ("", thm)
|
wenzelm@10515
|
378 |
else thm;
|
wenzelm@10515
|
379 |
|
berghofe@11512
|
380 |
fun standard' th =
|
wenzelm@10515
|
381 |
let val {maxidx,...} = rep_thm th in
|
wenzelm@10515
|
382 |
th
|
wenzelm@10515
|
383 |
|> implies_intr_hyps
|
wenzelm@10515
|
384 |
|> forall_intr_frees |> forall_elim_vars (maxidx + 1)
|
wenzelm@10515
|
385 |
|> strip_shyps_warning
|
berghofe@11512
|
386 |
|> zero_var_indexes |> Thm.varifyT |> Thm.compress
|
wenzelm@1218
|
387 |
end;
|
wenzelm@1218
|
388 |
|
berghofe@11512
|
389 |
val standard = close_derivation o standard';
|
berghofe@11512
|
390 |
|
wenzelm@12005
|
391 |
fun local_standard th =
|
wenzelm@12221
|
392 |
th |> strip_shyps |> zero_var_indexes
|
wenzelm@12005
|
393 |
|> Thm.compress |> close_derivation;
|
wenzelm@12005
|
394 |
|
clasohm@0
|
395 |
|
wenzelm@8328
|
396 |
(*Convert all Vars in a theorem to Frees. Also return a function for
|
paulson@4610
|
397 |
reversing that operation. DOES NOT WORK FOR TYPE VARIABLES.
|
paulson@4610
|
398 |
Similar code in type/freeze_thaw*)
|
paulson@4610
|
399 |
fun freeze_thaw th =
|
paulson@7248
|
400 |
let val fth = freezeT th
|
paulson@7248
|
401 |
val {prop,sign,...} = rep_thm fth
|
paulson@7248
|
402 |
in
|
paulson@7248
|
403 |
case term_vars prop of
|
paulson@7248
|
404 |
[] => (fth, fn x => x)
|
paulson@7248
|
405 |
| vars =>
|
wenzelm@8328
|
406 |
let fun newName (Var(ix,_), (pairs,used)) =
|
wenzelm@8328
|
407 |
let val v = variant used (string_of_indexname ix)
|
wenzelm@8328
|
408 |
in ((ix,v)::pairs, v::used) end;
|
wenzelm@8328
|
409 |
val (alist, _) = foldr newName
|
wenzelm@8328
|
410 |
(vars, ([], add_term_names (prop, [])))
|
wenzelm@8328
|
411 |
fun mk_inst (Var(v,T)) =
|
wenzelm@8328
|
412 |
(cterm_of sign (Var(v,T)),
|
wenzelm@8328
|
413 |
cterm_of sign (Free(the (assoc(alist,v)), T)))
|
wenzelm@8328
|
414 |
val insts = map mk_inst vars
|
wenzelm@8328
|
415 |
fun thaw th' =
|
wenzelm@8328
|
416 |
th' |> forall_intr_list (map #2 insts)
|
wenzelm@8328
|
417 |
|> forall_elim_list (map #1 insts)
|
wenzelm@8328
|
418 |
in (Thm.instantiate ([],insts) fth, thaw) end
|
paulson@7248
|
419 |
end;
|
paulson@4610
|
420 |
|
paulson@4610
|
421 |
|
paulson@7248
|
422 |
(*Rotates a rule's premises to the left by k*)
|
paulson@7248
|
423 |
val rotate_prems = permute_prems 0;
|
paulson@4610
|
424 |
|
oheimb@11163
|
425 |
(* permute prems, where the i-th position in the argument list (counting from 0)
|
oheimb@11163
|
426 |
gives the position within the original thm to be transferred to position i.
|
oheimb@11163
|
427 |
Any remaining trailing positions are left unchanged. *)
|
oheimb@11163
|
428 |
val rearrange_prems = let
|
oheimb@11163
|
429 |
fun rearr new [] thm = thm
|
wenzelm@11815
|
430 |
| rearr new (p::ps) thm = rearr (new+1)
|
oheimb@11163
|
431 |
(map (fn q => if new<=q andalso q<p then q+1 else q) ps)
|
oheimb@11163
|
432 |
(permute_prems (new+1) (new-p) (permute_prems new (p-new) thm))
|
oheimb@11163
|
433 |
in rearr 0 end;
|
paulson@4610
|
434 |
|
wenzelm@252
|
435 |
(*Assume a new formula, read following the same conventions as axioms.
|
clasohm@0
|
436 |
Generalizes over Free variables,
|
clasohm@0
|
437 |
creates the assumption, and then strips quantifiers.
|
clasohm@0
|
438 |
Example is [| ALL x:?A. ?P(x) |] ==> [| ?P(?a) |]
|
wenzelm@252
|
439 |
[ !(A,P,a)[| ALL x:A. P(x) |] ==> [| P(a) |] ] *)
|
clasohm@0
|
440 |
fun assume_ax thy sP =
|
wenzelm@6390
|
441 |
let val sign = Theory.sign_of thy
|
paulson@4610
|
442 |
val prop = Logic.close_form (term_of (read_cterm sign (sP, propT)))
|
lcp@229
|
443 |
in forall_elim_vars 0 (assume (cterm_of sign prop)) end;
|
clasohm@0
|
444 |
|
wenzelm@252
|
445 |
(*Resolution: exactly one resolvent must be produced.*)
|
clasohm@0
|
446 |
fun tha RSN (i,thb) =
|
wenzelm@4270
|
447 |
case Seq.chop (2, biresolution false [(false,tha)] i thb) of
|
clasohm@0
|
448 |
([th],_) => th
|
clasohm@0
|
449 |
| ([],_) => raise THM("RSN: no unifiers", i, [tha,thb])
|
clasohm@0
|
450 |
| _ => raise THM("RSN: multiple unifiers", i, [tha,thb]);
|
clasohm@0
|
451 |
|
clasohm@0
|
452 |
(*resolution: P==>Q, Q==>R gives P==>R. *)
|
clasohm@0
|
453 |
fun tha RS thb = tha RSN (1,thb);
|
clasohm@0
|
454 |
|
clasohm@0
|
455 |
(*For joining lists of rules*)
|
wenzelm@252
|
456 |
fun thas RLN (i,thbs) =
|
clasohm@0
|
457 |
let val resolve = biresolution false (map (pair false) thas) i
|
wenzelm@4270
|
458 |
fun resb thb = Seq.list_of (resolve thb) handle THM _ => []
|
paulson@2672
|
459 |
in List.concat (map resb thbs) end;
|
clasohm@0
|
460 |
|
clasohm@0
|
461 |
fun thas RL thbs = thas RLN (1,thbs);
|
clasohm@0
|
462 |
|
lcp@11
|
463 |
(*Resolve a list of rules against bottom_rl from right to left;
|
lcp@11
|
464 |
makes proof trees*)
|
wenzelm@252
|
465 |
fun rls MRS bottom_rl =
|
lcp@11
|
466 |
let fun rs_aux i [] = bottom_rl
|
wenzelm@252
|
467 |
| rs_aux i (rl::rls) = rl RSN (i, rs_aux (i+1) rls)
|
lcp@11
|
468 |
in rs_aux 1 rls end;
|
lcp@11
|
469 |
|
lcp@11
|
470 |
(*As above, but for rule lists*)
|
wenzelm@252
|
471 |
fun rlss MRL bottom_rls =
|
lcp@11
|
472 |
let fun rs_aux i [] = bottom_rls
|
wenzelm@252
|
473 |
| rs_aux i (rls::rlss) = rls RLN (i, rs_aux (i+1) rlss)
|
lcp@11
|
474 |
in rs_aux 1 rlss end;
|
lcp@11
|
475 |
|
wenzelm@9288
|
476 |
(*A version of MRS with more appropriate argument order*)
|
wenzelm@9288
|
477 |
fun bottom_rl OF rls = rls MRS bottom_rl;
|
wenzelm@9288
|
478 |
|
wenzelm@252
|
479 |
(*compose Q and [...,Qi,Q(i+1),...]==>R to [...,Q(i+1),...]==>R
|
clasohm@0
|
480 |
with no lifting or renaming! Q may contain ==> or meta-quants
|
clasohm@0
|
481 |
ALWAYS deletes premise i *)
|
wenzelm@252
|
482 |
fun compose(tha,i,thb) =
|
wenzelm@4270
|
483 |
Seq.list_of (bicompose false (false,tha,0) i thb);
|
clasohm@0
|
484 |
|
wenzelm@6946
|
485 |
fun compose_single (tha,i,thb) =
|
wenzelm@6946
|
486 |
(case compose (tha,i,thb) of
|
wenzelm@6946
|
487 |
[th] => th
|
wenzelm@6946
|
488 |
| _ => raise THM ("compose: unique result expected", i, [tha,thb]));
|
wenzelm@6946
|
489 |
|
clasohm@0
|
490 |
(*compose Q and [Q1,Q2,...,Qk]==>R to [Q2,...,Qk]==>R getting unique result*)
|
clasohm@0
|
491 |
fun tha COMP thb =
|
clasohm@0
|
492 |
case compose(tha,1,thb) of
|
wenzelm@252
|
493 |
[th] => th
|
clasohm@0
|
494 |
| _ => raise THM("COMP", 1, [tha,thb]);
|
clasohm@0
|
495 |
|
wenzelm@13105
|
496 |
|
wenzelm@4016
|
497 |
(** theorem equality **)
|
clasohm@0
|
498 |
|
wenzelm@13105
|
499 |
val eq_thm_sg = Sign.eq_sg o pairself Thm.sign_of_thm;
|
wenzelm@13105
|
500 |
val eq_thm_prop = op aconv o pairself Thm.prop_of;
|
clasohm@0
|
501 |
|
clasohm@0
|
502 |
(*Useful "distance" function for BEST_FIRST*)
|
wenzelm@12800
|
503 |
val size_of_thm = size_of_term o prop_of;
|
clasohm@0
|
504 |
|
wenzelm@9829
|
505 |
(*maintain lists of theorems --- preserving canonical order*)
|
wenzelm@13105
|
506 |
fun del_rules rs rules = Library.gen_rems eq_thm_prop (rules, rs);
|
wenzelm@9862
|
507 |
fun add_rules rs rules = rs @ del_rules rs rules;
|
wenzelm@12373
|
508 |
val del_rule = del_rules o single;
|
wenzelm@12373
|
509 |
val add_rule = add_rules o single;
|
wenzelm@13105
|
510 |
fun merge_rules (rules1, rules2) = gen_merge_lists' eq_thm_prop rules1 rules2;
|
wenzelm@9829
|
511 |
|
clasohm@0
|
512 |
|
lcp@1194
|
513 |
(** Mark Staples's weaker version of eq_thm: ignores variable renaming and
|
lcp@1194
|
514 |
(some) type variable renaming **)
|
lcp@1194
|
515 |
|
lcp@1194
|
516 |
(* Can't use term_vars, because it sorts the resulting list of variable names.
|
lcp@1194
|
517 |
We instead need the unique list noramlised by the order of appearance
|
lcp@1194
|
518 |
in the term. *)
|
lcp@1194
|
519 |
fun term_vars' (t as Var(v,T)) = [t]
|
lcp@1194
|
520 |
| term_vars' (Abs(_,_,b)) = term_vars' b
|
lcp@1194
|
521 |
| term_vars' (f$a) = (term_vars' f) @ (term_vars' a)
|
lcp@1194
|
522 |
| term_vars' _ = [];
|
lcp@1194
|
523 |
|
lcp@1194
|
524 |
fun forall_intr_vars th =
|
lcp@1194
|
525 |
let val {prop,sign,...} = rep_thm th;
|
lcp@1194
|
526 |
val vars = distinct (term_vars' prop);
|
lcp@1194
|
527 |
in forall_intr_list (map (cterm_of sign) vars) th end;
|
lcp@1194
|
528 |
|
wenzelm@13105
|
529 |
val weak_eq_thm = Thm.eq_thm o pairself (forall_intr_vars o freezeT);
|
lcp@1194
|
530 |
|
lcp@1194
|
531 |
|
clasohm@0
|
532 |
(*** Meta-Rewriting Rules ***)
|
clasohm@0
|
533 |
|
paulson@4610
|
534 |
fun read_prop s = read_cterm proto_sign (s, propT);
|
paulson@4610
|
535 |
|
wenzelm@9455
|
536 |
fun store_thm name thm = hd (PureThy.smart_store_thms (name, [thm]));
|
wenzelm@9455
|
537 |
fun store_standard_thm name thm = store_thm name (standard thm);
|
wenzelm@12135
|
538 |
fun store_thm_open name thm = hd (PureThy.smart_store_thms_open (name, [thm]));
|
wenzelm@12135
|
539 |
fun store_standard_thm_open name thm = store_thm_open name (standard' thm);
|
wenzelm@4016
|
540 |
|
clasohm@0
|
541 |
val reflexive_thm =
|
paulson@4610
|
542 |
let val cx = cterm_of proto_sign (Var(("x",0),TVar(("'a",0),logicS)))
|
wenzelm@12135
|
543 |
in store_standard_thm_open "reflexive" (Thm.reflexive cx) end;
|
clasohm@0
|
544 |
|
clasohm@0
|
545 |
val symmetric_thm =
|
paulson@4610
|
546 |
let val xy = read_prop "x::'a::logic == y"
|
wenzelm@12135
|
547 |
in store_standard_thm_open "symmetric" (Thm.implies_intr_hyps (Thm.symmetric (Thm.assume xy))) end;
|
clasohm@0
|
548 |
|
clasohm@0
|
549 |
val transitive_thm =
|
paulson@4610
|
550 |
let val xy = read_prop "x::'a::logic == y"
|
paulson@4610
|
551 |
val yz = read_prop "y::'a::logic == z"
|
clasohm@0
|
552 |
val xythm = Thm.assume xy and yzthm = Thm.assume yz
|
wenzelm@12135
|
553 |
in store_standard_thm_open "transitive" (Thm.implies_intr yz (Thm.transitive xythm yzthm)) end;
|
clasohm@0
|
554 |
|
nipkow@4679
|
555 |
fun symmetric_fun thm = thm RS symmetric_thm;
|
nipkow@4679
|
556 |
|
berghofe@11512
|
557 |
fun extensional eq =
|
berghofe@11512
|
558 |
let val eq' =
|
berghofe@11512
|
559 |
abstract_rule "x" (snd (Thm.dest_comb (fst (dest_equals (cprop_of eq))))) eq
|
berghofe@11512
|
560 |
in equal_elim (eta_conversion (cprop_of eq')) eq' end;
|
berghofe@11512
|
561 |
|
berghofe@10414
|
562 |
val imp_cong =
|
berghofe@10414
|
563 |
let
|
berghofe@10414
|
564 |
val ABC = read_prop "PROP A ==> PROP B == PROP C"
|
berghofe@10414
|
565 |
val AB = read_prop "PROP A ==> PROP B"
|
berghofe@10414
|
566 |
val AC = read_prop "PROP A ==> PROP C"
|
berghofe@10414
|
567 |
val A = read_prop "PROP A"
|
berghofe@10414
|
568 |
in
|
wenzelm@12135
|
569 |
store_standard_thm_open "imp_cong" (implies_intr ABC (equal_intr
|
berghofe@10414
|
570 |
(implies_intr AB (implies_intr A
|
berghofe@10414
|
571 |
(equal_elim (implies_elim (assume ABC) (assume A))
|
berghofe@10414
|
572 |
(implies_elim (assume AB) (assume A)))))
|
berghofe@10414
|
573 |
(implies_intr AC (implies_intr A
|
berghofe@10414
|
574 |
(equal_elim (symmetric (implies_elim (assume ABC) (assume A)))
|
berghofe@10414
|
575 |
(implies_elim (assume AC) (assume A)))))))
|
berghofe@10414
|
576 |
end;
|
berghofe@10414
|
577 |
|
berghofe@10414
|
578 |
val swap_prems_eq =
|
berghofe@10414
|
579 |
let
|
berghofe@10414
|
580 |
val ABC = read_prop "PROP A ==> PROP B ==> PROP C"
|
berghofe@10414
|
581 |
val BAC = read_prop "PROP B ==> PROP A ==> PROP C"
|
berghofe@10414
|
582 |
val A = read_prop "PROP A"
|
berghofe@10414
|
583 |
val B = read_prop "PROP B"
|
berghofe@10414
|
584 |
in
|
wenzelm@12135
|
585 |
store_standard_thm_open "swap_prems_eq" (equal_intr
|
berghofe@10414
|
586 |
(implies_intr ABC (implies_intr B (implies_intr A
|
berghofe@10414
|
587 |
(implies_elim (implies_elim (assume ABC) (assume A)) (assume B)))))
|
berghofe@10414
|
588 |
(implies_intr BAC (implies_intr A (implies_intr B
|
berghofe@10414
|
589 |
(implies_elim (implies_elim (assume BAC) (assume B)) (assume A))))))
|
berghofe@10414
|
590 |
end;
|
lcp@229
|
591 |
|
paulson@9547
|
592 |
val refl_implies = reflexive implies;
|
clasohm@0
|
593 |
|
berghofe@13325
|
594 |
fun abs_def thm =
|
berghofe@13325
|
595 |
let
|
berghofe@13325
|
596 |
val (_, cvs) = strip_comb (fst (dest_equals (cprop_of thm)));
|
berghofe@13325
|
597 |
val thm' = foldr (fn (ct, thm) => Thm.abstract_rule
|
berghofe@13325
|
598 |
(case term_of ct of Var ((a, _), _) => a | Free (a, _) => a | _ => "x")
|
berghofe@13325
|
599 |
ct thm) (cvs, thm)
|
berghofe@13325
|
600 |
in transitive
|
berghofe@13325
|
601 |
(symmetric (eta_conversion (fst (dest_equals (cprop_of thm'))))) thm'
|
berghofe@13325
|
602 |
end;
|
berghofe@13325
|
603 |
|
clasohm@0
|
604 |
|
clasohm@0
|
605 |
(*** Some useful meta-theorems ***)
|
clasohm@0
|
606 |
|
clasohm@0
|
607 |
(*The rule V/V, obtains assumption solving for eresolve_tac*)
|
wenzelm@12135
|
608 |
val asm_rl = store_standard_thm_open "asm_rl" (Thm.trivial (read_prop "PROP ?psi"));
|
wenzelm@7380
|
609 |
val _ = store_thm "_" asm_rl;
|
clasohm@0
|
610 |
|
clasohm@0
|
611 |
(*Meta-level cut rule: [| V==>W; V |] ==> W *)
|
wenzelm@4016
|
612 |
val cut_rl =
|
wenzelm@12135
|
613 |
store_standard_thm_open "cut_rl"
|
wenzelm@9455
|
614 |
(Thm.trivial (read_prop "PROP ?psi ==> PROP ?theta"));
|
clasohm@0
|
615 |
|
wenzelm@252
|
616 |
(*Generalized elim rule for one conclusion; cut_rl with reversed premises:
|
clasohm@0
|
617 |
[| PROP V; PROP V ==> PROP W |] ==> PROP W *)
|
clasohm@0
|
618 |
val revcut_rl =
|
paulson@4610
|
619 |
let val V = read_prop "PROP V"
|
paulson@4610
|
620 |
and VW = read_prop "PROP V ==> PROP W";
|
wenzelm@4016
|
621 |
in
|
wenzelm@12135
|
622 |
store_standard_thm_open "revcut_rl"
|
wenzelm@4016
|
623 |
(implies_intr V (implies_intr VW (implies_elim (assume VW) (assume V))))
|
clasohm@0
|
624 |
end;
|
clasohm@0
|
625 |
|
lcp@668
|
626 |
(*for deleting an unwanted assumption*)
|
lcp@668
|
627 |
val thin_rl =
|
paulson@4610
|
628 |
let val V = read_prop "PROP V"
|
paulson@4610
|
629 |
and W = read_prop "PROP W";
|
wenzelm@12135
|
630 |
in store_standard_thm_open "thin_rl" (implies_intr V (implies_intr W (assume W))) end;
|
lcp@668
|
631 |
|
clasohm@0
|
632 |
(* (!!x. PROP ?V) == PROP ?V Allows removal of redundant parameters*)
|
clasohm@0
|
633 |
val triv_forall_equality =
|
paulson@4610
|
634 |
let val V = read_prop "PROP V"
|
paulson@4610
|
635 |
and QV = read_prop "!!x::'a. PROP V"
|
wenzelm@8086
|
636 |
and x = read_cterm proto_sign ("x", TypeInfer.logicT);
|
wenzelm@4016
|
637 |
in
|
wenzelm@12135
|
638 |
store_standard_thm_open "triv_forall_equality"
|
berghofe@11512
|
639 |
(equal_intr (implies_intr QV (forall_elim x (assume QV)))
|
berghofe@11512
|
640 |
(implies_intr V (forall_intr x (assume V))))
|
clasohm@0
|
641 |
end;
|
clasohm@0
|
642 |
|
nipkow@1756
|
643 |
(* (PROP ?PhiA ==> PROP ?PhiB ==> PROP ?Psi) ==>
|
nipkow@1756
|
644 |
(PROP ?PhiB ==> PROP ?PhiA ==> PROP ?Psi)
|
nipkow@1756
|
645 |
`thm COMP swap_prems_rl' swaps the first two premises of `thm'
|
nipkow@1756
|
646 |
*)
|
nipkow@1756
|
647 |
val swap_prems_rl =
|
paulson@4610
|
648 |
let val cmajor = read_prop "PROP PhiA ==> PROP PhiB ==> PROP Psi";
|
nipkow@1756
|
649 |
val major = assume cmajor;
|
paulson@4610
|
650 |
val cminor1 = read_prop "PROP PhiA";
|
nipkow@1756
|
651 |
val minor1 = assume cminor1;
|
paulson@4610
|
652 |
val cminor2 = read_prop "PROP PhiB";
|
nipkow@1756
|
653 |
val minor2 = assume cminor2;
|
wenzelm@12135
|
654 |
in store_standard_thm_open "swap_prems_rl"
|
nipkow@1756
|
655 |
(implies_intr cmajor (implies_intr cminor2 (implies_intr cminor1
|
nipkow@1756
|
656 |
(implies_elim (implies_elim major minor1) minor2))))
|
nipkow@1756
|
657 |
end;
|
nipkow@1756
|
658 |
|
nipkow@3653
|
659 |
(* [| PROP ?phi ==> PROP ?psi; PROP ?psi ==> PROP ?phi |]
|
nipkow@3653
|
660 |
==> PROP ?phi == PROP ?psi
|
wenzelm@8328
|
661 |
Introduction rule for == as a meta-theorem.
|
nipkow@3653
|
662 |
*)
|
nipkow@3653
|
663 |
val equal_intr_rule =
|
paulson@4610
|
664 |
let val PQ = read_prop "PROP phi ==> PROP psi"
|
paulson@4610
|
665 |
and QP = read_prop "PROP psi ==> PROP phi"
|
wenzelm@4016
|
666 |
in
|
wenzelm@12135
|
667 |
store_standard_thm_open "equal_intr_rule"
|
wenzelm@4016
|
668 |
(implies_intr PQ (implies_intr QP (equal_intr (assume PQ) (assume QP))))
|
nipkow@3653
|
669 |
end;
|
nipkow@3653
|
670 |
|
wenzelm@13368
|
671 |
(* [| PROP ?phi == PROP ?psi; PROP ?phi |] ==> PROP ?psi *)
|
wenzelm@13368
|
672 |
val equal_elim_rule1 =
|
wenzelm@13368
|
673 |
let val eq = read_prop "PROP phi == PROP psi"
|
wenzelm@13368
|
674 |
and P = read_prop "PROP phi"
|
wenzelm@13368
|
675 |
in store_standard_thm_open "equal_elim_rule1"
|
wenzelm@13368
|
676 |
(Thm.equal_elim (assume eq) (assume P) |> implies_intr_list [eq, P])
|
wenzelm@13368
|
677 |
end;
|
wenzelm@4285
|
678 |
|
wenzelm@12297
|
679 |
(* "[| PROP ?phi; PROP ?phi; PROP ?psi |] ==> PROP ?psi" *)
|
wenzelm@12297
|
680 |
|
wenzelm@12297
|
681 |
val remdups_rl =
|
wenzelm@12297
|
682 |
let val P = read_prop "PROP phi" and Q = read_prop "PROP psi";
|
wenzelm@12297
|
683 |
in store_standard_thm_open "remdups_rl" (implies_intr_list [P, P, Q] (Thm.assume Q)) end;
|
wenzelm@12297
|
684 |
|
wenzelm@12297
|
685 |
|
wenzelm@9554
|
686 |
(*(PROP ?phi ==> (!!x. PROP ?psi(x))) == (!!x. PROP ?phi ==> PROP ?psi(x))
|
wenzelm@12297
|
687 |
Rewrite rule for HHF normalization.*)
|
wenzelm@9554
|
688 |
|
wenzelm@9554
|
689 |
val norm_hhf_eq =
|
wenzelm@9554
|
690 |
let
|
wenzelm@9554
|
691 |
val cert = Thm.cterm_of proto_sign;
|
wenzelm@9554
|
692 |
val aT = TFree ("'a", Term.logicS);
|
wenzelm@9554
|
693 |
val all = Term.all aT;
|
wenzelm@9554
|
694 |
val x = Free ("x", aT);
|
wenzelm@9554
|
695 |
val phi = Free ("phi", propT);
|
wenzelm@9554
|
696 |
val psi = Free ("psi", aT --> propT);
|
wenzelm@9554
|
697 |
|
wenzelm@9554
|
698 |
val cx = cert x;
|
wenzelm@9554
|
699 |
val cphi = cert phi;
|
wenzelm@9554
|
700 |
val lhs = cert (Logic.mk_implies (phi, all $ Abs ("x", aT, psi $ Bound 0)));
|
wenzelm@9554
|
701 |
val rhs = cert (all $ Abs ("x", aT, Logic.mk_implies (phi, psi $ Bound 0)));
|
wenzelm@9554
|
702 |
in
|
wenzelm@9554
|
703 |
Thm.equal_intr
|
wenzelm@9554
|
704 |
(Thm.implies_elim (Thm.assume lhs) (Thm.assume cphi)
|
wenzelm@9554
|
705 |
|> Thm.forall_elim cx
|
wenzelm@9554
|
706 |
|> Thm.implies_intr cphi
|
wenzelm@9554
|
707 |
|> Thm.forall_intr cx
|
wenzelm@9554
|
708 |
|> Thm.implies_intr lhs)
|
wenzelm@9554
|
709 |
(Thm.implies_elim
|
wenzelm@9554
|
710 |
(Thm.assume rhs |> Thm.forall_elim cx) (Thm.assume cphi)
|
wenzelm@9554
|
711 |
|> Thm.forall_intr cx
|
wenzelm@9554
|
712 |
|> Thm.implies_intr cphi
|
wenzelm@9554
|
713 |
|> Thm.implies_intr rhs)
|
wenzelm@12135
|
714 |
|> store_standard_thm_open "norm_hhf_eq"
|
wenzelm@9554
|
715 |
end;
|
wenzelm@9554
|
716 |
|
wenzelm@12800
|
717 |
fun is_norm_hhf tm =
|
wenzelm@12800
|
718 |
let
|
wenzelm@12800
|
719 |
fun is_norm (Const ("==>", _) $ _ $ (Const ("all", _) $ _)) = false
|
wenzelm@12800
|
720 |
| is_norm (t $ u) = is_norm t andalso is_norm u
|
wenzelm@12800
|
721 |
| is_norm (Abs (_, _, t)) = is_norm t
|
wenzelm@12800
|
722 |
| is_norm _ = true;
|
wenzelm@12800
|
723 |
in is_norm (Pattern.beta_eta_contract tm) end;
|
wenzelm@12800
|
724 |
|
wenzelm@12800
|
725 |
fun norm_hhf sg t =
|
wenzelm@12800
|
726 |
if is_norm_hhf t then t
|
berghofe@13198
|
727 |
else Pattern.rewrite_term (Sign.tsig_of sg) [Logic.dest_equals (prop_of norm_hhf_eq)] [] t;
|
wenzelm@12800
|
728 |
|
wenzelm@9554
|
729 |
|
paulson@8129
|
730 |
(*** Instantiate theorem th, reading instantiations under signature sg ****)
|
paulson@8129
|
731 |
|
paulson@8129
|
732 |
(*Version that normalizes the result: Thm.instantiate no longer does that*)
|
paulson@8129
|
733 |
fun instantiate instpair th = Thm.instantiate instpair th COMP asm_rl;
|
paulson@8129
|
734 |
|
paulson@8129
|
735 |
fun read_instantiate_sg sg sinsts th =
|
paulson@8129
|
736 |
let val ts = types_sorts th;
|
wenzelm@12800
|
737 |
val used = add_term_tvarnames (prop_of th, []);
|
paulson@8129
|
738 |
in instantiate (read_insts sg ts ts used sinsts) th end;
|
paulson@8129
|
739 |
|
paulson@8129
|
740 |
(*Instantiate theorem th, reading instantiations under theory of th*)
|
paulson@8129
|
741 |
fun read_instantiate sinsts th =
|
paulson@8129
|
742 |
read_instantiate_sg (#sign (rep_thm th)) sinsts th;
|
paulson@8129
|
743 |
|
paulson@8129
|
744 |
|
paulson@8129
|
745 |
(*Left-to-right replacements: tpairs = [...,(vi,ti),...].
|
paulson@8129
|
746 |
Instantiates distinct Vars by terms, inferring type instantiations. *)
|
paulson@8129
|
747 |
local
|
paulson@8129
|
748 |
fun add_types ((ct,cu), (sign,tye,maxidx)) =
|
paulson@8129
|
749 |
let val {sign=signt, t=t, T= T, maxidx=maxt,...} = rep_cterm ct
|
paulson@8129
|
750 |
and {sign=signu, t=u, T= U, maxidx=maxu,...} = rep_cterm cu;
|
paulson@8129
|
751 |
val maxi = Int.max(maxidx, Int.max(maxt, maxu));
|
paulson@8129
|
752 |
val sign' = Sign.merge(sign, Sign.merge(signt, signu))
|
wenzelm@12527
|
753 |
val (tye',maxi') = Type.unify (#tsig(Sign.rep_sg sign')) (tye, maxi) (T, U)
|
wenzelm@10403
|
754 |
handle Type.TUNIFY => raise TYPE("Ill-typed instantiation", [T,U], [t,u])
|
paulson@8129
|
755 |
in (sign', tye', maxi') end;
|
paulson@8129
|
756 |
in
|
paulson@8129
|
757 |
fun cterm_instantiate ctpairs0 th =
|
berghofe@8406
|
758 |
let val (sign,tye,_) = foldr add_types (ctpairs0, (#sign(rep_thm th), Vartab.empty, 0))
|
berghofe@8406
|
759 |
fun instT(ct,cu) = let val inst = subst_TVars_Vartab tye
|
paulson@8129
|
760 |
in (cterm_fun inst ct, cterm_fun inst cu) end
|
paulson@8129
|
761 |
fun ctyp2 (ix,T) = (ix, ctyp_of sign T)
|
berghofe@8406
|
762 |
in instantiate (map ctyp2 (Vartab.dest tye), map instT ctpairs0) th end
|
paulson@8129
|
763 |
handle TERM _ =>
|
paulson@8129
|
764 |
raise THM("cterm_instantiate: incompatible signatures",0,[th])
|
paulson@8129
|
765 |
| TYPE (msg, _, _) => raise THM(msg, 0, [th])
|
paulson@8129
|
766 |
end;
|
paulson@8129
|
767 |
|
paulson@8129
|
768 |
|
paulson@8129
|
769 |
(** Derived rules mainly for METAHYPS **)
|
paulson@8129
|
770 |
|
paulson@8129
|
771 |
(*Given the term "a", takes (%x.t)==(%x.u) to t[a/x]==u[a/x]*)
|
paulson@8129
|
772 |
fun equal_abs_elim ca eqth =
|
paulson@8129
|
773 |
let val {sign=signa, t=a, ...} = rep_cterm ca
|
paulson@8129
|
774 |
and combth = combination eqth (reflexive ca)
|
paulson@8129
|
775 |
val {sign,prop,...} = rep_thm eqth
|
paulson@8129
|
776 |
val (abst,absu) = Logic.dest_equals prop
|
paulson@8129
|
777 |
val cterm = cterm_of (Sign.merge (sign,signa))
|
berghofe@10414
|
778 |
in transitive (symmetric (beta_conversion false (cterm (abst$a))))
|
berghofe@10414
|
779 |
(transitive combth (beta_conversion false (cterm (absu$a))))
|
paulson@8129
|
780 |
end
|
paulson@8129
|
781 |
handle THM _ => raise THM("equal_abs_elim", 0, [eqth]);
|
paulson@8129
|
782 |
|
paulson@8129
|
783 |
(*Calling equal_abs_elim with multiple terms*)
|
paulson@8129
|
784 |
fun equal_abs_elim_list cts th = foldr (uncurry equal_abs_elim) (rev cts, th);
|
paulson@8129
|
785 |
|
paulson@8129
|
786 |
local
|
paulson@8129
|
787 |
val alpha = TVar(("'a",0), []) (* type ?'a::{} *)
|
paulson@8129
|
788 |
fun err th = raise THM("flexpair_inst: ", 0, [th])
|
paulson@8129
|
789 |
fun flexpair_inst def th =
|
paulson@8129
|
790 |
let val {prop = Const _ $ t $ u, sign,...} = rep_thm th
|
paulson@8129
|
791 |
val cterm = cterm_of sign
|
paulson@8129
|
792 |
fun cvar a = cterm(Var((a,0),alpha))
|
paulson@8129
|
793 |
val def' = cterm_instantiate [(cvar"t", cterm t), (cvar"u", cterm u)]
|
paulson@8129
|
794 |
def
|
paulson@8129
|
795 |
in equal_elim def' th
|
paulson@8129
|
796 |
end
|
paulson@8129
|
797 |
handle THM _ => err th | Bind => err th
|
paulson@8129
|
798 |
in
|
paulson@8129
|
799 |
val flexpair_intr = flexpair_inst (symmetric ProtoPure.flexpair_def)
|
paulson@8129
|
800 |
and flexpair_elim = flexpair_inst ProtoPure.flexpair_def
|
paulson@8129
|
801 |
end;
|
paulson@8129
|
802 |
|
paulson@8129
|
803 |
(*Version for flexflex pairs -- this supports lifting.*)
|
paulson@8129
|
804 |
fun flexpair_abs_elim_list cts =
|
paulson@8129
|
805 |
flexpair_intr o equal_abs_elim_list cts o flexpair_elim;
|
paulson@8129
|
806 |
|
paulson@8129
|
807 |
|
wenzelm@10667
|
808 |
(*** Goal (PROP A) <==> PROP A ***)
|
wenzelm@4789
|
809 |
|
wenzelm@4789
|
810 |
local
|
wenzelm@10667
|
811 |
val cert = Thm.cterm_of proto_sign;
|
wenzelm@10667
|
812 |
val A = Free ("A", propT);
|
wenzelm@10667
|
813 |
val G = Logic.mk_goal A;
|
wenzelm@4789
|
814 |
val (G_def, _) = freeze_thaw ProtoPure.Goal_def;
|
wenzelm@4789
|
815 |
in
|
wenzelm@11741
|
816 |
val triv_goal = store_thm "triv_goal" (kind_rule internalK (standard
|
wenzelm@10667
|
817 |
(Thm.equal_elim (Thm.symmetric G_def) (Thm.assume (cert A)))));
|
wenzelm@11741
|
818 |
val rev_triv_goal = store_thm "rev_triv_goal" (kind_rule internalK (standard
|
wenzelm@10667
|
819 |
(Thm.equal_elim G_def (Thm.assume (cert G)))));
|
wenzelm@4789
|
820 |
end;
|
wenzelm@4789
|
821 |
|
wenzelm@9460
|
822 |
val mk_cgoal = Thm.capply (Thm.cterm_of proto_sign Logic.goal_const);
|
wenzelm@6995
|
823 |
fun assume_goal ct = Thm.assume (mk_cgoal ct) RS rev_triv_goal;
|
wenzelm@6995
|
824 |
|
wenzelm@11815
|
825 |
fun implies_intr_goals cprops thm =
|
wenzelm@11815
|
826 |
implies_elim_list (implies_intr_list cprops thm) (map assume_goal cprops)
|
wenzelm@11815
|
827 |
|> implies_intr_list (map mk_cgoal cprops);
|
wenzelm@11815
|
828 |
|
wenzelm@4789
|
829 |
|
wenzelm@4285
|
830 |
|
wenzelm@5688
|
831 |
(** variations on instantiate **)
|
wenzelm@4285
|
832 |
|
paulson@8550
|
833 |
(*shorthand for instantiating just one variable in the current theory*)
|
paulson@8550
|
834 |
fun inst x t = read_instantiate_sg (sign_of (the_context())) [(x,t)];
|
paulson@8550
|
835 |
|
paulson@8550
|
836 |
|
wenzelm@12495
|
837 |
(* collect vars in left-to-right order *)
|
wenzelm@4285
|
838 |
|
wenzelm@12495
|
839 |
fun tvars_of_terms ts = rev (foldl Term.add_tvars ([], ts));
|
wenzelm@12495
|
840 |
fun vars_of_terms ts = rev (foldl Term.add_vars ([], ts));
|
wenzelm@5903
|
841 |
|
wenzelm@12800
|
842 |
fun tvars_of thm = tvars_of_terms [prop_of thm];
|
wenzelm@12800
|
843 |
fun vars_of thm = vars_of_terms [prop_of thm];
|
wenzelm@4285
|
844 |
|
wenzelm@4285
|
845 |
|
wenzelm@4285
|
846 |
(* instantiate by left-to-right occurrence of variables *)
|
wenzelm@4285
|
847 |
|
wenzelm@4285
|
848 |
fun instantiate' cTs cts thm =
|
wenzelm@4285
|
849 |
let
|
wenzelm@4285
|
850 |
fun err msg =
|
wenzelm@4285
|
851 |
raise TYPE ("instantiate': " ^ msg,
|
wenzelm@4285
|
852 |
mapfilter (apsome Thm.typ_of) cTs,
|
wenzelm@4285
|
853 |
mapfilter (apsome Thm.term_of) cts);
|
wenzelm@4285
|
854 |
|
wenzelm@4285
|
855 |
fun inst_of (v, ct) =
|
wenzelm@4285
|
856 |
(Thm.cterm_of (#sign (Thm.rep_cterm ct)) (Var v), ct)
|
wenzelm@4285
|
857 |
handle TYPE (msg, _, _) => err msg;
|
wenzelm@4285
|
858 |
|
wenzelm@4285
|
859 |
fun zip_vars _ [] = []
|
wenzelm@4285
|
860 |
| zip_vars (_ :: vs) (None :: opt_ts) = zip_vars vs opt_ts
|
wenzelm@4285
|
861 |
| zip_vars (v :: vs) (Some t :: opt_ts) = (v, t) :: zip_vars vs opt_ts
|
wenzelm@4285
|
862 |
| zip_vars [] _ = err "more instantiations than variables in thm";
|
wenzelm@4285
|
863 |
|
wenzelm@4285
|
864 |
(*instantiate types first!*)
|
wenzelm@4285
|
865 |
val thm' =
|
wenzelm@4285
|
866 |
if forall is_none cTs then thm
|
wenzelm@4285
|
867 |
else Thm.instantiate (zip_vars (map fst (tvars_of thm)) cTs, []) thm;
|
wenzelm@4285
|
868 |
in
|
wenzelm@4285
|
869 |
if forall is_none cts then thm'
|
wenzelm@4285
|
870 |
else Thm.instantiate ([], map inst_of (zip_vars (vars_of thm') cts)) thm'
|
wenzelm@4285
|
871 |
end;
|
wenzelm@4285
|
872 |
|
wenzelm@4285
|
873 |
|
wenzelm@5688
|
874 |
(* unvarify(T) *)
|
wenzelm@5688
|
875 |
|
wenzelm@5688
|
876 |
(*assume thm in standard form, i.e. no frees, 0 var indexes*)
|
wenzelm@5688
|
877 |
|
wenzelm@5688
|
878 |
fun unvarifyT thm =
|
wenzelm@5688
|
879 |
let
|
wenzelm@5688
|
880 |
val cT = Thm.ctyp_of (Thm.sign_of_thm thm);
|
wenzelm@5688
|
881 |
val tfrees = map (fn ((x, _), S) => Some (cT (TFree (x, S)))) (tvars_of thm);
|
wenzelm@5688
|
882 |
in instantiate' tfrees [] thm end;
|
wenzelm@5688
|
883 |
|
wenzelm@5688
|
884 |
fun unvarify raw_thm =
|
wenzelm@5688
|
885 |
let
|
wenzelm@5688
|
886 |
val thm = unvarifyT raw_thm;
|
wenzelm@5688
|
887 |
val ct = Thm.cterm_of (Thm.sign_of_thm thm);
|
wenzelm@5688
|
888 |
val frees = map (fn ((x, _), T) => Some (ct (Free (x, T)))) (vars_of thm);
|
wenzelm@5688
|
889 |
in instantiate' [] frees thm end;
|
wenzelm@5688
|
890 |
|
wenzelm@5688
|
891 |
|
wenzelm@8605
|
892 |
(* tvars_intr_list *)
|
wenzelm@8605
|
893 |
|
wenzelm@8605
|
894 |
fun tfrees_of thm =
|
wenzelm@8605
|
895 |
let val {hyps, prop, ...} = Thm.rep_thm thm
|
wenzelm@8605
|
896 |
in foldr Term.add_term_tfree_names (prop :: hyps, []) end;
|
wenzelm@8605
|
897 |
|
wenzelm@8605
|
898 |
fun tvars_intr_list tfrees thm =
|
wenzelm@8605
|
899 |
Thm.varifyT' (tfrees_of thm \\ tfrees) thm;
|
wenzelm@8605
|
900 |
|
wenzelm@8605
|
901 |
|
wenzelm@6435
|
902 |
(* increment var indexes *)
|
wenzelm@6435
|
903 |
|
wenzelm@6435
|
904 |
fun incr_indexes_wrt is cTs cts thms =
|
wenzelm@6435
|
905 |
let
|
wenzelm@6435
|
906 |
val maxidx =
|
wenzelm@6435
|
907 |
foldl Int.max (~1, is @
|
wenzelm@6435
|
908 |
map (maxidx_of_typ o #T o Thm.rep_ctyp) cTs @
|
wenzelm@6435
|
909 |
map (#maxidx o Thm.rep_cterm) cts @
|
wenzelm@6435
|
910 |
map (#maxidx o Thm.rep_thm) thms);
|
berghofe@10414
|
911 |
in Thm.incr_indexes (maxidx + 1) end;
|
wenzelm@6435
|
912 |
|
wenzelm@6435
|
913 |
|
wenzelm@8328
|
914 |
(* freeze_all *)
|
wenzelm@8328
|
915 |
|
wenzelm@8328
|
916 |
(*freeze all (T)Vars; assumes thm in standard form*)
|
wenzelm@8328
|
917 |
|
wenzelm@8328
|
918 |
fun freeze_all_TVars thm =
|
wenzelm@8328
|
919 |
(case tvars_of thm of
|
wenzelm@8328
|
920 |
[] => thm
|
wenzelm@8328
|
921 |
| tvars =>
|
wenzelm@8328
|
922 |
let val cert = Thm.ctyp_of (Thm.sign_of_thm thm)
|
wenzelm@8328
|
923 |
in instantiate' (map (fn ((x, _), S) => Some (cert (TFree (x, S)))) tvars) [] thm end);
|
wenzelm@8328
|
924 |
|
wenzelm@8328
|
925 |
fun freeze_all_Vars thm =
|
wenzelm@8328
|
926 |
(case vars_of thm of
|
wenzelm@8328
|
927 |
[] => thm
|
wenzelm@8328
|
928 |
| vars =>
|
wenzelm@8328
|
929 |
let val cert = Thm.cterm_of (Thm.sign_of_thm thm)
|
wenzelm@8328
|
930 |
in instantiate' [] (map (fn ((x, _), T) => Some (cert (Free (x, T)))) vars) thm end);
|
wenzelm@8328
|
931 |
|
wenzelm@8328
|
932 |
val freeze_all = freeze_all_Vars o freeze_all_TVars;
|
wenzelm@8328
|
933 |
|
wenzelm@8328
|
934 |
|
wenzelm@5688
|
935 |
(* mk_triv_goal *)
|
wenzelm@5688
|
936 |
|
wenzelm@5688
|
937 |
(*make an initial proof state, "PROP A ==> (PROP A)" *)
|
paulson@5311
|
938 |
fun mk_triv_goal ct = instantiate' [] [Some ct] triv_goal;
|
paulson@5311
|
939 |
|
wenzelm@11975
|
940 |
|
wenzelm@11975
|
941 |
|
wenzelm@11975
|
942 |
(** meta-level conjunction **)
|
wenzelm@11975
|
943 |
|
wenzelm@11975
|
944 |
local
|
wenzelm@11975
|
945 |
val A = read_prop "PROP A";
|
wenzelm@11975
|
946 |
val B = read_prop "PROP B";
|
wenzelm@11975
|
947 |
val C = read_prop "PROP C";
|
wenzelm@11975
|
948 |
val ABC = read_prop "PROP A ==> PROP B ==> PROP C";
|
wenzelm@11975
|
949 |
|
wenzelm@11975
|
950 |
val proj1 =
|
wenzelm@11975
|
951 |
forall_intr_list [A, B] (implies_intr_list [A, B] (Thm.assume A))
|
wenzelm@11975
|
952 |
|> forall_elim_vars 0;
|
wenzelm@11975
|
953 |
|
wenzelm@11975
|
954 |
val proj2 =
|
wenzelm@11975
|
955 |
forall_intr_list [A, B] (implies_intr_list [A, B] (Thm.assume B))
|
wenzelm@11975
|
956 |
|> forall_elim_vars 0;
|
wenzelm@11975
|
957 |
|
wenzelm@11975
|
958 |
val conj_intr_rule =
|
wenzelm@11975
|
959 |
forall_intr_list [A, B] (implies_intr_list [A, B]
|
wenzelm@11975
|
960 |
(Thm.forall_intr C (Thm.implies_intr ABC
|
wenzelm@11975
|
961 |
(implies_elim_list (Thm.assume ABC) [Thm.assume A, Thm.assume B]))))
|
wenzelm@11975
|
962 |
|> forall_elim_vars 0;
|
wenzelm@11975
|
963 |
|
wenzelm@11975
|
964 |
val incr = incr_indexes_wrt [] [] [];
|
wenzelm@11975
|
965 |
in
|
wenzelm@11975
|
966 |
|
wenzelm@11975
|
967 |
fun conj_intr tha thb = thb COMP (tha COMP incr [tha, thb] conj_intr_rule);
|
wenzelm@12756
|
968 |
|
wenzelm@12756
|
969 |
fun conj_intr_list [] = asm_rl
|
wenzelm@12756
|
970 |
| conj_intr_list ths = foldr1 (uncurry conj_intr) ths;
|
wenzelm@11975
|
971 |
|
wenzelm@11975
|
972 |
fun conj_elim th =
|
wenzelm@11975
|
973 |
let val th' = forall_elim_var (#maxidx (Thm.rep_thm th) + 1) th
|
wenzelm@11975
|
974 |
in (incr [th'] proj1 COMP th', incr [th'] proj2 COMP th') end;
|
wenzelm@11975
|
975 |
|
wenzelm@11975
|
976 |
fun conj_elim_list th =
|
wenzelm@11975
|
977 |
let val (th1, th2) = conj_elim th
|
wenzelm@11975
|
978 |
in conj_elim_list th1 @ conj_elim_list th2 end handle THM _ => [th];
|
wenzelm@11975
|
979 |
|
wenzelm@12756
|
980 |
fun conj_elim_precise 0 _ = []
|
wenzelm@12756
|
981 |
| conj_elim_precise 1 th = [th]
|
wenzelm@12135
|
982 |
| conj_elim_precise n th =
|
wenzelm@12135
|
983 |
let val (th1, th2) = conj_elim th
|
wenzelm@12135
|
984 |
in th1 :: conj_elim_precise (n - 1) th2 end;
|
wenzelm@12135
|
985 |
|
wenzelm@12135
|
986 |
val conj_intr_thm = store_standard_thm_open "conjunctionI"
|
wenzelm@12135
|
987 |
(implies_intr_list [A, B] (conj_intr (Thm.assume A) (Thm.assume B)));
|
wenzelm@12135
|
988 |
|
clasohm@0
|
989 |
end;
|
wenzelm@252
|
990 |
|
wenzelm@11975
|
991 |
end;
|
wenzelm@5903
|
992 |
|
wenzelm@5903
|
993 |
structure BasicDrule: BASIC_DRULE = Drule;
|
wenzelm@5903
|
994 |
open BasicDrule;
|