| author | wenzelm | 
| Wed, 05 Dec 2001 03:07:44 +0100 | |
| changeset 12372 | cd3a09c7dac9 | 
| parent 12311 | ce5f9e61c037 | 
| child 12497 | ec6ba9e6eef3 | 
| permissions | -rw-r--r-- | 
| 11519 | 1 | (* Title: Pure/proofterm.ML | 
| 2 | ID: $Id$ | |
| 11540 | 3 | Author: Stefan Berghofer, TU Muenchen | 
| 4 | License: GPL (GNU GENERAL PUBLIC LICENSE) | |
| 11519 | 5 | |
| 11540 | 6 | LF style proof terms. | 
| 11519 | 7 | *) | 
| 8 | ||
| 11615 | 9 | infix 8 % %% %>; | 
| 11519 | 10 | |
| 11 | signature BASIC_PROOFTERM = | |
| 12 | sig | |
| 11543 
d61b913431c5
renamed `keep_derivs' to `proofs', and made an integer;
 wenzelm parents: 
11540diff
changeset | 13 | val proofs: int ref | 
| 11519 | 14 | |
| 15 | datatype proof = | |
| 16 | PBound of int | |
| 17 | | Abst of string * typ option * proof | |
| 18 | | AbsP of string * term option * proof | |
| 11615 | 19 | | op % of proof * term option | 
| 20 | | op %% of proof * proof | |
| 11519 | 21 | | Hyp of term | 
| 22 | | PThm of (string * (string * string list) list) * proof * term * typ list option | |
| 23 | | PAxm of string * term * typ list option | |
| 24 | | Oracle of string * term * typ list option | |
| 25 | | MinProof of proof list; | |
| 26 | ||
| 11615 | 27 | val %> : proof * term -> proof | 
| 11519 | 28 | end; | 
| 29 | ||
| 30 | signature PROOFTERM = | |
| 31 | sig | |
| 32 | include BASIC_PROOFTERM | |
| 33 | ||
| 34 | val infer_derivs : (proof -> proof -> proof) -> bool * proof -> bool * proof -> bool * proof | |
| 35 | val infer_derivs' : (proof -> proof) -> (bool * proof -> bool * proof) | |
| 36 | ||
| 37 | (** primitive operations **) | |
| 38 | val proof_combt : proof * term list -> proof | |
| 39 | val proof_combt' : proof * term option list -> proof | |
| 40 | val proof_combP : proof * proof list -> proof | |
| 41 | val strip_combt : proof -> proof * term option list | |
| 42 | val strip_combP : proof -> proof * proof list | |
| 43 | val strip_thm : proof -> proof | |
| 44 | val map_proof_terms : (term -> term) -> (typ -> typ) -> proof -> proof | |
| 45 | val fold_proof_terms : (term * 'a -> 'a) -> (typ * 'a -> 'a) -> 'a * proof -> 'a | |
| 46 | val add_prf_names : string list * proof -> string list | |
| 47 | val add_prf_tfree_names : string list * proof -> string list | |
| 48 | val add_prf_tvar_ixns : indexname list * proof -> indexname list | |
| 49 | val prf_abstract_over : term -> proof -> proof | |
| 50 | val prf_incr_bv : int -> int -> int -> int -> proof -> proof | |
| 51 | val incr_pboundvars : int -> int -> proof -> proof | |
| 52 | val prf_loose_bvar1 : proof -> int -> bool | |
| 53 | val prf_loose_Pbvar1 : proof -> int -> bool | |
| 12279 | 54 | val prf_add_loose_bnos : int -> int -> proof -> | 
| 55 | int list * int list -> int list * int list | |
| 11519 | 56 | val norm_proof : Envir.env -> proof -> proof | 
| 57 | val norm_proof' : Envir.env -> proof -> proof | |
| 58 | val prf_subst_bounds : term list -> proof -> proof | |
| 59 | val prf_subst_pbounds : proof list -> proof -> proof | |
| 60 | val freeze_thaw_prf : proof -> proof * (proof -> proof) | |
| 61 | ||
| 62 | val thms_of_proof : (term * proof) list Symtab.table -> proof -> | |
| 63 | (term * proof) list Symtab.table | |
| 64 | val axms_of_proof : proof Symtab.table -> proof -> proof Symtab.table | |
| 65 | val oracles_of_proof : proof list -> proof -> proof list | |
| 66 | ||
| 67 | (** proof terms for specific inference rules **) | |
| 68 | val implies_intr_proof : term -> proof -> proof | |
| 69 | val forall_intr_proof : term -> string -> proof -> proof | |
| 70 | val varify_proof : term -> string list -> proof -> proof | |
| 71 | val freezeT : term -> proof -> proof | |
| 72 | val rotate_proof : term list -> term -> int -> proof -> proof | |
| 73 | val permute_prems_prf : term list -> int -> int -> proof -> proof | |
| 74 | val instantiate : (indexname * typ) list -> (term * term) list -> proof -> proof | |
| 75 | val lift_proof : term -> int -> term -> proof -> proof | |
| 76 | val assumption_proof : term list -> term -> int -> proof -> proof | |
| 77 | val bicompose_proof : term list -> term list -> term list -> term option -> | |
| 78 | int -> proof -> proof -> proof | |
| 79 | val equality_axms : (string * term) list | |
| 80 | val reflexive_axm : proof | |
| 81 | val symmetric_axm : proof | |
| 82 | val transitive_axm : proof | |
| 83 | val equal_intr_axm : proof | |
| 84 | val equal_elim_axm : proof | |
| 85 | val abstract_rule_axm : proof | |
| 86 | val combination_axm : proof | |
| 87 | val reflexive : proof | |
| 88 | val symmetric : proof -> proof | |
| 89 | val transitive : term -> typ -> proof -> proof -> proof | |
| 90 | val abstract_rule : term -> string -> proof -> proof | |
| 91 | val combination : term -> term -> term -> term -> typ -> proof -> proof -> proof | |
| 92 | val equal_intr : term -> term -> proof -> proof -> proof | |
| 93 | val equal_elim : term -> term -> proof -> proof -> proof | |
| 94 | val axm_proof : string -> term -> proof | |
| 95 | val oracle_proof : string -> term -> proof | |
| 96 | val thm_proof : Sign.sg -> string * (string * string list) list -> | |
| 97 | term list -> term -> proof -> proof | |
| 98 | val get_name_tags : term -> proof -> string * (string * string list) list | |
| 99 | ||
| 100 | (** rewriting on proof terms **) | |
| 12233 | 101 | val add_prf_rrules : (proof * proof) list -> theory -> theory | 
| 102 | val add_prf_rprocs : (string * (Term.typ list -> proof -> proof option)) list -> | |
| 103 | theory -> theory | |
| 11519 | 104 | val rewrite_proof : Type.type_sig -> (proof * proof) list * | 
| 105 | (string * (typ list -> proof -> proof option)) list -> proof -> proof | |
| 11615 | 106 | val rewrite_proof_notypes : (proof * proof) list * | 
| 107 | (string * (typ list -> proof -> proof option)) list -> proof -> proof | |
| 11519 | 108 | val init : theory -> theory | 
| 109 | ||
| 110 | end | |
| 111 | ||
| 112 | structure Proofterm : PROOFTERM = | |
| 113 | struct | |
| 114 | ||
| 11715 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 115 | open Envir; | 
| 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 116 | |
| 11519 | 117 | datatype proof = | 
| 118 | PBound of int | |
| 119 | | Abst of string * typ option * proof | |
| 120 | | AbsP of string * term option * proof | |
| 12294 | 121 | | % of proof * term option | 
| 122 | | %% of proof * proof | |
| 11519 | 123 | | Hyp of term | 
| 124 | | PThm of (string * (string * string list) list) * proof * term * typ list option | |
| 125 | | PAxm of string * term * typ list option | |
| 126 | | Oracle of string * term * typ list option | |
| 127 | | MinProof of proof list; | |
| 128 | ||
| 129 | fun oracles_of_proof prfs prf = | |
| 130 | let | |
| 131 | fun oras_of (tabs, Abst (_, _, prf)) = oras_of (tabs, prf) | |
| 132 | | oras_of (tabs, AbsP (_, _, prf)) = oras_of (tabs, prf) | |
| 11615 | 133 | | oras_of (tabs, prf % _) = oras_of (tabs, prf) | 
| 134 | | oras_of (tabs, prf1 %% prf2) = oras_of (oras_of (tabs, prf1), prf2) | |
| 11519 | 135 | | oras_of (tabs as (thms, oras), PThm ((name, _), prf, prop, _)) = | 
| 136 | (case Symtab.lookup (thms, name) of | |
| 137 | None => oras_of ((Symtab.update ((name, [prop]), thms), oras), prf) | |
| 138 | | Some ps => if prop mem ps then tabs else | |
| 139 | oras_of ((Symtab.update ((name, prop::ps), thms), oras), prf)) | |
| 140 | | oras_of ((thms, oras), prf as Oracle _) = (thms, prf ins oras) | |
| 141 | | oras_of (tabs, MinProof prfs) = foldl oras_of (tabs, prfs) | |
| 142 | | oras_of (tabs, _) = tabs | |
| 143 | in | |
| 144 | snd (oras_of ((Symtab.empty, prfs), prf)) | |
| 145 | end; | |
| 146 | ||
| 147 | fun thms_of_proof tab (Abst (_, _, prf)) = thms_of_proof tab prf | |
| 148 | | thms_of_proof tab (AbsP (_, _, prf)) = thms_of_proof tab prf | |
| 11615 | 149 | | thms_of_proof tab (prf1 %% prf2) = thms_of_proof (thms_of_proof tab prf1) prf2 | 
| 150 | | thms_of_proof tab (prf % _) = thms_of_proof tab prf | |
| 11519 | 151 | | thms_of_proof tab (prf' as PThm ((s, _), prf, prop, _)) = | 
| 152 | (case Symtab.lookup (tab, s) of | |
| 153 | None => thms_of_proof (Symtab.update ((s, [(prop, prf')]), tab)) prf | |
| 154 | | Some ps => if exists (equal prop o fst) ps then tab else | |
| 155 | thms_of_proof (Symtab.update ((s, (prop, prf')::ps), tab)) prf) | |
| 156 | | thms_of_proof tab _ = tab; | |
| 157 | ||
| 158 | fun axms_of_proof tab (Abst (_, _, prf)) = axms_of_proof tab prf | |
| 159 | | axms_of_proof tab (AbsP (_, _, prf)) = axms_of_proof tab prf | |
| 11615 | 160 | | axms_of_proof tab (prf1 %% prf2) = axms_of_proof (axms_of_proof tab prf1) prf2 | 
| 161 | | axms_of_proof tab (prf % _) = axms_of_proof tab prf | |
| 11519 | 162 | | axms_of_proof tab (prf as PAxm (s, _, _)) = Symtab.update ((s, prf), tab) | 
| 163 | | axms_of_proof tab _ = tab; | |
| 164 | ||
| 165 | (** collect all theorems, axioms and oracles **) | |
| 166 | ||
| 167 | fun mk_min_proof (prfs, Abst (_, _, prf)) = mk_min_proof (prfs, prf) | |
| 168 | | mk_min_proof (prfs, AbsP (_, _, prf)) = mk_min_proof (prfs, prf) | |
| 11615 | 169 | | mk_min_proof (prfs, prf % _) = mk_min_proof (prfs, prf) | 
| 170 | | mk_min_proof (prfs, prf1 %% prf2) = mk_min_proof (mk_min_proof (prfs, prf1), prf2) | |
| 11519 | 171 | | mk_min_proof (prfs, prf as PThm _) = prf ins prfs | 
| 172 | | mk_min_proof (prfs, prf as PAxm _) = prf ins prfs | |
| 173 | | mk_min_proof (prfs, prf as Oracle _) = prf ins prfs | |
| 174 | | mk_min_proof (prfs, MinProof prfs') = prfs union prfs' | |
| 175 | | mk_min_proof (prfs, _) = prfs; | |
| 176 | ||
| 177 | (** proof objects with different levels of detail **) | |
| 178 | ||
| 11543 
d61b913431c5
renamed `keep_derivs' to `proofs', and made an integer;
 wenzelm parents: 
11540diff
changeset | 179 | val proofs = ref 2; | 
| 11519 | 180 | |
| 11543 
d61b913431c5
renamed `keep_derivs' to `proofs', and made an integer;
 wenzelm parents: 
11540diff
changeset | 181 | fun err_illegal_level i = | 
| 
d61b913431c5
renamed `keep_derivs' to `proofs', and made an integer;
 wenzelm parents: 
11540diff
changeset | 182 |   error ("Illegal level of detail for proof objects: " ^ string_of_int i);
 | 
| 11519 | 183 | |
| 184 | fun if_ora b = if b then oracles_of_proof else K; | |
| 185 | ||
| 186 | fun infer_derivs f (ora1, prf1) (ora2, prf2) = | |
| 187 | (ora1 orelse ora2, | |
| 11543 
d61b913431c5
renamed `keep_derivs' to `proofs', and made an integer;
 wenzelm parents: 
11540diff
changeset | 188 | case !proofs of | 
| 
d61b913431c5
renamed `keep_derivs' to `proofs', and made an integer;
 wenzelm parents: 
11540diff
changeset | 189 | 2 => f prf1 prf2 | 
| 
d61b913431c5
renamed `keep_derivs' to `proofs', and made an integer;
 wenzelm parents: 
11540diff
changeset | 190 | | 1 => MinProof (mk_min_proof (mk_min_proof ([], prf1), prf2)) | 
| 
d61b913431c5
renamed `keep_derivs' to `proofs', and made an integer;
 wenzelm parents: 
11540diff
changeset | 191 | | 0 => MinProof (if_ora ora2 (if_ora ora1 [] prf1) prf2) | 
| 
d61b913431c5
renamed `keep_derivs' to `proofs', and made an integer;
 wenzelm parents: 
11540diff
changeset | 192 | | i => err_illegal_level i); | 
| 11519 | 193 | |
| 194 | fun infer_derivs' f (ora, prf) = | |
| 195 | (ora, | |
| 11543 
d61b913431c5
renamed `keep_derivs' to `proofs', and made an integer;
 wenzelm parents: 
11540diff
changeset | 196 | case !proofs of | 
| 
d61b913431c5
renamed `keep_derivs' to `proofs', and made an integer;
 wenzelm parents: 
11540diff
changeset | 197 | 2 => f prf | 
| 
d61b913431c5
renamed `keep_derivs' to `proofs', and made an integer;
 wenzelm parents: 
11540diff
changeset | 198 | | 1 => MinProof (mk_min_proof ([], prf)) | 
| 
d61b913431c5
renamed `keep_derivs' to `proofs', and made an integer;
 wenzelm parents: 
11540diff
changeset | 199 | | 0 => MinProof (if_ora ora [] prf) | 
| 
d61b913431c5
renamed `keep_derivs' to `proofs', and made an integer;
 wenzelm parents: 
11540diff
changeset | 200 | | i => err_illegal_level i); | 
| 11519 | 201 | |
| 11615 | 202 | fun (prf %> t) = prf % Some t; | 
| 11519 | 203 | |
| 11615 | 204 | val proof_combt = foldl (op %>); | 
| 205 | val proof_combt' = foldl (op %); | |
| 206 | val proof_combP = foldl (op %%); | |
| 11519 | 207 | |
| 208 | fun strip_combt prf = | |
| 11615 | 209 | let fun stripc (prf % t, ts) = stripc (prf, t::ts) | 
| 11519 | 210 | | stripc x = x | 
| 211 | in stripc (prf, []) end; | |
| 212 | ||
| 213 | fun strip_combP prf = | |
| 11615 | 214 | let fun stripc (prf %% prf', prfs) = stripc (prf, prf'::prfs) | 
| 11519 | 215 | | stripc x = x | 
| 216 | in stripc (prf, []) end; | |
| 217 | ||
| 218 | fun strip_thm prf = (case strip_combt (fst (strip_combP prf)) of | |
| 219 | (PThm (_, prf', _, _), _) => prf' | |
| 220 | | _ => prf); | |
| 221 | ||
| 222 | val mk_Abst = foldr (fn ((s, T:typ), prf) => Abst (s, None, prf)); | |
| 223 | fun mk_AbsP (i, prf) = funpow i (fn prf => AbsP ("H", None, prf)) prf;
 | |
| 224 | ||
| 11715 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 225 | fun apsome' f None = raise SAME | 
| 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 226 | | apsome' f (Some x) = Some (f x); | 
| 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 227 | |
| 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 228 | fun same f x = | 
| 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 229 | let val x' = f x | 
| 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 230 | in if x = x' then raise SAME else x' end; | 
| 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 231 | |
| 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 232 | fun map_proof_terms f g = | 
| 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 233 | let | 
| 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 234 | fun mapp (Abst (s, T, prf)) = (Abst (s, apsome' (same g) T, mapph prf) | 
| 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 235 | handle SAME => Abst (s, T, mapp prf)) | 
| 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 236 | | mapp (AbsP (s, t, prf)) = (AbsP (s, apsome' (same f) t, mapph prf) | 
| 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 237 | handle SAME => AbsP (s, t, mapp prf)) | 
| 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 238 | | mapp (prf % t) = (mapp prf % apsome f t | 
| 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 239 | handle SAME => prf % apsome' (same f) t) | 
| 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 240 | | mapp (prf1 %% prf2) = (mapp prf1 %% mapph prf2 | 
| 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 241 | handle SAME => prf1 %% mapp prf2) | 
| 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 242 | | mapp (PThm (a, prf, prop, Some Ts)) = | 
| 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 243 | PThm (a, prf, prop, Some (same (map g) Ts)) | 
| 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 244 | | mapp (PAxm (a, prop, Some Ts)) = | 
| 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 245 | PAxm (a, prop, Some (same (map g) Ts)) | 
| 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 246 | | mapp _ = raise SAME | 
| 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 247 | and mapph prf = (mapp prf handle SAME => prf) | 
| 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 248 | |
| 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 249 | in mapph end; | 
| 11519 | 250 | |
| 251 | fun fold_proof_terms f g (a, Abst (_, Some T, prf)) = fold_proof_terms f g (g (T, a), prf) | |
| 252 | | fold_proof_terms f g (a, Abst (_, None, prf)) = fold_proof_terms f g (a, prf) | |
| 253 | | fold_proof_terms f g (a, AbsP (_, Some t, prf)) = fold_proof_terms f g (f (t, a), prf) | |
| 254 | | fold_proof_terms f g (a, AbsP (_, None, prf)) = fold_proof_terms f g (a, prf) | |
| 11615 | 255 | | fold_proof_terms f g (a, prf % Some t) = f (t, fold_proof_terms f g (a, prf)) | 
| 256 | | fold_proof_terms f g (a, prf % None) = fold_proof_terms f g (a, prf) | |
| 257 | | fold_proof_terms f g (a, prf1 %% prf2) = fold_proof_terms f g | |
| 11519 | 258 | (fold_proof_terms f g (a, prf1), prf2) | 
| 259 | | fold_proof_terms _ g (a, PThm (_, _, _, Some Ts)) = foldr g (Ts, a) | |
| 260 | | fold_proof_terms _ g (a, PAxm (_, prop, Some Ts)) = foldr g (Ts, a) | |
| 261 | | fold_proof_terms _ _ (a, _) = a; | |
| 262 | ||
| 263 | val add_prf_names = fold_proof_terms add_term_names ((uncurry K) o swap); | |
| 264 | val add_prf_tfree_names = fold_proof_terms add_term_tfree_names add_typ_tfree_names; | |
| 265 | val add_prf_tvar_ixns = fold_proof_terms add_term_tvar_ixns (add_typ_ixns o swap); | |
| 266 | ||
| 267 | ||
| 268 | (***** utilities *****) | |
| 269 | ||
| 270 | fun strip_abs (_::Ts) (Abs (_, _, t)) = strip_abs Ts t | |
| 271 | | strip_abs _ t = t; | |
| 272 | ||
| 273 | fun mk_abs Ts t = foldl (fn (t', T) => Abs ("", T, t')) (t, Ts);
 | |
| 274 | ||
| 275 | ||
| 276 | (*Abstraction of a proof term over its occurrences of v, | |
| 277 | which must contain no loose bound variables. | |
| 278 | The resulting proof term is ready to become the body of an Abst.*) | |
| 279 | ||
| 280 | fun prf_abstract_over v = | |
| 281 | let | |
| 11715 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 282 | fun abst' lev u = if v aconv u then Bound lev else | 
| 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 283 | (case u of | 
| 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 284 | Abs (a, T, t) => Abs (a, T, abst' (lev + 1) t) | 
| 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 285 | | f $ t => (abst' lev f $ absth' lev t handle SAME => f $ abst' lev t) | 
| 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 286 | | _ => raise SAME) | 
| 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 287 | and absth' lev t = (abst' lev t handle SAME => t); | 
| 11519 | 288 | |
| 11715 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 289 | fun abst lev (AbsP (a, t, prf)) = | 
| 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 290 | (AbsP (a, apsome' (abst' lev) t, absth lev prf) | 
| 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 291 | handle SAME => AbsP (a, t, abst lev prf)) | 
| 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 292 | | abst lev (Abst (a, T, prf)) = Abst (a, T, abst (lev + 1) prf) | 
| 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 293 | | abst lev (prf1 %% prf2) = (abst lev prf1 %% absth lev prf2 | 
| 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 294 | handle SAME => prf1 %% abst lev prf2) | 
| 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 295 | | abst lev (prf % t) = (abst lev prf % apsome (absth' lev) t | 
| 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 296 | handle SAME => prf % apsome' (abst' lev) t) | 
| 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 297 | | abst _ _ = raise SAME | 
| 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 298 | and absth lev prf = (abst lev prf handle SAME => prf) | 
| 11519 | 299 | |
| 11715 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 300 | in absth 0 end; | 
| 11519 | 301 | |
| 302 | ||
| 303 | (*increments a proof term's non-local bound variables | |
| 304 | required when moving a proof term within abstractions | |
| 305 | inc is increment for bound variables | |
| 306 | lev is level at which a bound variable is considered 'loose'*) | |
| 307 | ||
| 308 | fun incr_bv' inct tlev t = incr_bv (inct, tlev, t); | |
| 309 | ||
| 11715 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 310 | fun prf_incr_bv' incP inct Plev tlev (PBound i) = | 
| 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 311 | if i >= Plev then PBound (i+incP) else raise SAME | 
| 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 312 | | prf_incr_bv' incP inct Plev tlev (AbsP (a, t, body)) = | 
| 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 313 | (AbsP (a, apsome' (same (incr_bv' inct tlev)) t, | 
| 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 314 | prf_incr_bv incP inct (Plev+1) tlev body) handle SAME => | 
| 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 315 | AbsP (a, t, prf_incr_bv' incP inct (Plev+1) tlev body)) | 
| 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 316 | | prf_incr_bv' incP inct Plev tlev (Abst (a, T, body)) = | 
| 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 317 | Abst (a, T, prf_incr_bv' incP inct Plev (tlev+1) body) | 
| 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 318 | | prf_incr_bv' incP inct Plev tlev (prf %% prf') = | 
| 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 319 | (prf_incr_bv' incP inct Plev tlev prf %% prf_incr_bv incP inct Plev tlev prf' | 
| 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 320 | handle SAME => prf %% prf_incr_bv' incP inct Plev tlev prf') | 
| 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 321 | | prf_incr_bv' incP inct Plev tlev (prf % t) = | 
| 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 322 | (prf_incr_bv' incP inct Plev tlev prf % apsome (incr_bv' inct tlev) t | 
| 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 323 | handle SAME => prf % apsome' (same (incr_bv' inct tlev)) t) | 
| 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 324 | | prf_incr_bv' _ _ _ _ _ = raise SAME | 
| 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 325 | and prf_incr_bv incP inct Plev tlev prf = | 
| 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 326 | (prf_incr_bv' incP inct Plev tlev prf handle SAME => prf); | 
| 11519 | 327 | |
| 328 | fun incr_pboundvars 0 0 prf = prf | |
| 329 | | incr_pboundvars incP inct prf = prf_incr_bv incP inct 0 0 prf; | |
| 330 | ||
| 331 | ||
| 11615 | 332 | fun prf_loose_bvar1 (prf1 %% prf2) k = prf_loose_bvar1 prf1 k orelse prf_loose_bvar1 prf2 k | 
| 333 | | prf_loose_bvar1 (prf % Some t) k = prf_loose_bvar1 prf k orelse loose_bvar1 (t, k) | |
| 334 | | prf_loose_bvar1 (_ % None) _ = true | |
| 11519 | 335 | | prf_loose_bvar1 (AbsP (_, Some t, prf)) k = loose_bvar1 (t, k) orelse prf_loose_bvar1 prf k | 
| 336 | | prf_loose_bvar1 (AbsP (_, None, _)) k = true | |
| 337 | | prf_loose_bvar1 (Abst (_, _, prf)) k = prf_loose_bvar1 prf (k+1) | |
| 338 | | prf_loose_bvar1 _ _ = false; | |
| 339 | ||
| 340 | fun prf_loose_Pbvar1 (PBound i) k = i = k | |
| 11615 | 341 | | prf_loose_Pbvar1 (prf1 %% prf2) k = prf_loose_Pbvar1 prf1 k orelse prf_loose_Pbvar1 prf2 k | 
| 342 | | prf_loose_Pbvar1 (prf % _) k = prf_loose_Pbvar1 prf k | |
| 11519 | 343 | | prf_loose_Pbvar1 (AbsP (_, _, prf)) k = prf_loose_Pbvar1 prf (k+1) | 
| 344 | | prf_loose_Pbvar1 (Abst (_, _, prf)) k = prf_loose_Pbvar1 prf k | |
| 345 | | prf_loose_Pbvar1 _ _ = false; | |
| 346 | ||
| 12279 | 347 | fun prf_add_loose_bnos plev tlev (PBound i) (is, js) = | 
| 348 | if i < plev then (is, js) else ((i-plev) ins is, js) | |
| 349 | | prf_add_loose_bnos plev tlev (prf1 %% prf2) p = | |
| 350 | prf_add_loose_bnos plev tlev prf2 | |
| 351 | (prf_add_loose_bnos plev tlev prf1 p) | |
| 352 | | prf_add_loose_bnos plev tlev (prf % opt) (is, js) = | |
| 353 | prf_add_loose_bnos plev tlev prf (case opt of | |
| 354 | None => (is, ~1 ins js) | |
| 355 | | Some t => (is, add_loose_bnos (t, tlev, js))) | |
| 356 | | prf_add_loose_bnos plev tlev (AbsP (_, opt, prf)) (is, js) = | |
| 357 | prf_add_loose_bnos (plev+1) tlev prf (case opt of | |
| 358 | None => (is, ~1 ins js) | |
| 359 | | Some t => (is, add_loose_bnos (t, tlev, js))) | |
| 360 | | prf_add_loose_bnos plev tlev (Abst (_, _, prf)) p = | |
| 361 | prf_add_loose_bnos plev (tlev+1) prf p | |
| 362 | | prf_add_loose_bnos _ _ _ _ = ([], []); | |
| 363 | ||
| 11519 | 364 | |
| 365 | (**** substitutions ****) | |
| 366 | ||
| 367 | fun norm_proof env = | |
| 368 | let | |
| 369 | fun norm (Abst (s, T, prf)) = (Abst (s, apsome' (norm_type_same env) T, normh prf) | |
| 370 | handle SAME => Abst (s, T, norm prf)) | |
| 371 | | norm (AbsP (s, t, prf)) = (AbsP (s, apsome' (norm_term_same env) t, normh prf) | |
| 372 | handle SAME => AbsP (s, t, norm prf)) | |
| 11615 | 373 | | norm (prf % t) = (norm prf % apsome (norm_term env) t | 
| 374 | handle SAME => prf % apsome' (norm_term_same env) t) | |
| 375 | | norm (prf1 %% prf2) = (norm prf1 %% normh prf2 | |
| 376 | handle SAME => prf1 %% norm prf2) | |
| 11519 | 377 | | norm (PThm (s, prf, t, Ts)) = PThm (s, prf, t, apsome' (norm_types_same env) Ts) | 
| 378 | | norm (PAxm (s, prop, Ts)) = PAxm (s, prop, apsome' (norm_types_same env) Ts) | |
| 379 | | norm _ = raise SAME | |
| 380 | and normh prf = (norm prf handle SAME => prf); | |
| 381 | in normh end; | |
| 382 | ||
| 383 | (***** Remove some types in proof term (to save space) *****) | |
| 384 | ||
| 385 | fun remove_types (Abs (s, _, t)) = Abs (s, dummyT, remove_types t) | |
| 386 | | remove_types (t $ u) = remove_types t $ remove_types u | |
| 387 | | remove_types (Const (s, _)) = Const (s, dummyT) | |
| 388 | | remove_types t = t; | |
| 389 | ||
| 390 | fun remove_types_env (Envir.Envir {iTs, asol, maxidx}) =
 | |
| 391 |   Envir.Envir {iTs = iTs, asol = Vartab.map remove_types asol, maxidx = maxidx};
 | |
| 392 | ||
| 393 | fun norm_proof' env prf = norm_proof (remove_types_env env) prf; | |
| 394 | ||
| 395 | (**** substitution of bound variables ****) | |
| 396 | ||
| 397 | fun prf_subst_bounds args prf = | |
| 398 | let | |
| 399 | val n = length args; | |
| 400 | fun subst' lev (Bound i) = | |
| 401 | (if i<lev then raise SAME (*var is locally bound*) | |
| 402 | else incr_boundvars lev (List.nth (args, i-lev)) | |
| 403 | handle Subscript => Bound (i-n) (*loose: change it*)) | |
| 404 | | subst' lev (Abs (a, T, body)) = Abs (a, T, subst' (lev+1) body) | |
| 405 | | subst' lev (f $ t) = (subst' lev f $ substh' lev t | |
| 406 | handle SAME => f $ subst' lev t) | |
| 407 | | subst' _ _ = raise SAME | |
| 408 | and substh' lev t = (subst' lev t handle SAME => t); | |
| 409 | ||
| 410 | fun subst lev (AbsP (a, t, body)) = (AbsP (a, apsome' (subst' lev) t, substh lev body) | |
| 411 | handle SAME => AbsP (a, t, subst lev body)) | |
| 412 | | subst lev (Abst (a, T, body)) = Abst (a, T, subst (lev+1) body) | |
| 11615 | 413 | | subst lev (prf %% prf') = (subst lev prf %% substh lev prf' | 
| 414 | handle SAME => prf %% subst lev prf') | |
| 415 | | subst lev (prf % t) = (subst lev prf % apsome (substh' lev) t | |
| 416 | handle SAME => prf % apsome' (subst' lev) t) | |
| 11519 | 417 | | subst _ _ = raise SAME | 
| 418 | and substh lev prf = (subst lev prf handle SAME => prf) | |
| 419 | in case args of [] => prf | _ => substh 0 prf end; | |
| 420 | ||
| 421 | fun prf_subst_pbounds args prf = | |
| 422 | let | |
| 423 | val n = length args; | |
| 424 | fun subst (PBound i) Plev tlev = | |
| 425 | (if i < Plev then raise SAME (*var is locally bound*) | |
| 426 | else incr_pboundvars Plev tlev (List.nth (args, i-Plev)) | |
| 427 | handle Subscript => PBound (i-n) (*loose: change it*)) | |
| 428 | | subst (AbsP (a, t, body)) Plev tlev = AbsP (a, t, subst body (Plev+1) tlev) | |
| 429 | | subst (Abst (a, T, body)) Plev tlev = Abst (a, T, subst body Plev (tlev+1)) | |
| 11615 | 430 | | subst (prf %% prf') Plev tlev = (subst prf Plev tlev %% substh prf' Plev tlev | 
| 431 | handle SAME => prf %% subst prf' Plev tlev) | |
| 432 | | subst (prf % t) Plev tlev = subst prf Plev tlev % t | |
| 11519 | 433 | | subst prf _ _ = raise SAME | 
| 434 | and substh prf Plev tlev = (subst prf Plev tlev handle SAME => prf) | |
| 435 | in case args of [] => prf | _ => substh prf 0 0 end; | |
| 436 | ||
| 437 | ||
| 438 | (**** Freezing and thawing of variables in proof terms ****) | |
| 439 | ||
| 440 | fun frzT names = | |
| 441 | map_type_tvar (fn (ixn, xs) => TFree (the (assoc (names, ixn)), xs)); | |
| 442 | ||
| 443 | fun thawT names = | |
| 444 | map_type_tfree (fn (s, xs) => case assoc (names, s) of | |
| 445 | None => TFree (s, xs) | |
| 446 | | Some ixn => TVar (ixn, xs)); | |
| 447 | ||
| 448 | fun freeze names names' (t $ u) = | |
| 449 | freeze names names' t $ freeze names names' u | |
| 450 | | freeze names names' (Abs (s, T, t)) = | |
| 451 | Abs (s, frzT names' T, freeze names names' t) | |
| 452 | | freeze names names' (Const (s, T)) = Const (s, frzT names' T) | |
| 453 | | freeze names names' (Free (s, T)) = Free (s, frzT names' T) | |
| 454 | | freeze names names' (Var (ixn, T)) = | |
| 455 | Free (the (assoc (names, ixn)), frzT names' T) | |
| 456 | | freeze names names' t = t; | |
| 457 | ||
| 458 | fun thaw names names' (t $ u) = | |
| 459 | thaw names names' t $ thaw names names' u | |
| 460 | | thaw names names' (Abs (s, T, t)) = | |
| 461 | Abs (s, thawT names' T, thaw names names' t) | |
| 462 | | thaw names names' (Const (s, T)) = Const (s, thawT names' T) | |
| 463 | | thaw names names' (Free (s, T)) = | |
| 464 | let val T' = thawT names' T | |
| 465 | in case assoc (names, s) of | |
| 466 | None => Free (s, T') | |
| 467 | | Some ixn => Var (ixn, T') | |
| 468 | end | |
| 469 | | thaw names names' (Var (ixn, T)) = Var (ixn, thawT names' T) | |
| 470 | | thaw names names' t = t; | |
| 471 | ||
| 472 | fun freeze_thaw_prf prf = | |
| 473 | let | |
| 474 | val (fs, Tfs, vs, Tvs) = fold_proof_terms | |
| 475 | (fn (t, (fs, Tfs, vs, Tvs)) => | |
| 476 | (add_term_frees (t, fs), add_term_tfree_names (t, Tfs), | |
| 477 | add_term_vars (t, vs), add_term_tvar_ixns (t, Tvs))) | |
| 478 | (fn (T, (fs, Tfs, vs, Tvs)) => | |
| 479 | (fs, add_typ_tfree_names (T, Tfs), | |
| 480 | vs, add_typ_ixns (Tvs, T))) | |
| 481 | (([], [], [], []), prf); | |
| 482 | val fs' = map (fst o dest_Free) fs; | |
| 483 | val vs' = map (fst o dest_Var) vs; | |
| 484 | val names = vs' ~~ variantlist (map fst vs', fs'); | |
| 485 | val names' = Tvs ~~ variantlist (map fst Tvs, Tfs); | |
| 486 | val rnames = map swap names; | |
| 487 | val rnames' = map swap names'; | |
| 488 | in | |
| 489 | (map_proof_terms (freeze names names') (frzT names') prf, | |
| 490 | map_proof_terms (thaw rnames rnames') (thawT rnames')) | |
| 491 | end; | |
| 492 | ||
| 493 | ||
| 494 | (***** implication introduction *****) | |
| 495 | ||
| 496 | fun implies_intr_proof h prf = | |
| 497 | let | |
| 11715 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 498 | fun abshyp i (Hyp t) = if h aconv t then PBound i else raise SAME | 
| 11519 | 499 | | abshyp i (Abst (s, T, prf)) = Abst (s, T, abshyp i prf) | 
| 500 | | abshyp i (AbsP (s, t, prf)) = AbsP (s, t, abshyp (i+1) prf) | |
| 11615 | 501 | | abshyp i (prf % t) = abshyp i prf % t | 
| 11715 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 502 | | abshyp i (prf1 %% prf2) = (abshyp i prf1 %% abshyph i prf2 | 
| 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 503 | handle SAME => prf1 %% abshyp i prf2) | 
| 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 504 | | abshyp _ _ = raise SAME | 
| 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 505 | and abshyph i prf = (abshyp i prf handle SAME => prf) | 
| 11519 | 506 | in | 
| 11715 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 507 |     AbsP ("H", None (*h*), abshyph 0 prf)
 | 
| 11519 | 508 | end; | 
| 509 | ||
| 510 | ||
| 511 | (***** forall introduction *****) | |
| 512 | ||
| 513 | fun forall_intr_proof x a prf = Abst (a, None, prf_abstract_over x prf); | |
| 514 | ||
| 515 | ||
| 516 | (***** varify *****) | |
| 517 | ||
| 518 | fun varify_proof t fixed prf = | |
| 519 | let | |
| 520 | val fs = add_term_tfree_names (t, []) \\ fixed; | |
| 521 | val ixns = add_term_tvar_ixns (t, []); | |
| 522 | val fmap = fs ~~ variantlist (fs, map #1 ixns) | |
| 523 | fun thaw (f as (a, S)) = | |
| 524 | (case assoc (fmap, a) of | |
| 525 | None => TFree f | |
| 526 | | Some b => TVar ((b, 0), S)); | |
| 527 | in map_proof_terms (map_term_types (map_type_tfree thaw)) (map_type_tfree thaw) prf | |
| 528 | end; | |
| 529 | ||
| 530 | ||
| 531 | local | |
| 532 | ||
| 533 | fun new_name (ix, (pairs,used)) = | |
| 534 | let val v = variant used (string_of_indexname ix) | |
| 535 | in ((ix, v) :: pairs, v :: used) end; | |
| 536 | ||
| 537 | fun freeze_one alist (ix, sort) = (case assoc (alist, ix) of | |
| 538 | None => TVar (ix, sort) | |
| 539 | | Some name => TFree (name, sort)); | |
| 540 | ||
| 541 | in | |
| 542 | ||
| 543 | fun freezeT t prf = | |
| 544 | let | |
| 545 | val used = it_term_types add_typ_tfree_names (t, []) | |
| 546 | and tvars = map #1 (it_term_types add_typ_tvars (t, [])); | |
| 547 | val (alist, _) = foldr new_name (tvars, ([], used)); | |
| 548 | in | |
| 549 | (case alist of | |
| 550 | [] => prf (*nothing to do!*) | |
| 551 | | _ => | |
| 552 | let val frzT = map_type_tvar (freeze_one alist) | |
| 553 | in map_proof_terms (map_term_types frzT) frzT prf end) | |
| 554 | end; | |
| 555 | ||
| 556 | end; | |
| 557 | ||
| 558 | ||
| 559 | (***** rotate assumptions *****) | |
| 560 | ||
| 561 | fun rotate_proof Bs Bi m prf = | |
| 562 | let | |
| 563 | val params = Term.strip_all_vars Bi; | |
| 564 | val asms = Logic.strip_imp_prems (Term.strip_all_body Bi); | |
| 565 | val i = length asms; | |
| 566 | val j = length Bs; | |
| 567 | in | |
| 568 | mk_AbsP (j+1, proof_combP (prf, map PBound | |
| 569 | (j downto 1) @ [mk_Abst (params, mk_AbsP (i, | |
| 570 | proof_combP (proof_combt (PBound i, map Bound ((length params - 1) downto 0)), | |
| 571 | map PBound (((i-m-1) downto 0) @ ((i-1) downto (i-m))))))])) | |
| 572 | end; | |
| 573 | ||
| 574 | ||
| 575 | (***** permute premises *****) | |
| 576 | ||
| 577 | fun permute_prems_prf prems j k prf = | |
| 578 | let val n = length prems | |
| 579 | in mk_AbsP (n, proof_combP (prf, | |
| 580 | map PBound ((n-1 downto n-j) @ (k-1 downto 0) @ (n-j-1 downto k)))) | |
| 581 | end; | |
| 582 | ||
| 583 | ||
| 584 | (***** instantiation *****) | |
| 585 | ||
| 586 | fun instantiate vTs tpairs = | |
| 587 | map_proof_terms (subst_atomic (map (apsnd remove_types) tpairs) o | |
| 588 | subst_TVars vTs) (typ_subst_TVars vTs); | |
| 589 | ||
| 590 | ||
| 591 | (***** lifting *****) | |
| 592 | ||
| 593 | fun lift_proof Bi inc prop prf = | |
| 594 | let | |
| 595 | val (_, lift_all) = Logic.lift_fns (Bi, inc); | |
| 596 | ||
| 597 | fun lift'' Us Ts t = strip_abs Ts (Logic.incr_indexes (Us, inc) (mk_abs Ts t)); | |
| 598 | ||
| 11715 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 599 | fun lift' Us Ts (Abst (s, T, prf)) = | 
| 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 600 | (Abst (s, apsome' (same (incr_tvar inc)) T, lifth' Us (dummyT::Ts) prf) | 
| 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 601 | handle SAME => Abst (s, T, lift' Us (dummyT::Ts) prf)) | 
| 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 602 | | lift' Us Ts (AbsP (s, t, prf)) = | 
| 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 603 | (AbsP (s, apsome' (same (lift'' Us Ts)) t, lifth' Us Ts prf) | 
| 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 604 | handle SAME => AbsP (s, t, lift' Us Ts prf)) | 
| 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 605 | | lift' Us Ts (prf % t) = (lift' Us Ts prf % apsome (lift'' Us Ts) t | 
| 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 606 | handle SAME => prf % apsome' (same (lift'' Us Ts)) t) | 
| 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 607 | | lift' Us Ts (prf1 %% prf2) = (lift' Us Ts prf1 %% lifth' Us Ts prf2 | 
| 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 608 | handle SAME => prf1 %% lift' Us Ts prf2) | 
| 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 609 | | lift' _ _ (PThm (s, prf, prop, Ts)) = | 
| 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 610 | PThm (s, prf, prop, apsome' (same (map (incr_tvar inc))) Ts) | 
| 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 611 | | lift' _ _ (PAxm (s, prop, Ts)) = | 
| 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 612 | PAxm (s, prop, apsome' (same (map (incr_tvar inc))) Ts) | 
| 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 613 | | lift' _ _ _ = raise SAME | 
| 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 614 | and lifth' Us Ts prf = (lift' Us Ts prf handle SAME => prf); | 
| 11519 | 615 | |
| 616 | val ps = map lift_all (Logic.strip_imp_prems (snd (Logic.strip_flexpairs prop))); | |
| 617 | val k = length ps; | |
| 618 | ||
| 619 | fun mk_app (b, (i, j, prf)) = | |
| 11615 | 620 | if b then (i-1, j, prf %% PBound i) else (i, j-1, prf %> Bound j); | 
| 11519 | 621 | |
| 622 |     fun lift Us bs i j (Const ("==>", _) $ A $ B) =
 | |
| 623 | 	    AbsP ("H", None (*A*), lift Us (true::bs) (i+1) j B)
 | |
| 624 |       | lift Us bs i j (Const ("all", _) $ Abs (a, T, t)) = 
 | |
| 625 | Abst (a, None (*T*), lift (T::Us) (false::bs) i (j+1) t) | |
| 11715 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 626 | | lift Us bs i j _ = proof_combP (lifth' (rev Us) [] prf, | 
| 11519 | 627 | map (fn k => (#3 (foldr mk_app (bs, (i-1, j-1, PBound k))))) | 
| 628 | (i + k - 1 downto i)); | |
| 629 | in | |
| 630 | mk_AbsP (k, lift [] [] 0 0 Bi) | |
| 631 | end; | |
| 632 | ||
| 633 | ||
| 634 | (***** proof by assumption *****) | |
| 635 | ||
| 636 | fun mk_asm_prf (Const ("==>", _) $ A $ B) i = AbsP ("H", None (*A*), mk_asm_prf B (i+1))
 | |
| 637 |   | mk_asm_prf (Const ("all", _) $ Abs (a, T, t)) i = Abst (a, None (*T*), mk_asm_prf t i)
 | |
| 638 | | mk_asm_prf _ i = PBound i; | |
| 639 | ||
| 640 | fun assumption_proof Bs Bi n prf = | |
| 641 | mk_AbsP (length Bs, proof_combP (prf, | |
| 642 | map PBound (length Bs - 1 downto 0) @ [mk_asm_prf Bi (~n)])); | |
| 643 | ||
| 644 | ||
| 645 | (***** Composition of object rule with proof state *****) | |
| 646 | ||
| 647 | fun flatten_params_proof i j n (Const ("==>", _) $ A $ B, k) =
 | |
| 648 |       AbsP ("H", None (*A*), flatten_params_proof (i+1) j n (B, k))
 | |
| 649 |   | flatten_params_proof i j n (Const ("all", _) $ Abs (a, T, t), k) =
 | |
| 650 | Abst (a, None (*T*), flatten_params_proof i (j+1) n (t, k)) | |
| 651 | | flatten_params_proof i j n (_, k) = proof_combP (proof_combt (PBound (k+i), | |
| 652 | map Bound (j-1 downto 0)), map PBound (i-1 downto 0 \ i-n)); | |
| 653 | ||
| 654 | fun bicompose_proof Bs oldAs newAs A n rprf sprf = | |
| 655 | let | |
| 656 | val la = length newAs; | |
| 657 | val lb = length Bs; | |
| 658 | in | |
| 659 | mk_AbsP (lb+la, proof_combP (sprf, | |
| 11615 | 660 | map PBound (lb + la - 1 downto la)) %% | 
| 11519 | 661 | proof_combP (rprf, (if n>0 then [mk_asm_prf (the A) (~n)] else []) @ | 
| 662 | map (flatten_params_proof 0 0 n) (oldAs ~~ (la - 1 downto 0)))) | |
| 663 | end; | |
| 664 | ||
| 665 | ||
| 666 | (***** axioms for equality *****) | |
| 667 | ||
| 668 | val aT = TFree ("'a", ["logic"]);
 | |
| 669 | val bT = TFree ("'b", ["logic"]);
 | |
| 670 | val x = Free ("x", aT);
 | |
| 671 | val y = Free ("y", aT);
 | |
| 672 | val z = Free ("z", aT);
 | |
| 673 | val A = Free ("A", propT);
 | |
| 674 | val B = Free ("B", propT);
 | |
| 675 | val f = Free ("f", aT --> bT);
 | |
| 676 | val g = Free ("g", aT --> bT);
 | |
| 677 | ||
| 678 | local open Logic in | |
| 679 | ||
| 680 | val equality_axms = | |
| 681 |   [("reflexive", mk_equals (x, x)),
 | |
| 682 |    ("symmetric", mk_implies (mk_equals (x, y), mk_equals (y, x))),
 | |
| 683 |    ("transitive", list_implies ([mk_equals (x, y), mk_equals (y, z)], mk_equals (x, z))),
 | |
| 684 |    ("equal_intr", list_implies ([mk_implies (A, B), mk_implies (B, A)], mk_equals (A, B))),
 | |
| 685 |    ("equal_elim", list_implies ([mk_equals (A, B), A], B)),
 | |
| 686 |    ("abstract_rule", Logic.mk_implies
 | |
| 687 |       (all aT $ Abs ("x", aT, equals bT $ (f $ Bound 0) $ (g $ Bound 0)),
 | |
| 688 | equals (aT --> bT) $ | |
| 689 |          Abs ("x", aT, f $ Bound 0) $ Abs ("x", aT, g $ Bound 0))),
 | |
| 690 |    ("combination", Logic.list_implies
 | |
| 691 | ([Logic.mk_equals (f, g), Logic.mk_equals (x, y)], | |
| 692 | Logic.mk_equals (f $ x, g $ y)))]; | |
| 693 | ||
| 694 | val [reflexive_axm, symmetric_axm, transitive_axm, equal_intr_axm, | |
| 695 | equal_elim_axm, abstract_rule_axm, combination_axm] = | |
| 696 |     map (fn (s, t) => PAxm ("ProtoPure." ^ s, varify t, None)) equality_axms;
 | |
| 697 | ||
| 698 | end; | |
| 699 | ||
| 11615 | 700 | val reflexive = reflexive_axm % None; | 
| 11519 | 701 | |
| 11615 | 702 | fun symmetric (prf as PAxm ("ProtoPure.reflexive", _, _) % _) = prf
 | 
| 703 | | symmetric prf = symmetric_axm % None % None %% prf; | |
| 11519 | 704 | |
| 11615 | 705 | fun transitive _ _ (PAxm ("ProtoPure.reflexive", _, _) % _) prf2 = prf2
 | 
| 706 |   | transitive _ _ prf1 (PAxm ("ProtoPure.reflexive", _, _) % _) = prf1
 | |
| 11519 | 707 |   | transitive u (Type ("prop", [])) prf1 prf2 =
 | 
| 11615 | 708 | transitive_axm % None % Some (remove_types u) % None %% prf1 %% prf2 | 
| 11519 | 709 | | transitive u T prf1 prf2 = | 
| 11615 | 710 | transitive_axm % None % None % None %% prf1 %% prf2; | 
| 11519 | 711 | |
| 712 | fun abstract_rule x a prf = | |
| 11615 | 713 | abstract_rule_axm % None % None %% forall_intr_proof x a prf; | 
| 11519 | 714 | |
| 11615 | 715 | fun check_comb (PAxm ("ProtoPure.combination", _, _) % f % g % _ % _ %% prf %% _) =
 | 
| 11519 | 716 | is_some f orelse check_comb prf | 
| 11615 | 717 |   | check_comb (PAxm ("ProtoPure.transitive", _, _) % _ % _ % _ %% prf1 %% prf2) =
 | 
| 11519 | 718 | check_comb prf1 andalso check_comb prf2 | 
| 11615 | 719 |   | check_comb (PAxm ("ProtoPure.symmetric", _, _) % _ % _ %% prf) = check_comb prf
 | 
| 11519 | 720 | | check_comb _ = false; | 
| 721 | ||
| 722 | fun combination f g t u (Type (_, [T, U])) prf1 prf2 = | |
| 723 | let | |
| 724 | val f = Envir.beta_norm f; | |
| 725 | val g = Envir.beta_norm g; | |
| 726 | val prf = if check_comb prf1 then | |
| 11615 | 727 | combination_axm % None % None | 
| 11519 | 728 | else (case prf1 of | 
| 11615 | 729 |           PAxm ("ProtoPure.reflexive", _, _) % _ =>
 | 
| 730 | combination_axm %> remove_types f % None | |
| 731 | | _ => combination_axm %> remove_types f %> remove_types g) | |
| 11519 | 732 | in | 
| 733 | (case T of | |
| 11615 | 734 |        Type ("fun", _) => prf %
 | 
| 11519 | 735 | (case head_of f of | 
| 736 | Abs _ => Some (remove_types t) | |
| 737 | | Var _ => Some (remove_types t) | |
| 11615 | 738 | | _ => None) % | 
| 11519 | 739 | (case head_of g of | 
| 740 | Abs _ => Some (remove_types u) | |
| 741 | | Var _ => Some (remove_types u) | |
| 11615 | 742 | | _ => None) %% prf1 %% prf2 | 
| 743 | | _ => prf % None % None %% prf1 %% prf2) | |
| 11519 | 744 | end; | 
| 745 | ||
| 746 | fun equal_intr A B prf1 prf2 = | |
| 11615 | 747 | equal_intr_axm %> remove_types A %> remove_types B %% prf1 %% prf2; | 
| 11519 | 748 | |
| 749 | fun equal_elim A B prf1 prf2 = | |
| 11615 | 750 | equal_elim_axm %> remove_types A %> remove_types B %% prf1 %% prf2; | 
| 11519 | 751 | |
| 752 | ||
| 753 | (***** axioms and theorems *****) | |
| 754 | ||
| 755 | fun vars_of t = rev (foldl_aterms | |
| 756 | (fn (vs, v as Var _) => v ins vs | (vs, _) => vs) ([], t)); | |
| 757 | ||
| 758 | fun test_args _ [] = true | |
| 759 | | test_args is (Bound i :: ts) = | |
| 760 | not (i mem is) andalso test_args (i :: is) ts | |
| 761 | | test_args _ _ = false; | |
| 762 | ||
| 763 | fun is_fun (Type ("fun", _)) = true
 | |
| 764 | | is_fun (TVar _) = true | |
| 765 | | is_fun _ = false; | |
| 766 | ||
| 767 | fun add_funvars Ts (vs, t) = | |
| 768 | if is_fun (fastype_of1 (Ts, t)) then | |
| 769 | vs union mapfilter (fn Var (ixn, T) => | |
| 770 | if is_fun T then Some ixn else None | _ => None) (vars_of t) | |
| 771 | else vs; | |
| 772 | ||
| 773 | fun add_npvars q p Ts (vs, Const ("==>", _) $ t $ u) =
 | |
| 774 | add_npvars q p Ts (add_npvars q (not p) Ts (vs, t), u) | |
| 775 |   | add_npvars q p Ts (vs, Const ("all", Type (_, [Type (_, [T, _]), _])) $ t) =
 | |
| 776 |       add_npvars q p Ts (vs, if p andalso q then betapply (t, Var (("",0), T)) else t)
 | |
| 12041 | 777 | | add_npvars q p Ts (vs, Abs (_, T, t)) = add_npvars q p (T::Ts) (vs, t) | 
| 778 | | add_npvars _ _ Ts (vs, t) = add_npvars' Ts (vs, t) | |
| 779 | and add_npvars' Ts (vs, t) = (case strip_comb t of | |
| 11519 | 780 | (Var (ixn, _), ts) => if test_args [] ts then vs | 
| 12041 | 781 | else foldl (add_npvars' Ts) (overwrite (vs, | 
| 11519 | 782 | (ixn, foldl (add_funvars Ts) (if_none (assoc (vs, ixn)) [], ts))), ts) | 
| 12041 | 783 | | (Abs (_, T, u), ts) => foldl (add_npvars' (T::Ts)) (vs, u :: ts) | 
| 784 | | (_, ts) => foldl (add_npvars' Ts) (vs, ts)); | |
| 11519 | 785 | |
| 786 | fun prop_vars (Const ("==>", _) $ P $ Q) = prop_vars P union prop_vars Q
 | |
| 787 |   | prop_vars (Const ("all", _) $ Abs (_, _, t)) = prop_vars t
 | |
| 788 | | prop_vars t = (case strip_comb t of | |
| 789 | (Var (ixn, _), _) => [ixn] | _ => []); | |
| 790 | ||
| 791 | fun is_proj t = | |
| 792 | let | |
| 793 | fun is_p i t = (case strip_comb t of | |
| 794 | (Bound j, []) => false | |
| 795 | | (Bound j, ts) => j >= i orelse exists (is_p i) ts | |
| 796 | | (Abs (_, _, u), _) => is_p (i+1) u | |
| 797 | | (_, ts) => exists (is_p i) ts) | |
| 798 | in (case strip_abs_body t of | |
| 799 | Bound _ => true | |
| 800 | | t' => is_p 0 t') | |
| 801 | end; | |
| 802 | ||
| 803 | fun needed_vars prop = | |
| 804 | foldl op union ([], map op ins (add_npvars true true [] ([], prop))) union | |
| 805 | prop_vars prop; | |
| 806 | ||
| 807 | fun gen_axm_proof c name prop = | |
| 808 | let | |
| 809 | val nvs = needed_vars prop; | |
| 810 | val args = map (fn (v as Var (ixn, _)) => | |
| 811 | if ixn mem nvs then Some v else None) (vars_of prop) @ | |
| 812 | map Some (sort (make_ord atless) (term_frees prop)); | |
| 813 | in | |
| 814 | proof_combt' (c (name, prop, None), args) | |
| 815 | end; | |
| 816 | ||
| 817 | val axm_proof = gen_axm_proof PAxm; | |
| 818 | val oracle_proof = gen_axm_proof Oracle; | |
| 819 | ||
| 820 | fun shrink ls lev (prf as Abst (a, T, body)) = | |
| 821 | let val (b, is, ch, body') = shrink ls (lev+1) body | |
| 822 | in (b, is, ch, if ch then Abst (a, T, body') else prf) end | |
| 823 | | shrink ls lev (prf as AbsP (a, t, body)) = | |
| 824 | let val (b, is, ch, body') = shrink (lev::ls) lev body | |
| 825 | in (b orelse 0 mem is, mapfilter (fn 0 => None | i => Some (i-1)) is, | |
| 826 | ch, if ch then AbsP (a, t, body') else prf) | |
| 827 | end | |
| 828 | | shrink ls lev prf = | |
| 829 | let val (is, ch, _, prf') = shrink' ls lev [] [] prf | |
| 830 | in (false, is, ch, prf') end | |
| 11615 | 831 | and shrink' ls lev ts prfs (prf as prf1 %% prf2) = | 
| 11519 | 832 | let | 
| 833 | val p as (_, is', ch', prf') = shrink ls lev prf2; | |
| 834 | val (is, ch, ts', prf'') = shrink' ls lev ts (p::prfs) prf1 | |
| 835 | in (is union is', ch orelse ch', ts', | |
| 11615 | 836 | if ch orelse ch' then prf'' %% prf' else prf) | 
| 11519 | 837 | end | 
| 11615 | 838 | | shrink' ls lev ts prfs (prf as prf1 % t) = | 
| 11519 | 839 | let val (is, ch, (ch', t')::ts', prf') = shrink' ls lev (t::ts) prfs prf1 | 
| 11615 | 840 | in (is, ch orelse ch', ts', if ch orelse ch' then prf' % t' else prf) end | 
| 11519 | 841 | | shrink' ls lev ts prfs (prf as PBound i) = | 
| 842 | (if exists (fn Some (Bound j) => lev-j <= nth_elem (i, ls) | _ => true) ts | |
| 12233 | 843 | orelse not (null (duplicates | 
| 844 | (foldl (fn (js, Some (Bound j)) => j :: js | (js, _) => js) ([], ts)))) | |
| 11519 | 845 | orelse exists #1 prfs then [i] else [], false, map (pair false) ts, prf) | 
| 846 | | shrink' ls lev ts prfs (prf as Hyp _) = ([], false, map (pair false) ts, prf) | |
| 11615 | 847 | | shrink' ls lev ts prfs (prf as MinProof _) = | 
| 848 | ([], false, map (pair false) ts, prf) | |
| 11519 | 849 | | shrink' ls lev ts prfs prf = | 
| 850 | let | |
| 851 | val prop = (case prf of PThm (_, _, prop, _) => prop | PAxm (_, prop, _) => prop | |
| 852 | | Oracle (_, prop, _) => prop | _ => error "shrink: proof not in normal form"); | |
| 853 | val vs = vars_of prop; | |
| 854 | val ts' = take (length vs, ts) | |
| 855 | val ts'' = drop (length vs, ts) | |
| 856 | val insts = take (length ts', map (fst o dest_Var) vs) ~~ ts'; | |
| 857 | val nvs = foldl (fn (ixns', (ixn, ixns)) => | |
| 858 | ixn ins (case assoc (insts, ixn) of | |
| 859 | Some (Some t) => if is_proj t then ixns union ixns' else ixns' | |
| 860 | | _ => ixns union ixns')) | |
| 861 | (needed prop ts'' prfs, add_npvars false true [] ([], prop)); | |
| 862 | val insts' = map | |
| 863 | (fn (ixn, x as Some _) => if ixn mem nvs then (false, x) else (true, None) | |
| 864 | | (_, x) => (false, x)) insts | |
| 865 | in ([], false, insts' @ map (pair false) ts'', prf) end | |
| 866 | and needed (Const ("==>", _) $ t $ u) ts ((b, _, _, _)::prfs) =
 | |
| 867 | (if b then map (fst o dest_Var) (vars_of t) else []) union needed u ts prfs | |
| 868 | | needed (Var (ixn, _)) (_::_) _ = [ixn] | |
| 869 | | needed _ _ _ = []; | |
| 870 | ||
| 871 | ||
| 872 | (**** Simple first order matching functions for terms and proofs ****) | |
| 873 | ||
| 874 | exception PMatch; | |
| 875 | ||
| 876 | (** see pattern.ML **) | |
| 877 | ||
| 12279 | 878 | fun flt i = filter (fn n => n < i); | 
| 879 | ||
| 880 | fun fomatch Ts tymatch j = | |
| 11519 | 881 | let | 
| 882 | fun mtch (instsp as (tyinsts, insts)) = fn | |
| 883 | (Var (ixn, T), t) => | |
| 12279 | 884 | if j>0 andalso not (null (flt j (loose_bnos t))) | 
| 885 | then raise PMatch | |
| 886 | else (tymatch (tyinsts, fn () => (T, fastype_of1 (Ts, t))), | |
| 887 | (ixn, t) :: insts) | |
| 11519 | 888 | | (Free (a, T), Free (b, U)) => | 
| 12279 | 889 | if a=b then (tymatch (tyinsts, K (T, U)), insts) else raise PMatch | 
| 11519 | 890 | | (Const (a, T), Const (b, U)) => | 
| 12279 | 891 | if a=b then (tymatch (tyinsts, K (T, U)), insts) else raise PMatch | 
| 11519 | 892 | | (f $ t, g $ u) => mtch (mtch instsp (f, g)) (t, u) | 
| 12279 | 893 | | (Bound i, Bound j) => if i=j then instsp else raise PMatch | 
| 11519 | 894 | | _ => raise PMatch | 
| 895 | in mtch end; | |
| 896 | ||
| 12279 | 897 | fun match_proof Ts tymatch = | 
| 11519 | 898 | let | 
| 12279 | 899 | fun optmatch _ inst (None, _) = inst | 
| 900 | | optmatch _ _ (Some _, None) = raise PMatch | |
| 901 | | optmatch mtch inst (Some x, Some y) = mtch inst (x, y) | |
| 902 | ||
| 903 | fun matcht Ts j (pinst, tinst) (t, u) = | |
| 904 | (pinst, fomatch Ts tymatch j tinst (t, Envir.beta_norm u)); | |
| 905 | fun matchT (pinst, (tyinsts, insts)) p = | |
| 906 | (pinst, (tymatch (tyinsts, K p), insts)); | |
| 907 | fun matchTs inst (Ts, Us) = foldl (uncurry matchT) (inst, Ts ~~ Us); | |
| 908 | ||
| 909 | fun mtch Ts i j (pinst, tinst) (Hyp (Var (ixn, _)), prf) = | |
| 910 | if i = 0 andalso j = 0 then ((ixn, prf) :: pinst, tinst) | |
| 911 | else (case apfst (flt i) (apsnd (flt j) | |
| 912 | (prf_add_loose_bnos 0 0 prf ([], []))) of | |
| 913 | ([], []) => ((ixn, incr_pboundvars (~i) (~j) prf) :: pinst, tinst) | |
| 914 | | ([], _) => if j = 0 then | |
| 915 | ((ixn, incr_pboundvars (~i) (~j) prf) :: pinst, tinst) | |
| 916 | else raise PMatch | |
| 917 | | _ => raise PMatch) | |
| 918 | | mtch Ts i j inst (prf1 % opt1, prf2 % opt2) = | |
| 919 | optmatch (matcht Ts j) (mtch Ts i j inst (prf1, prf2)) (opt1, opt2) | |
| 920 | | mtch Ts i j inst (prf1 %% prf2, prf1' %% prf2') = | |
| 921 | mtch Ts i j (mtch Ts i j inst (prf1, prf1')) (prf2, prf2') | |
| 922 | | mtch Ts i j inst (Abst (_, opT, prf1), Abst (_, opU, prf2)) = | |
| 923 | mtch (if_none opU dummyT :: Ts) i (j+1) | |
| 924 | (optmatch matchT inst (opT, opU)) (prf1, prf2) | |
| 925 | | mtch Ts i j inst (prf1, Abst (_, opU, prf2)) = | |
| 926 | mtch (if_none opU dummyT :: Ts) i (j+1) inst | |
| 927 | (incr_pboundvars 0 1 prf1 %> Bound 0, prf2) | |
| 928 | | mtch Ts i j inst (AbsP (_, opt, prf1), AbsP (_, opu, prf2)) = | |
| 929 | mtch Ts (i+1) j (optmatch (matcht Ts j) inst (opt, opu)) (prf1, prf2) | |
| 930 | | mtch Ts i j inst (prf1, AbsP (_, _, prf2)) = | |
| 931 | mtch Ts (i+1) j inst (incr_pboundvars 1 0 prf1 %% PBound 0, prf2) | |
| 932 | | mtch Ts i j inst (PThm ((name1, _), _, prop1, opTs), | |
| 933 | PThm ((name2, _), _, prop2, opUs)) = | |
| 11519 | 934 | if name1=name2 andalso prop1=prop2 then | 
| 12279 | 935 | optmatch matchTs inst (opTs, opUs) | 
| 11519 | 936 | else raise PMatch | 
| 12279 | 937 | | mtch Ts i j inst (PAxm (s1, _, opTs), PAxm (s2, _, opUs)) = | 
| 938 | if s1=s2 then optmatch matchTs inst (opTs, opUs) | |
| 11519 | 939 | else raise PMatch | 
| 12279 | 940 | | mtch _ _ _ inst (PBound i, PBound j) = if i = j then inst else raise PMatch | 
| 941 | | mtch _ _ _ _ _ = raise PMatch | |
| 942 | in mtch Ts 0 0 end; | |
| 11519 | 943 | |
| 944 | fun prf_subst (pinst, (tyinsts, insts)) = | |
| 945 | let | |
| 946 | val substT = typ_subst_TVars_Vartab tyinsts; | |
| 947 | ||
| 948 | fun subst' lev (t as Var (ixn, _)) = (case assoc (insts, ixn) of | |
| 949 | None => t | |
| 950 | | Some u => incr_boundvars lev u) | |
| 951 | | subst' lev (Const (s, T)) = Const (s, substT T) | |
| 952 | | subst' lev (Free (s, T)) = Free (s, substT T) | |
| 953 | | subst' lev (Abs (a, T, body)) = Abs (a, substT T, subst' (lev+1) body) | |
| 954 | | subst' lev (f $ t) = subst' lev f $ subst' lev t | |
| 955 | | subst' _ t = t; | |
| 956 | ||
| 957 | fun subst plev tlev (AbsP (a, t, body)) = | |
| 958 | AbsP (a, apsome (subst' tlev) t, subst (plev+1) tlev body) | |
| 959 | | subst plev tlev (Abst (a, T, body)) = | |
| 960 | Abst (a, apsome substT T, subst plev (tlev+1) body) | |
| 11615 | 961 | | subst plev tlev (prf %% prf') = subst plev tlev prf %% subst plev tlev prf' | 
| 962 | | subst plev tlev (prf % t) = subst plev tlev prf % apsome (subst' tlev) t | |
| 11519 | 963 | | subst plev tlev (prf as Hyp (Var (ixn, _))) = (case assoc (pinst, ixn) of | 
| 964 | None => prf | |
| 965 | | Some prf' => incr_pboundvars plev tlev prf') | |
| 966 | | subst _ _ (PThm (id, prf, prop, Ts)) = | |
| 967 | PThm (id, prf, prop, apsome (map substT) Ts) | |
| 968 | | subst _ _ (PAxm (id, prop, Ts)) = | |
| 969 | PAxm (id, prop, apsome (map substT) Ts) | |
| 970 | | subst _ _ t = t | |
| 971 | in subst 0 0 end; | |
| 972 | ||
| 973 | (**** rewriting on proof terms ****) | |
| 974 | ||
| 12279 | 975 | fun rewrite_prf tymatch (rules, procs) prf = | 
| 11519 | 976 | let | 
| 11615 | 977 | fun rew _ (Abst (_, _, body) % Some t) = Some (prf_subst_bounds [t] body) | 
| 978 | | rew _ (AbsP (_, _, body) %% prf) = Some (prf_subst_pbounds [prf] body) | |
| 11519 | 979 | | rew Ts prf = (case get_first (fn (_, r) => r Ts prf) procs of | 
| 980 | Some prf' => Some prf' | |
| 981 | | None => get_first (fn (prf1, prf2) => Some (prf_subst | |
| 12279 | 982 | (match_proof Ts tymatch ([], (Vartab.empty, [])) (prf1, prf)) prf2) | 
| 11519 | 983 | handle PMatch => None) rules); | 
| 984 | ||
| 11615 | 985 | fun rew0 Ts (prf as AbsP (_, _, prf' %% PBound 0)) = | 
| 11519 | 986 | if prf_loose_Pbvar1 prf' 0 then rew Ts prf | 
| 987 | else | |
| 988 | let val prf'' = incr_pboundvars (~1) 0 prf' | |
| 989 | in Some (if_none (rew Ts prf'') prf'') end | |
| 11615 | 990 | | rew0 Ts (prf as Abst (_, _, prf' % Some (Bound 0))) = | 
| 11519 | 991 | if prf_loose_bvar1 prf' 0 then rew Ts prf | 
| 992 | else | |
| 993 | let val prf'' = incr_pboundvars 0 (~1) prf' | |
| 994 | in Some (if_none (rew Ts prf'') prf'') end | |
| 995 | | rew0 Ts prf = rew Ts prf; | |
| 996 | ||
| 997 | fun rew1 Ts prf = (case rew2 Ts prf of | |
| 998 | Some prf1 => (case rew0 Ts prf1 of | |
| 999 | Some prf2 => Some (if_none (rew1 Ts prf2) prf2) | |
| 1000 | | None => Some prf1) | |
| 1001 | | None => (case rew0 Ts prf of | |
| 1002 | Some prf1 => Some (if_none (rew1 Ts prf1) prf1) | |
| 1003 | | None => None)) | |
| 1004 | ||
| 11615 | 1005 | and rew2 Ts (prf % Some t) = (case prf of | 
| 11519 | 1006 | Abst (_, _, body) => | 
| 1007 | let val prf' = prf_subst_bounds [t] body | |
| 1008 | in Some (if_none (rew2 Ts prf') prf') end | |
| 1009 | | _ => (case rew1 Ts prf of | |
| 11615 | 1010 | Some prf' => Some (prf' % Some t) | 
| 11519 | 1011 | | None => None)) | 
| 11615 | 1012 | | rew2 Ts (prf % None) = apsome (fn prf' => prf' % None) (rew1 Ts prf) | 
| 1013 | | rew2 Ts (prf1 %% prf2) = (case prf1 of | |
| 11519 | 1014 | AbsP (_, _, body) => | 
| 1015 | let val prf' = prf_subst_pbounds [prf2] body | |
| 1016 | in Some (if_none (rew2 Ts prf') prf') end | |
| 1017 | | _ => (case rew1 Ts prf1 of | |
| 1018 | Some prf1' => (case rew1 Ts prf2 of | |
| 11615 | 1019 | Some prf2' => Some (prf1' %% prf2') | 
| 1020 | | None => Some (prf1' %% prf2)) | |
| 11519 | 1021 | | None => (case rew1 Ts prf2 of | 
| 11615 | 1022 | Some prf2' => Some (prf1 %% prf2') | 
| 11519 | 1023 | | None => None))) | 
| 1024 | | rew2 Ts (Abst (s, T, prf)) = (case rew1 (if_none T dummyT :: Ts) prf of | |
| 1025 | Some prf' => Some (Abst (s, T, prf')) | |
| 1026 | | None => None) | |
| 1027 | | rew2 Ts (AbsP (s, t, prf)) = (case rew1 Ts prf of | |
| 1028 | Some prf' => Some (AbsP (s, t, prf')) | |
| 1029 | | None => None) | |
| 1030 | | rew2 _ _ = None | |
| 1031 | ||
| 1032 | in if_none (rew1 [] prf) prf end; | |
| 1033 | ||
| 1034 | fun rewrite_proof tsig = rewrite_prf (fn (tab, f) => | |
| 1035 | Type.typ_match tsig (tab, f ()) handle Type.TYPE_MATCH => raise PMatch); | |
| 1036 | ||
| 11715 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 1037 | fun rewrite_proof_notypes rews = rewrite_prf fst rews; | 
| 11615 | 1038 | |
| 11519 | 1039 | (**** theory data ****) | 
| 1040 | ||
| 1041 | (* data kind 'Pure/proof' *) | |
| 1042 | ||
| 1043 | structure ProofArgs = | |
| 1044 | struct | |
| 1045 | val name = "Pure/proof"; | |
| 1046 | type T = ((proof * proof) list * | |
| 12233 | 1047 | (string * (typ list -> proof -> proof option)) list); | 
| 11519 | 1048 | |
| 12233 | 1049 | val empty = ([], []); | 
| 1050 | val copy = I; | |
| 1051 | val prep_ext = I; | |
| 1052 | fun merge ((rules1, procs1), (rules2, procs2)) = | |
| 12293 | 1053 | (merge_lists rules1 rules2, merge_alists procs1 procs2); | 
| 11519 | 1054 | fun print _ _ = (); | 
| 1055 | end; | |
| 1056 | ||
| 1057 | structure ProofData = TheoryDataFun(ProofArgs); | |
| 1058 | ||
| 1059 | val init = ProofData.init; | |
| 1060 | ||
| 12233 | 1061 | fun add_prf_rrules rs thy = | 
| 11519 | 1062 | let val r = ProofData.get thy | 
| 12233 | 1063 | in ProofData.put (rs @ fst r, snd r) thy end; | 
| 11519 | 1064 | |
| 12233 | 1065 | fun add_prf_rprocs ps thy = | 
| 11519 | 1066 | let val r = ProofData.get thy | 
| 12233 | 1067 | in ProofData.put (fst r, ps @ snd r) thy end; | 
| 11519 | 1068 | |
| 1069 | fun thm_proof sign (name, tags) hyps prop prf = | |
| 1070 | let | |
| 1071 | val hyps' = gen_distinct op aconv hyps; | |
| 1072 | val prop = Logic.list_implies (hyps', prop); | |
| 1073 | val nvs = needed_vars prop; | |
| 1074 | val args = map (fn (v as Var (ixn, _)) => | |
| 1075 | if ixn mem nvs then Some v else None) (vars_of prop) @ | |
| 1076 | map Some (sort (make_ord atless) (term_frees prop)); | |
| 11543 
d61b913431c5
renamed `keep_derivs' to `proofs', and made an integer;
 wenzelm parents: 
11540diff
changeset | 1077 | val opt_prf = if ! proofs = 2 then | 
| 12233 | 1078 | #4 (shrink [] 0 (rewrite_prf fst (ProofData.get_sg sign) | 
| 11519 | 1079 | (foldr (uncurry implies_intr_proof) (hyps', prf)))) | 
| 1080 | else MinProof (mk_min_proof ([], prf)); | |
| 12233 | 1081 | val head = (case strip_combt (fst (strip_combP prf)) of | 
| 11519 | 1082 | (PThm ((old_name, _), prf', prop', None), args') => | 
| 1083 | if (old_name="" orelse old_name=name) andalso | |
| 1084 | prop = prop' andalso args = args' then | |
| 1085 | PThm ((name, tags), prf', prop, None) | |
| 1086 | else | |
| 1087 | PThm ((name, tags), opt_prf, prop, None) | |
| 1088 | | _ => PThm ((name, tags), opt_prf, prop, None)) | |
| 1089 | in | |
| 1090 | proof_combP (proof_combt' (head, args), map Hyp hyps') | |
| 1091 | end; | |
| 1092 | ||
| 1093 | fun get_name_tags prop prf = (case strip_combt (fst (strip_combP prf)) of | |
| 1094 | (PThm ((name, tags), _, prop', _), _) => | |
| 1095 |         if prop=prop' then (name, tags) else ("", [])
 | |
| 1096 | | (PAxm (name, prop', _), _) => | |
| 1097 |         if prop=prop' then (name, []) else ("", [])
 | |
| 1098 |     | _ => ("", []));
 | |
| 1099 | ||
| 1100 | end; | |
| 1101 | ||
| 1102 | structure BasicProofterm : BASIC_PROOFTERM = Proofterm; | |
| 1103 | open BasicProofterm; |