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