| author | huffman | 
| Tue, 13 Jan 2009 10:18:23 -0800 | |
| changeset 29475 | c06d1b0a970f | 
| parent 29270 | 0eade173f77e | 
| child 29635 | 31d14e9fa0da | 
| permissions | -rw-r--r-- | 
| 11519 | 1 | (* Title: Pure/proofterm.ML | 
| 11540 | 2 | Author: Stefan Berghofer, TU Muenchen | 
| 11519 | 3 | |
| 11540 | 4 | LF style proof terms. | 
| 11519 | 5 | *) | 
| 6 | ||
| 11615 | 7 | infix 8 % %% %>; | 
| 11519 | 8 | |
| 9 | signature BASIC_PROOFTERM = | |
| 10 | sig | |
| 11543 
d61b913431c5
renamed `keep_derivs' to `proofs', and made an integer;
 wenzelm parents: 
11540diff
changeset | 11 | val proofs: int ref | 
| 11519 | 12 | |
| 13 | datatype proof = | |
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 14 | MinProof | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 15 | | PBound of int | 
| 11519 | 16 | | Abst of string * typ option * proof | 
| 17 | | AbsP of string * term option * proof | |
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 18 | | op % of proof * term option | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 19 | | op %% of proof * proof | 
| 11519 | 20 | | Hyp of term | 
| 21 | | PAxm of string * term * typ list option | |
| 22 | | Oracle of string * term * typ list option | |
| 28828 
c25dd83a6f9f
unified treatment of PAxm/Oracle/Promise in basic proof term operations;
 wenzelm parents: 
28815diff
changeset | 23 | | Promise of serial * term * typ list | 
| 28971 | 24 | | PThm of serial * ((string * term * typ list option) * proof_body lazy) | 
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 25 | and proof_body = PBody of | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 26 |     {oracles: (string * term) OrdList.T,
 | 
| 28971 | 27 | thms: (serial * (string * term * proof_body lazy)) OrdList.T, | 
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 28 | proof: proof} | 
| 11519 | 29 | |
| 11615 | 30 | val %> : proof * term -> proof | 
| 11519 | 31 | end; | 
| 32 | ||
| 33 | signature PROOFTERM = | |
| 34 | sig | |
| 35 | include BASIC_PROOFTERM | |
| 36 | ||
| 28815 | 37 | type oracle = string * term | 
| 28971 | 38 | type pthm = serial * (string * term * proof_body lazy) | 
| 39 | val force_body: proof_body lazy -> | |
| 28815 | 40 |     {oracles: oracle OrdList.T, thms: pthm OrdList.T, proof: proof}
 | 
| 28971 | 41 | val force_proof: proof_body lazy -> proof | 
| 28815 | 42 | val proof_of: proof_body -> proof | 
| 43 | val fold_body_thms: (string * term * proof_body -> 'a -> 'a) -> proof_body list -> 'a -> 'a | |
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 44 | val fold_proof_atoms: bool -> (proof -> 'a -> 'a) -> proof list -> 'a -> 'a | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 45 | |
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 46 | val oracle_ord: oracle * oracle -> order | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 47 | val thm_ord: pthm * pthm -> order | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 48 | val make_proof_body: proof -> proof_body | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 49 | val merge_oracles: oracle OrdList.T -> oracle OrdList.T -> oracle OrdList.T | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 50 | val make_oracles: proof -> oracle OrdList.T | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 51 | val merge_thms: pthm OrdList.T -> pthm OrdList.T -> pthm OrdList.T | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 52 | val make_thms: proof -> pthm OrdList.T | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 53 | |
| 11519 | 54 | (** primitive operations **) | 
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 55 | val proof_combt: proof * term list -> proof | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 56 | val proof_combt': proof * term option list -> proof | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 57 | val proof_combP: proof * proof list -> proof | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 58 | val strip_combt: proof -> proof * term option list | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 59 | val strip_combP: proof -> proof * proof list | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 60 | val strip_thm: proof_body -> proof_body | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 61 | val map_proof_terms_option: (term -> term option) -> (typ -> typ option) -> proof -> proof | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 62 | val map_proof_terms: (term -> term) -> (typ -> typ) -> proof -> proof | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 63 | val fold_proof_terms: (term -> 'a -> 'a) -> (typ -> 'a -> 'a) -> proof -> 'a -> 'a | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 64 | val maxidx_proof: proof -> int -> int | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 65 | val size_of_proof: proof -> int | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 66 | val change_type: typ list option -> proof -> proof | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 67 | val prf_abstract_over: term -> proof -> proof | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 68 | val prf_incr_bv: int -> int -> int -> int -> proof -> proof | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 69 | val incr_pboundvars: int -> int -> proof -> proof | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 70 | val prf_loose_bvar1: proof -> int -> bool | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 71 | val prf_loose_Pbvar1: proof -> int -> bool | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 72 | val prf_add_loose_bnos: int -> int -> proof -> int list * int list -> int list * int list | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 73 | val norm_proof: Envir.env -> proof -> proof | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 74 | val norm_proof': Envir.env -> proof -> proof | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 75 | val prf_subst_bounds: term list -> proof -> proof | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 76 | val prf_subst_pbounds: proof list -> proof -> proof | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 77 | val freeze_thaw_prf: proof -> proof * (proof -> proof) | 
| 11519 | 78 | |
| 79 | (** proof terms for specific inference rules **) | |
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 80 | val implies_intr_proof: term -> proof -> proof | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 81 | val forall_intr_proof: term -> string -> proof -> proof | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 82 | val varify_proof: term -> (string * sort) list -> proof -> proof | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 83 | val freezeT: term -> proof -> proof | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 84 | val rotate_proof: term list -> term -> int -> proof -> proof | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 85 | val permute_prems_prf: term list -> int -> int -> proof -> proof | 
| 19908 | 86 | val generalize: string list * string list -> int -> proof -> proof | 
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 87 | val instantiate: ((indexname * sort) * typ) list * ((indexname * typ) * term) list | 
| 16880 | 88 | -> proof -> proof | 
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 89 | val lift_proof: term -> int -> term -> proof -> proof | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 90 | val assumption_proof: term list -> term -> int -> proof -> proof | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 91 | val bicompose_proof: bool -> term list -> term list -> term list -> term option -> | 
| 23296 
25f28f9c28a3
Adapted Proofterm.bicompose_proof to Larry's changes in
 berghofe parents: 
23178diff
changeset | 92 | int -> int -> proof -> proof -> proof | 
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 93 | val equality_axms: (string * term) list | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 94 | val reflexive_axm: proof | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 95 | val symmetric_axm: proof | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 96 | val transitive_axm: proof | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 97 | val equal_intr_axm: proof | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 98 | val equal_elim_axm: proof | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 99 | val abstract_rule_axm: proof | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 100 | val combination_axm: proof | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 101 | val reflexive: proof | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 102 | val symmetric: proof -> proof | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 103 | val transitive: term -> typ -> proof -> proof -> proof | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 104 | val abstract_rule: term -> string -> proof -> proof | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 105 | val combination: term -> term -> term -> term -> typ -> proof -> proof -> proof | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 106 | val equal_intr: term -> term -> proof -> proof -> proof | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 107 | val equal_elim: term -> term -> proof -> proof -> proof | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 108 | val axm_proof: string -> term -> proof | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 109 | val oracle_proof: string -> term -> proof | 
| 28828 
c25dd83a6f9f
unified treatment of PAxm/Oracle/Promise in basic proof term operations;
 wenzelm parents: 
28815diff
changeset | 110 | val promise_proof: theory -> serial -> term -> proof | 
| 28846 | 111 | val fulfill_proof: theory -> (serial * proof) list -> proof_body -> proof_body | 
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 112 | val thm_proof: theory -> string -> term list -> term -> | 
| 28971 | 113 | (serial * proof) list lazy -> proof_body -> pthm * proof | 
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 114 | val get_name: term list -> term -> proof -> string | 
| 11519 | 115 | |
| 116 | (** rewriting on proof terms **) | |
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 117 | val add_prf_rrule: proof * proof -> theory -> theory | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 118 | val add_prf_rproc: (typ list -> proof -> proof option) -> theory -> theory | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 119 | val rewrite_proof: theory -> (proof * proof) list * | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 120 | (typ list -> proof -> proof option) list -> proof -> proof | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 121 | val rewrite_proof_notypes: (proof * proof) list * | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 122 | (typ list -> proof -> proof option) list -> proof -> proof | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 123 | val rew_proof: theory -> proof -> proof | 
| 11519 | 124 | end | 
| 125 | ||
| 126 | structure Proofterm : PROOFTERM = | |
| 127 | struct | |
| 128 | ||
| 11715 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 129 | open Envir; | 
| 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 130 | |
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 131 | |
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 132 | (***** datatype proof *****) | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 133 | |
| 11519 | 134 | datatype proof = | 
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 135 | MinProof | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 136 | | PBound of int | 
| 11519 | 137 | | Abst of string * typ option * proof | 
| 138 | | AbsP of string * term option * proof | |
| 12497 | 139 | | op % of proof * term option | 
| 140 | | op %% of proof * proof | |
| 11519 | 141 | | Hyp of term | 
| 142 | | PAxm of string * term * typ list option | |
| 143 | | Oracle of string * term * typ list option | |
| 28828 
c25dd83a6f9f
unified treatment of PAxm/Oracle/Promise in basic proof term operations;
 wenzelm parents: 
28815diff
changeset | 144 | | Promise of serial * term * typ list | 
| 28971 | 145 | | PThm of serial * ((string * term * typ list option) * proof_body lazy) | 
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 146 | and proof_body = PBody of | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 147 |   {oracles: (string * term) OrdList.T,
 | 
| 28971 | 148 | thms: (serial * (string * term * proof_body lazy)) OrdList.T, | 
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 149 | proof: proof}; | 
| 11519 | 150 | |
| 28815 | 151 | type oracle = string * term; | 
| 28971 | 152 | type pthm = serial * (string * term * proof_body lazy); | 
| 28815 | 153 | |
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 154 | val force_body = Lazy.force #> (fn PBody args => args); | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 155 | val force_proof = #proof o force_body; | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 156 | |
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 157 | fun proof_of (PBody {proof, ...}) = proof;
 | 
| 17017 | 158 | |
| 159 | ||
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 160 | (***** proof atoms *****) | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 161 | |
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 162 | fun fold_body_thms f = | 
| 11519 | 163 | let | 
| 28815 | 164 |     fun app (PBody {thms, ...}) = thms |> fold (fn (i, (name, prop, body)) => fn (x, seen) =>
 | 
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 165 | if Inttab.defined seen i then (x, seen) | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 166 | else | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 167 | let | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 168 | val body' = Lazy.force body; | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 169 | val (x', seen') = app body' (x, Inttab.update (i, ()) seen); | 
| 28815 | 170 | in (f (name, prop, body') x', seen') end); | 
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 171 | in fn bodies => fn x => #1 (fold app bodies (x, Inttab.empty)) end; | 
| 11519 | 172 | |
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 173 | fun fold_proof_atoms all f = | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 174 | let | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 175 | fun app (Abst (_, _, prf)) = app prf | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 176 | | app (AbsP (_, _, prf)) = app prf | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 177 | | app (prf % _) = app prf | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 178 | | app (prf1 %% prf2) = app prf1 #> app prf2 | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 179 | | app (prf as PThm (i, (_, body))) = (fn (x, seen) => | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 180 | if Inttab.defined seen i then (x, seen) | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 181 | else | 
| 28815 | 182 | let val (x', seen') = | 
| 183 | (if all then app (force_proof body) else I) (x, Inttab.update (i, ()) seen) | |
| 184 | in (f prf x', seen') end) | |
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 185 | | app prf = (fn (x, seen) => (f prf x, seen)); | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 186 | in fn prfs => fn x => #1 (fold app prfs (x, Inttab.empty)) end; | 
| 19357 
dade85a75c9f
Added alternative version of thms_of_proof that does not recursively
 berghofe parents: 
19304diff
changeset | 187 | |
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 188 | |
| 28815 | 189 | (* proof body *) | 
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 190 | |
| 29269 
5c25a2012975
moved term order operations to structure TermOrd (cf. Pure/term_ord.ML);
 wenzelm parents: 
29265diff
changeset | 191 | val oracle_ord = prod_ord fast_string_ord TermOrd.fast_term_ord; | 
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 192 | fun thm_ord ((i, _): pthm, (j, _)) = int_ord (j, i); | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 193 | |
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 194 | fun make_body prf = | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 195 | let | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 196 | val (oracles, thms) = fold_proof_atoms false | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 197 | (fn Oracle (s, prop, _) => apfst (cons (s, prop)) | 
| 28815 | 198 | | PThm (i, ((name, prop, _), body)) => apsnd (cons (i, (name, prop, body))) | 
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 199 | | _ => I) [prf] ([], []); | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 200 | in (OrdList.make oracle_ord oracles, OrdList.make thm_ord thms) end; | 
| 17017 | 201 | |
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 202 | fun make_proof_body prf = | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 203 | let val (oracles, thms) = make_body prf | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 204 |   in PBody {oracles = oracles, thms = thms, proof = prf} end;
 | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 205 | |
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 206 | val make_oracles = #1 o make_body; | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 207 | val make_thms = #2 o make_body; | 
| 11519 | 208 | |
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 209 | val merge_oracles = OrdList.union oracle_ord; | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 210 | val merge_thms = OrdList.union thm_ord; | 
| 11519 | 211 | |
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 212 | fun merge_body (oracles1, thms1) (oracles2, thms2) = | 
| 28815 | 213 | (merge_oracles oracles1 oracles2, merge_thms thms1 thms2); | 
| 11519 | 214 | |
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 215 | |
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 216 | (***** proof objects with different levels of detail *****) | 
| 11519 | 217 | |
| 15531 | 218 | fun (prf %> t) = prf % SOME t; | 
| 11519 | 219 | |
| 15570 | 220 | val proof_combt = Library.foldl (op %>); | 
| 221 | val proof_combt' = Library.foldl (op %); | |
| 222 | val proof_combP = Library.foldl (op %%); | |
| 11519 | 223 | |
| 21646 
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
 wenzelm parents: 
20853diff
changeset | 224 | fun strip_combt prf = | 
| 11615 | 225 | let fun stripc (prf % t, ts) = stripc (prf, t::ts) | 
| 21646 
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
 wenzelm parents: 
20853diff
changeset | 226 | | stripc x = x | 
| 11519 | 227 | in stripc (prf, []) end; | 
| 228 | ||
| 21646 
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
 wenzelm parents: 
20853diff
changeset | 229 | fun strip_combP prf = | 
| 11615 | 230 | let fun stripc (prf %% prf', prfs) = stripc (prf, prf'::prfs) | 
| 11519 | 231 | | stripc x = x | 
| 232 | in stripc (prf, []) end; | |
| 233 | ||
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 234 | fun strip_thm (body as PBody {proof, ...}) =
 | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 235 | (case strip_combt (fst (strip_combP proof)) of | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 236 | (PThm (_, (_, body')), _) => Lazy.force body' | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 237 | | _ => body); | 
| 11519 | 238 | |
| 23178 | 239 | val mk_Abst = fold_rev (fn (s, T:typ) => fn prf => Abst (s, NONE, prf)); | 
| 15531 | 240 | fun mk_AbsP (i, prf) = funpow i (fn prf => AbsP ("H", NONE, prf)) prf;
 | 
| 11519 | 241 | |
| 20000 | 242 | fun apsome f NONE = raise SAME | 
| 243 | | apsome f (SOME x) = (case f x of NONE => raise SAME | some => some); | |
| 244 | ||
| 15531 | 245 | fun apsome' f NONE = raise SAME | 
| 246 | | apsome' f (SOME x) = SOME (f x); | |
| 11715 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 247 | |
| 20000 | 248 | fun map_proof_terms_option f g = | 
| 249 | let | |
| 250 | fun map_typs (T :: Ts) = | |
| 251 | (case g T of | |
| 252 | NONE => T :: map_typs Ts | |
| 253 | | SOME T' => T' :: (map_typs Ts handle SAME => Ts)) | |
| 254 | | map_typs [] = raise SAME; | |
| 255 | ||
| 256 | fun mapp (Abst (s, T, prf)) = (Abst (s, apsome g T, mapph prf) | |
| 257 | handle SAME => Abst (s, T, mapp prf)) | |
| 258 | | mapp (AbsP (s, t, prf)) = (AbsP (s, apsome f t, mapph prf) | |
| 259 | handle SAME => AbsP (s, t, mapp prf)) | |
| 260 | | mapp (prf % t) = (mapp prf % (apsome f t handle SAME => t) | |
| 261 | handle SAME => prf % apsome f t) | |
| 262 | | mapp (prf1 %% prf2) = (mapp prf1 %% mapph prf2 | |
| 263 | handle SAME => prf1 %% mapp prf2) | |
| 28828 
c25dd83a6f9f
unified treatment of PAxm/Oracle/Promise in basic proof term operations;
 wenzelm parents: 
28815diff
changeset | 264 | | mapp (PAxm (a, prop, SOME Ts)) = PAxm (a, prop, SOME (map_typs Ts)) | 
| 
c25dd83a6f9f
unified treatment of PAxm/Oracle/Promise in basic proof term operations;
 wenzelm parents: 
28815diff
changeset | 265 | | mapp (Oracle (a, prop, SOME Ts)) = Oracle (a, prop, SOME (map_typs Ts)) | 
| 
c25dd83a6f9f
unified treatment of PAxm/Oracle/Promise in basic proof term operations;
 wenzelm parents: 
28815diff
changeset | 266 | | mapp (Promise (i, prop, Ts)) = Promise (i, prop, map_typs Ts) | 
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 267 | | mapp (PThm (i, ((a, prop, SOME Ts), body))) = | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 268 | PThm (i, ((a, prop, SOME (map_typs Ts)), body)) | 
| 20000 | 269 | | mapp _ = raise SAME | 
| 270 | and mapph prf = (mapp prf handle SAME => prf) | |
| 271 | ||
| 272 | in mapph end; | |
| 273 | ||
| 22662 | 274 | fun same eq f x = | 
| 11715 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 275 | let val x' = f x | 
| 22662 | 276 | in if eq (x, x') then raise SAME else x' end; | 
| 11715 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 277 | |
| 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 278 | fun map_proof_terms f g = | 
| 20000 | 279 | map_proof_terms_option | 
| 22662 | 280 | (fn t => SOME (same (op =) f t) handle SAME => NONE) | 
| 281 | (fn T => SOME (same (op =) g T) handle SAME => NONE); | |
| 11519 | 282 | |
| 20147 | 283 | fun fold_proof_terms f g (Abst (_, SOME T, prf)) = g T #> fold_proof_terms f g prf | 
| 284 | | fold_proof_terms f g (Abst (_, NONE, prf)) = fold_proof_terms f g prf | |
| 285 | | fold_proof_terms f g (AbsP (_, SOME t, prf)) = f t #> fold_proof_terms f g prf | |
| 286 | | fold_proof_terms f g (AbsP (_, NONE, prf)) = fold_proof_terms f g prf | |
| 287 | | fold_proof_terms f g (prf % SOME t) = fold_proof_terms f g prf #> f t | |
| 288 | | fold_proof_terms f g (prf % NONE) = fold_proof_terms f g prf | |
| 289 | | fold_proof_terms f g (prf1 %% prf2) = | |
| 290 | fold_proof_terms f g prf1 #> fold_proof_terms f g prf2 | |
| 20159 | 291 | | fold_proof_terms _ g (PAxm (_, _, SOME Ts)) = fold g Ts | 
| 28828 
c25dd83a6f9f
unified treatment of PAxm/Oracle/Promise in basic proof term operations;
 wenzelm parents: 
28815diff
changeset | 292 | | fold_proof_terms _ g (Oracle (_, _, SOME Ts)) = fold g Ts | 
| 
c25dd83a6f9f
unified treatment of PAxm/Oracle/Promise in basic proof term operations;
 wenzelm parents: 
28815diff
changeset | 293 | | fold_proof_terms _ g (Promise (_, _, Ts)) = fold g Ts | 
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 294 | | fold_proof_terms _ g (PThm (_, ((_, _, SOME Ts), _))) = fold g Ts | 
| 20147 | 295 | | fold_proof_terms _ _ _ = I; | 
| 11519 | 296 | |
| 20300 | 297 | fun maxidx_proof prf = fold_proof_terms Term.maxidx_term Term.maxidx_typ prf; | 
| 12868 | 298 | |
| 13744 | 299 | fun size_of_proof (Abst (_, _, prf)) = 1 + size_of_proof prf | 
| 13749 | 300 | | size_of_proof (AbsP (_, t, prf)) = 1 + size_of_proof prf | 
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 301 | | size_of_proof (prf % _) = 1 + size_of_proof prf | 
| 13744 | 302 | | size_of_proof (prf1 %% prf2) = size_of_proof prf1 + size_of_proof prf2 | 
| 303 | | size_of_proof _ = 1; | |
| 304 | ||
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 305 | fun change_type opTs (PAxm (name, prop, _)) = PAxm (name, prop, opTs) | 
| 12907 
27e6d344d724
New function change_type for changing type assignments of theorems,
 berghofe parents: 
12890diff
changeset | 306 | | change_type opTs (Oracle (name, prop, _)) = Oracle (name, prop, opTs) | 
| 28828 
c25dd83a6f9f
unified treatment of PAxm/Oracle/Promise in basic proof term operations;
 wenzelm parents: 
28815diff
changeset | 307 | | change_type opTs (Promise _) = error "change_type: unexpected promise" | 
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 308 | | change_type opTs (PThm (i, ((name, prop, _), body))) = PThm (i, ((name, prop, opTs), body)) | 
| 12907 
27e6d344d724
New function change_type for changing type assignments of theorems,
 berghofe parents: 
12890diff
changeset | 309 | | change_type _ prf = prf; | 
| 
27e6d344d724
New function change_type for changing type assignments of theorems,
 berghofe parents: 
12890diff
changeset | 310 | |
| 11519 | 311 | |
| 312 | (***** utilities *****) | |
| 313 | ||
| 314 | fun strip_abs (_::Ts) (Abs (_, _, t)) = strip_abs Ts t | |
| 315 | | strip_abs _ t = t; | |
| 316 | ||
| 15570 | 317 | fun mk_abs Ts t = Library.foldl (fn (t', T) => Abs ("", T, t')) (t, Ts);
 | 
| 11519 | 318 | |
| 319 | ||
| 21646 
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
 wenzelm parents: 
20853diff
changeset | 320 | (*Abstraction of a proof term over its occurrences of v, | 
| 11519 | 321 | which must contain no loose bound variables. | 
| 322 | The resulting proof term is ready to become the body of an Abst.*) | |
| 323 | ||
| 324 | fun prf_abstract_over v = | |
| 325 | let | |
| 11715 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 326 | 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 | 327 | (case u of | 
| 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 328 | 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 | 329 | | 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 | 330 | | _ => raise SAME) | 
| 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 331 | and absth' lev t = (abst' lev t handle SAME => t); | 
| 11519 | 332 | |
| 11715 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 333 | fun abst lev (AbsP (a, t, prf)) = | 
| 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 334 | (AbsP (a, apsome' (abst' lev) t, absth lev prf) | 
| 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 335 | handle SAME => AbsP (a, t, abst lev prf)) | 
| 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 336 | | 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 | 337 | | abst lev (prf1 %% prf2) = (abst lev prf1 %% absth lev prf2 | 
| 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 338 | handle SAME => prf1 %% abst lev prf2) | 
| 15570 | 339 | | abst lev (prf % t) = (abst lev prf % Option.map (absth' lev) t | 
| 11715 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 340 | handle SAME => prf % apsome' (abst' lev) t) | 
| 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 341 | | abst _ _ = raise SAME | 
| 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 342 | and absth lev prf = (abst lev prf handle SAME => prf) | 
| 11519 | 343 | |
| 11715 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 344 | in absth 0 end; | 
| 11519 | 345 | |
| 346 | ||
| 347 | (*increments a proof term's non-local bound variables | |
| 348 | required when moving a proof term within abstractions | |
| 349 | inc is increment for bound variables | |
| 350 | lev is level at which a bound variable is considered 'loose'*) | |
| 351 | ||
| 352 | fun incr_bv' inct tlev t = incr_bv (inct, tlev, t); | |
| 353 | ||
| 11715 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 354 | fun prf_incr_bv' incP inct Plev tlev (PBound i) = | 
| 21646 
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
 wenzelm parents: 
20853diff
changeset | 355 | if i >= Plev then PBound (i+incP) else raise SAME | 
| 11715 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 356 | | prf_incr_bv' incP inct Plev tlev (AbsP (a, t, body)) = | 
| 22662 | 357 | (AbsP (a, apsome' (same (op =) (incr_bv' inct tlev)) t, | 
| 11715 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 358 | 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 | 359 | 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 | 360 | | 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 | 361 | Abst (a, T, prf_incr_bv' incP inct Plev (tlev+1) body) | 
| 21646 
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
 wenzelm parents: 
20853diff
changeset | 362 | | prf_incr_bv' incP inct Plev tlev (prf %% prf') = | 
| 11715 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 363 | (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 | 364 | handle SAME => prf %% prf_incr_bv' incP inct Plev tlev prf') | 
| 21646 
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
 wenzelm parents: 
20853diff
changeset | 365 | | prf_incr_bv' incP inct Plev tlev (prf % t) = | 
| 15570 | 366 | (prf_incr_bv' incP inct Plev tlev prf % Option.map (incr_bv' inct tlev) t | 
| 22662 | 367 | handle SAME => prf % apsome' (same (op =) (incr_bv' inct tlev)) t) | 
| 11715 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 368 | | prf_incr_bv' _ _ _ _ _ = raise SAME | 
| 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 369 | and prf_incr_bv incP inct Plev tlev prf = | 
| 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 370 | (prf_incr_bv' incP inct Plev tlev prf handle SAME => prf); | 
| 11519 | 371 | |
| 372 | fun incr_pboundvars 0 0 prf = prf | |
| 373 | | incr_pboundvars incP inct prf = prf_incr_bv incP inct 0 0 prf; | |
| 374 | ||
| 375 | ||
| 11615 | 376 | fun prf_loose_bvar1 (prf1 %% prf2) k = prf_loose_bvar1 prf1 k orelse prf_loose_bvar1 prf2 k | 
| 15531 | 377 | | prf_loose_bvar1 (prf % SOME t) k = prf_loose_bvar1 prf k orelse loose_bvar1 (t, k) | 
| 378 | | prf_loose_bvar1 (_ % NONE) _ = true | |
| 379 | | prf_loose_bvar1 (AbsP (_, SOME t, prf)) k = loose_bvar1 (t, k) orelse prf_loose_bvar1 prf k | |
| 380 | | prf_loose_bvar1 (AbsP (_, NONE, _)) k = true | |
| 11519 | 381 | | prf_loose_bvar1 (Abst (_, _, prf)) k = prf_loose_bvar1 prf (k+1) | 
| 382 | | prf_loose_bvar1 _ _ = false; | |
| 383 | ||
| 384 | fun prf_loose_Pbvar1 (PBound i) k = i = k | |
| 11615 | 385 | | prf_loose_Pbvar1 (prf1 %% prf2) k = prf_loose_Pbvar1 prf1 k orelse prf_loose_Pbvar1 prf2 k | 
| 386 | | prf_loose_Pbvar1 (prf % _) k = prf_loose_Pbvar1 prf k | |
| 11519 | 387 | | prf_loose_Pbvar1 (AbsP (_, _, prf)) k = prf_loose_Pbvar1 prf (k+1) | 
| 388 | | prf_loose_Pbvar1 (Abst (_, _, prf)) k = prf_loose_Pbvar1 prf k | |
| 389 | | prf_loose_Pbvar1 _ _ = false; | |
| 390 | ||
| 12279 | 391 | fun prf_add_loose_bnos plev tlev (PBound i) (is, js) = | 
| 17492 | 392 | if i < plev then (is, js) else (insert (op =) (i-plev) is, js) | 
| 12279 | 393 | | prf_add_loose_bnos plev tlev (prf1 %% prf2) p = | 
| 394 | prf_add_loose_bnos plev tlev prf2 | |
| 395 | (prf_add_loose_bnos plev tlev prf1 p) | |
| 396 | | prf_add_loose_bnos plev tlev (prf % opt) (is, js) = | |
| 397 | prf_add_loose_bnos plev tlev prf (case opt of | |
| 17492 | 398 | NONE => (is, insert (op =) ~1 js) | 
| 15531 | 399 | | SOME t => (is, add_loose_bnos (t, tlev, js))) | 
| 12279 | 400 | | prf_add_loose_bnos plev tlev (AbsP (_, opt, prf)) (is, js) = | 
| 401 | prf_add_loose_bnos (plev+1) tlev prf (case opt of | |
| 17492 | 402 | NONE => (is, insert (op =) ~1 js) | 
| 15531 | 403 | | SOME t => (is, add_loose_bnos (t, tlev, js))) | 
| 12279 | 404 | | prf_add_loose_bnos plev tlev (Abst (_, _, prf)) p = | 
| 405 | prf_add_loose_bnos plev (tlev+1) prf p | |
| 406 | | prf_add_loose_bnos _ _ _ _ = ([], []); | |
| 407 | ||
| 11519 | 408 | |
| 409 | (**** substitutions ****) | |
| 410 | ||
| 20509 | 411 | fun del_conflicting_tvars envT T = TermSubst.instantiateT | 
| 19482 
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
 wenzelm parents: 
19357diff
changeset | 412 | (map_filter (fn ixnS as (_, S) => | 
| 26328 | 413 | (Type.lookup envT ixnS; NONE) handle TYPE _ => | 
| 29270 
0eade173f77e
moved old add_type_XXX, add_term_XXX etc. to structure OldTerm;
 wenzelm parents: 
29269diff
changeset | 414 |         SOME (ixnS, TFree ("'dummy", S))) (OldTerm.typ_tvars T)) T;
 | 
| 18316 
4b62e0cb3aa8
Improved norm_proof to handle proofs containing term (type) variables
 berghofe parents: 
18030diff
changeset | 415 | |
| 20509 | 416 | fun del_conflicting_vars env t = TermSubst.instantiate | 
| 19482 
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
 wenzelm parents: 
19357diff
changeset | 417 | (map_filter (fn ixnS as (_, S) => | 
| 26328 | 418 | (Type.lookup (type_env env) ixnS; NONE) handle TYPE _ => | 
| 29270 
0eade173f77e
moved old add_type_XXX, add_term_XXX etc. to structure OldTerm;
 wenzelm parents: 
29269diff
changeset | 419 |         SOME (ixnS, TFree ("'dummy", S))) (OldTerm.term_tvars t),
 | 
| 19482 
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
 wenzelm parents: 
19357diff
changeset | 420 | map_filter (fn Var (ixnT as (_, T)) => | 
| 18316 
4b62e0cb3aa8
Improved norm_proof to handle proofs containing term (type) variables
 berghofe parents: 
18030diff
changeset | 421 | (Envir.lookup (env, ixnT); NONE) handle TYPE _ => | 
| 29265 
5b4247055bd7
moved old add_term_vars, add_term_frees etc. to structure OldTerm;
 wenzelm parents: 
29261diff
changeset | 422 |         SOME (ixnT, Free ("dummy", T))) (OldTerm.term_vars t)) t;
 | 
| 18316 
4b62e0cb3aa8
Improved norm_proof to handle proofs containing term (type) variables
 berghofe parents: 
18030diff
changeset | 423 | |
| 11519 | 424 | fun norm_proof env = | 
| 425 | let | |
| 12497 | 426 | val envT = type_env env; | 
| 18316 
4b62e0cb3aa8
Improved norm_proof to handle proofs containing term (type) variables
 berghofe parents: 
18030diff
changeset | 427 |     fun msg s = warning ("type conflict in norm_proof:\n" ^ s);
 | 
| 
4b62e0cb3aa8
Improved norm_proof to handle proofs containing term (type) variables
 berghofe parents: 
18030diff
changeset | 428 | fun htype f t = f env t handle TYPE (s, _, _) => | 
| 
4b62e0cb3aa8
Improved norm_proof to handle proofs containing term (type) variables
 berghofe parents: 
18030diff
changeset | 429 | (msg s; f env (del_conflicting_vars env t)); | 
| 
4b62e0cb3aa8
Improved norm_proof to handle proofs containing term (type) variables
 berghofe parents: 
18030diff
changeset | 430 | fun htypeT f T = f envT T handle TYPE (s, _, _) => | 
| 
4b62e0cb3aa8
Improved norm_proof to handle proofs containing term (type) variables
 berghofe parents: 
18030diff
changeset | 431 | (msg s; f envT (del_conflicting_tvars envT T)); | 
| 
4b62e0cb3aa8
Improved norm_proof to handle proofs containing term (type) variables
 berghofe parents: 
18030diff
changeset | 432 | fun htypeTs f Ts = f envT Ts handle TYPE (s, _, _) => | 
| 
4b62e0cb3aa8
Improved norm_proof to handle proofs containing term (type) variables
 berghofe parents: 
18030diff
changeset | 433 | (msg s; f envT (map (del_conflicting_tvars envT) Ts)); | 
| 
4b62e0cb3aa8
Improved norm_proof to handle proofs containing term (type) variables
 berghofe parents: 
18030diff
changeset | 434 | fun norm (Abst (s, T, prf)) = (Abst (s, apsome' (htypeT norm_type_same) T, normh prf) | 
| 11519 | 435 | handle SAME => Abst (s, T, norm prf)) | 
| 18316 
4b62e0cb3aa8
Improved norm_proof to handle proofs containing term (type) variables
 berghofe parents: 
18030diff
changeset | 436 | | norm (AbsP (s, t, prf)) = (AbsP (s, apsome' (htype norm_term_same) t, normh prf) | 
| 11519 | 437 | handle SAME => AbsP (s, t, norm prf)) | 
| 18316 
4b62e0cb3aa8
Improved norm_proof to handle proofs containing term (type) variables
 berghofe parents: 
18030diff
changeset | 438 | | norm (prf % t) = (norm prf % Option.map (htype norm_term) t | 
| 
4b62e0cb3aa8
Improved norm_proof to handle proofs containing term (type) variables
 berghofe parents: 
18030diff
changeset | 439 | handle SAME => prf % apsome' (htype norm_term_same) t) | 
| 11615 | 440 | | norm (prf1 %% prf2) = (norm prf1 %% normh prf2 | 
| 441 | handle SAME => prf1 %% norm prf2) | |
| 18316 
4b62e0cb3aa8
Improved norm_proof to handle proofs containing term (type) variables
 berghofe parents: 
18030diff
changeset | 442 | | norm (PAxm (s, prop, Ts)) = PAxm (s, prop, apsome' (htypeTs norm_types_same) Ts) | 
| 28828 
c25dd83a6f9f
unified treatment of PAxm/Oracle/Promise in basic proof term operations;
 wenzelm parents: 
28815diff
changeset | 443 | | norm (Oracle (s, prop, Ts)) = Oracle (s, prop, apsome' (htypeTs norm_types_same) Ts) | 
| 
c25dd83a6f9f
unified treatment of PAxm/Oracle/Promise in basic proof term operations;
 wenzelm parents: 
28815diff
changeset | 444 | | norm (Promise (i, prop, Ts)) = Promise (i, prop, htypeTs norm_types_same Ts) | 
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 445 | | norm (PThm (i, ((s, t, Ts), body))) = | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 446 | PThm (i, ((s, t, apsome' (htypeTs norm_types_same) Ts), body)) | 
| 11519 | 447 | | norm _ = raise SAME | 
| 448 | and normh prf = (norm prf handle SAME => prf); | |
| 449 | in normh end; | |
| 450 | ||
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 451 | |
| 11519 | 452 | (***** Remove some types in proof term (to save space) *****) | 
| 453 | ||
| 454 | fun remove_types (Abs (s, _, t)) = Abs (s, dummyT, remove_types t) | |
| 455 | | remove_types (t $ u) = remove_types t $ remove_types u | |
| 456 | | remove_types (Const (s, _)) = Const (s, dummyT) | |
| 457 | | remove_types t = t; | |
| 458 | ||
| 459 | fun remove_types_env (Envir.Envir {iTs, asol, maxidx}) =
 | |
| 15797 | 460 |   Envir.Envir {iTs = iTs, asol = Vartab.map (apsnd remove_types) asol,
 | 
| 461 | maxidx = maxidx}; | |
| 11519 | 462 | |
| 463 | fun norm_proof' env prf = norm_proof (remove_types_env env) prf; | |
| 464 | ||
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 465 | |
| 11519 | 466 | (**** substitution of bound variables ****) | 
| 467 | ||
| 468 | fun prf_subst_bounds args prf = | |
| 469 | let | |
| 470 | val n = length args; | |
| 471 | fun subst' lev (Bound i) = | |
| 472 | (if i<lev then raise SAME (*var is locally bound*) | |
| 473 | else incr_boundvars lev (List.nth (args, i-lev)) | |
| 474 | handle Subscript => Bound (i-n) (*loose: change it*)) | |
| 475 | | subst' lev (Abs (a, T, body)) = Abs (a, T, subst' (lev+1) body) | |
| 476 | | subst' lev (f $ t) = (subst' lev f $ substh' lev t | |
| 477 | handle SAME => f $ subst' lev t) | |
| 478 | | subst' _ _ = raise SAME | |
| 479 | and substh' lev t = (subst' lev t handle SAME => t); | |
| 480 | ||
| 481 | fun subst lev (AbsP (a, t, body)) = (AbsP (a, apsome' (subst' lev) t, substh lev body) | |
| 482 | handle SAME => AbsP (a, t, subst lev body)) | |
| 483 | | subst lev (Abst (a, T, body)) = Abst (a, T, subst (lev+1) body) | |
| 11615 | 484 | | subst lev (prf %% prf') = (subst lev prf %% substh lev prf' | 
| 485 | handle SAME => prf %% subst lev prf') | |
| 15570 | 486 | | subst lev (prf % t) = (subst lev prf % Option.map (substh' lev) t | 
| 11615 | 487 | handle SAME => prf % apsome' (subst' lev) t) | 
| 11519 | 488 | | subst _ _ = raise SAME | 
| 489 | and substh lev prf = (subst lev prf handle SAME => prf) | |
| 490 | in case args of [] => prf | _ => substh 0 prf end; | |
| 491 | ||
| 492 | fun prf_subst_pbounds args prf = | |
| 493 | let | |
| 494 | val n = length args; | |
| 495 | fun subst (PBound i) Plev tlev = | |
| 20147 | 496 | (if i < Plev then raise SAME (*var is locally bound*) | 
| 11519 | 497 | else incr_pboundvars Plev tlev (List.nth (args, i-Plev)) | 
| 498 | handle Subscript => PBound (i-n) (*loose: change it*)) | |
| 499 | | subst (AbsP (a, t, body)) Plev tlev = AbsP (a, t, subst body (Plev+1) tlev) | |
| 500 | | subst (Abst (a, T, body)) Plev tlev = Abst (a, T, subst body Plev (tlev+1)) | |
| 11615 | 501 | | subst (prf %% prf') Plev tlev = (subst prf Plev tlev %% substh prf' Plev tlev | 
| 502 | handle SAME => prf %% subst prf' Plev tlev) | |
| 503 | | subst (prf % t) Plev tlev = subst prf Plev tlev % t | |
| 11519 | 504 | | subst prf _ _ = raise SAME | 
| 505 | and substh prf Plev tlev = (subst prf Plev tlev handle SAME => prf) | |
| 506 | in case args of [] => prf | _ => substh prf 0 0 end; | |
| 507 | ||
| 508 | ||
| 509 | (**** Freezing and thawing of variables in proof terms ****) | |
| 510 | ||
| 511 | fun frzT names = | |
| 17325 | 512 | map_type_tvar (fn (ixn, xs) => TFree ((the o AList.lookup (op =) names) ixn, xs)); | 
| 11519 | 513 | |
| 514 | fun thawT names = | |
| 17325 | 515 | map_type_tfree (fn (s, xs) => case AList.lookup (op =) names s of | 
| 15531 | 516 | NONE => TFree (s, xs) | 
| 517 | | SOME ixn => TVar (ixn, xs)); | |
| 11519 | 518 | |
| 519 | fun freeze names names' (t $ u) = | |
| 520 | freeze names names' t $ freeze names names' u | |
| 521 | | freeze names names' (Abs (s, T, t)) = | |
| 522 | Abs (s, frzT names' T, freeze names names' t) | |
| 523 | | freeze names names' (Const (s, T)) = Const (s, frzT names' T) | |
| 524 | | freeze names names' (Free (s, T)) = Free (s, frzT names' T) | |
| 525 | | freeze names names' (Var (ixn, T)) = | |
| 17325 | 526 | Free ((the o AList.lookup (op =) names) ixn, frzT names' T) | 
| 11519 | 527 | | freeze names names' t = t; | 
| 528 | ||
| 529 | fun thaw names names' (t $ u) = | |
| 530 | thaw names names' t $ thaw names names' u | |
| 531 | | thaw names names' (Abs (s, T, t)) = | |
| 532 | Abs (s, thawT names' T, thaw names names' t) | |
| 533 | | thaw names names' (Const (s, T)) = Const (s, thawT names' T) | |
| 21646 
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
 wenzelm parents: 
20853diff
changeset | 534 | | thaw names names' (Free (s, T)) = | 
| 11519 | 535 | let val T' = thawT names' T | 
| 17325 | 536 | in case AList.lookup (op =) names s of | 
| 15531 | 537 | NONE => Free (s, T') | 
| 538 | | SOME ixn => Var (ixn, T') | |
| 11519 | 539 | end | 
| 540 | | thaw names names' (Var (ixn, T)) = Var (ixn, thawT names' T) | |
| 541 | | thaw names names' t = t; | |
| 542 | ||
| 543 | fun freeze_thaw_prf prf = | |
| 544 | let | |
| 545 | val (fs, Tfs, vs, Tvs) = fold_proof_terms | |
| 20147 | 546 | (fn t => fn (fs, Tfs, vs, Tvs) => | 
| 29261 | 547 | (Term.add_free_names t fs, Term.add_tfree_names t Tfs, | 
| 548 | Term.add_var_names t vs, Term.add_tvar_names t Tvs)) | |
| 20147 | 549 | (fn T => fn (fs, Tfs, vs, Tvs) => | 
| 29261 | 550 | (fs, Term.add_tfree_namesT T Tfs, | 
| 551 | vs, Term.add_tvar_namesT T Tvs)) | |
| 20147 | 552 | prf ([], [], [], []); | 
| 29261 | 553 | val names = vs ~~ Name.variant_list fs (map fst vs); | 
| 20071 
8f3e1ddb50e6
replaced Term.variant(list) by Name.variant(_list);
 wenzelm parents: 
20000diff
changeset | 554 | val names' = Tvs ~~ Name.variant_list Tfs (map fst Tvs); | 
| 11519 | 555 | val rnames = map swap names; | 
| 556 | val rnames' = map swap names'; | |
| 557 | in | |
| 558 | (map_proof_terms (freeze names names') (frzT names') prf, | |
| 559 | map_proof_terms (thaw rnames rnames') (thawT rnames')) | |
| 560 | end; | |
| 561 | ||
| 562 | ||
| 563 | (***** implication introduction *****) | |
| 564 | ||
| 565 | fun implies_intr_proof h prf = | |
| 566 | let | |
| 11715 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 567 | fun abshyp i (Hyp t) = if h aconv t then PBound i else raise SAME | 
| 11519 | 568 | | abshyp i (Abst (s, T, prf)) = Abst (s, T, abshyp i prf) | 
| 569 | | abshyp i (AbsP (s, t, prf)) = AbsP (s, t, abshyp (i+1) prf) | |
| 11615 | 570 | | abshyp i (prf % t) = abshyp i prf % t | 
| 11715 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 571 | | abshyp i (prf1 %% prf2) = (abshyp i prf1 %% abshyph i prf2 | 
| 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 572 | handle SAME => prf1 %% abshyp i prf2) | 
| 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 573 | | abshyp _ _ = raise SAME | 
| 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 574 | and abshyph i prf = (abshyp i prf handle SAME => prf) | 
| 11519 | 575 | in | 
| 15531 | 576 |     AbsP ("H", NONE (*h*), abshyph 0 prf)
 | 
| 11519 | 577 | end; | 
| 578 | ||
| 579 | ||
| 580 | (***** forall introduction *****) | |
| 581 | ||
| 15531 | 582 | fun forall_intr_proof x a prf = Abst (a, NONE, prf_abstract_over x prf); | 
| 11519 | 583 | |
| 584 | ||
| 585 | (***** varify *****) | |
| 586 | ||
| 587 | fun varify_proof t fixed prf = | |
| 588 | let | |
| 19304 | 589 | val fs = Term.fold_types (Term.fold_atyps | 
| 590 | (fn TFree v => if member (op =) fixed v then I else insert (op =) v | _ => I)) t []; | |
| 29261 | 591 | val used = Name.context | 
| 592 | |> fold_types (fold_atyps (fn TVar ((a, _), _) => Name.declare a | _ => I)) t; | |
| 593 | val fmap = fs ~~ (#1 (Name.variants (map fst fs) used)); | |
| 11519 | 594 | fun thaw (f as (a, S)) = | 
| 17314 | 595 | (case AList.lookup (op =) fmap f of | 
| 15531 | 596 | NONE => TFree f | 
| 597 | | SOME b => TVar ((b, 0), S)); | |
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 598 | in map_proof_terms (map_types (map_type_tfree thaw)) (map_type_tfree thaw) prf end; | 
| 11519 | 599 | |
| 600 | ||
| 601 | local | |
| 602 | ||
| 603 | fun new_name (ix, (pairs,used)) = | |
| 20071 
8f3e1ddb50e6
replaced Term.variant(list) by Name.variant(_list);
 wenzelm parents: 
20000diff
changeset | 604 | let val v = Name.variant used (string_of_indexname ix) | 
| 11519 | 605 | in ((ix, v) :: pairs, v :: used) end; | 
| 606 | ||
| 17325 | 607 | fun freeze_one alist (ix, sort) = (case AList.lookup (op =) alist ix of | 
| 15531 | 608 | NONE => TVar (ix, sort) | 
| 609 | | SOME name => TFree (name, sort)); | |
| 11519 | 610 | |
| 611 | in | |
| 612 | ||
| 613 | fun freezeT t prf = | |
| 614 | let | |
| 29270 
0eade173f77e
moved old add_type_XXX, add_term_XXX etc. to structure OldTerm;
 wenzelm parents: 
29269diff
changeset | 615 | val used = OldTerm.it_term_types OldTerm.add_typ_tfree_names (t, []) | 
| 
0eade173f77e
moved old add_type_XXX, add_term_XXX etc. to structure OldTerm;
 wenzelm parents: 
29269diff
changeset | 616 | and tvars = map #1 (OldTerm.it_term_types OldTerm.add_typ_tvars (t, [])); | 
| 23178 | 617 | val (alist, _) = List.foldr new_name ([], used) tvars; | 
| 11519 | 618 | in | 
| 619 | (case alist of | |
| 620 | [] => prf (*nothing to do!*) | |
| 621 | | _ => | |
| 622 | let val frzT = map_type_tvar (freeze_one alist) | |
| 20548 
8ef25fe585a8
renamed Term.map_term_types to Term.map_types (cf. Term.fold_types);
 wenzelm parents: 
20509diff
changeset | 623 | in map_proof_terms (map_types frzT) frzT prf end) | 
| 11519 | 624 | end; | 
| 625 | ||
| 626 | end; | |
| 627 | ||
| 628 | ||
| 629 | (***** rotate assumptions *****) | |
| 630 | ||
| 631 | fun rotate_proof Bs Bi m prf = | |
| 632 | let | |
| 633 | val params = Term.strip_all_vars Bi; | |
| 634 | val asms = Logic.strip_imp_prems (Term.strip_all_body Bi); | |
| 635 | val i = length asms; | |
| 636 | val j = length Bs; | |
| 637 | in | |
| 638 | mk_AbsP (j+1, proof_combP (prf, map PBound | |
| 23178 | 639 | (j downto 1) @ [mk_Abst params (mk_AbsP (i, | 
| 11519 | 640 | proof_combP (proof_combt (PBound i, map Bound ((length params - 1) downto 0)), | 
| 23178 | 641 | map PBound (((i-m-1) downto 0) @ ((i-1) downto (i-m))))))])) | 
| 11519 | 642 | end; | 
| 643 | ||
| 644 | ||
| 645 | (***** permute premises *****) | |
| 646 | ||
| 647 | fun permute_prems_prf prems j k prf = | |
| 648 | let val n = length prems | |
| 649 | in mk_AbsP (n, proof_combP (prf, | |
| 650 | map PBound ((n-1 downto n-j) @ (k-1 downto 0) @ (n-j-1 downto k)))) | |
| 651 | end; | |
| 652 | ||
| 653 | ||
| 19908 | 654 | (***** generalization *****) | 
| 655 | ||
| 20000 | 656 | fun generalize (tfrees, frees) idx = | 
| 657 | map_proof_terms_option | |
| 20509 | 658 | (TermSubst.generalize_option (tfrees, frees) idx) | 
| 659 | (TermSubst.generalizeT_option tfrees idx); | |
| 19908 | 660 | |
| 661 | ||
| 11519 | 662 | (***** instantiation *****) | 
| 663 | ||
| 20000 | 664 | fun instantiate (instT, inst) = | 
| 665 | map_proof_terms_option | |
| 20509 | 666 | (TermSubst.instantiate_option (instT, map (apsnd remove_types) inst)) | 
| 667 | (TermSubst.instantiateT_option instT); | |
| 11519 | 668 | |
| 669 | ||
| 670 | (***** lifting *****) | |
| 671 | ||
| 672 | fun lift_proof Bi inc prop prf = | |
| 673 | let | |
| 674 | fun lift'' Us Ts t = strip_abs Ts (Logic.incr_indexes (Us, inc) (mk_abs Ts t)); | |
| 675 | ||
| 11715 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 676 | fun lift' Us Ts (Abst (s, T, prf)) = | 
| 22662 | 677 | (Abst (s, apsome' (same (op =) (Logic.incr_tvar inc)) T, lifth' Us (dummyT::Ts) prf) | 
| 11715 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 678 | handle SAME => Abst (s, T, lift' Us (dummyT::Ts) prf)) | 
| 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 679 | | lift' Us Ts (AbsP (s, t, prf)) = | 
| 22662 | 680 | (AbsP (s, apsome' (same (op =) (lift'' Us Ts)) t, lifth' Us Ts prf) | 
| 11715 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 681 | handle SAME => AbsP (s, t, lift' Us Ts prf)) | 
| 15570 | 682 | | lift' Us Ts (prf % t) = (lift' Us Ts prf % Option.map (lift'' Us Ts) t | 
| 22662 | 683 | handle SAME => prf % apsome' (same (op =) (lift'' Us Ts)) t) | 
| 11715 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 684 | | 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 | 685 | handle SAME => prf1 %% lift' Us Ts prf2) | 
| 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 686 | | lift' _ _ (PAxm (s, prop, Ts)) = | 
| 22662 | 687 | PAxm (s, prop, apsome' (same (op =) (map (Logic.incr_tvar inc))) Ts) | 
| 28828 
c25dd83a6f9f
unified treatment of PAxm/Oracle/Promise in basic proof term operations;
 wenzelm parents: 
28815diff
changeset | 688 | | lift' _ _ (Oracle (s, prop, Ts)) = | 
| 
c25dd83a6f9f
unified treatment of PAxm/Oracle/Promise in basic proof term operations;
 wenzelm parents: 
28815diff
changeset | 689 | Oracle (s, prop, apsome' (same (op =) (map (Logic.incr_tvar inc))) Ts) | 
| 
c25dd83a6f9f
unified treatment of PAxm/Oracle/Promise in basic proof term operations;
 wenzelm parents: 
28815diff
changeset | 690 | | lift' _ _ (Promise (i, prop, Ts)) = | 
| 
c25dd83a6f9f
unified treatment of PAxm/Oracle/Promise in basic proof term operations;
 wenzelm parents: 
28815diff
changeset | 691 | Promise (i, prop, same (op =) (map (Logic.incr_tvar inc)) Ts) | 
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 692 | | lift' _ _ (PThm (i, ((s, prop, Ts), body))) = | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 693 | PThm (i, ((s, prop, apsome' (same (op =) (map (Logic.incr_tvar inc))) Ts), body)) | 
| 11715 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 694 | | lift' _ _ _ = raise SAME | 
| 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 695 | and lifth' Us Ts prf = (lift' Us Ts prf handle SAME => prf); | 
| 11519 | 696 | |
| 18030 | 697 | val ps = map (Logic.lift_all inc Bi) (Logic.strip_imp_prems prop); | 
| 11519 | 698 | val k = length ps; | 
| 699 | ||
| 23178 | 700 | fun mk_app b (i, j, prf) = | 
| 11615 | 701 | if b then (i-1, j, prf %% PBound i) else (i, j-1, prf %> Bound j); | 
| 11519 | 702 | |
| 703 |     fun lift Us bs i j (Const ("==>", _) $ A $ B) =
 | |
| 20147 | 704 |             AbsP ("H", NONE (*A*), lift Us (true::bs) (i+1) j B)
 | 
| 21646 
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
 wenzelm parents: 
20853diff
changeset | 705 |       | lift Us bs i j (Const ("all", _) $ Abs (a, T, t)) =
 | 
| 20147 | 706 | 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 | 707 | | lift Us bs i j _ = proof_combP (lifth' (rev Us) [] prf, | 
| 23178 | 708 | map (fn k => (#3 (fold_rev mk_app bs (i-1, j-1, PBound k)))) | 
| 11519 | 709 | (i + k - 1 downto i)); | 
| 710 | in | |
| 711 | mk_AbsP (k, lift [] [] 0 0 Bi) | |
| 712 | end; | |
| 713 | ||
| 714 | ||
| 715 | (***** proof by assumption *****) | |
| 716 | ||
| 23296 
25f28f9c28a3
Adapted Proofterm.bicompose_proof to Larry's changes in
 berghofe parents: 
23178diff
changeset | 717 | fun mk_asm_prf t i m = | 
| 
25f28f9c28a3
Adapted Proofterm.bicompose_proof to Larry's changes in
 berghofe parents: 
23178diff
changeset | 718 | let | 
| 
25f28f9c28a3
Adapted Proofterm.bicompose_proof to Larry's changes in
 berghofe parents: 
23178diff
changeset | 719 | fun imp_prf _ i 0 = PBound i | 
| 
25f28f9c28a3
Adapted Proofterm.bicompose_proof to Larry's changes in
 berghofe parents: 
23178diff
changeset | 720 |       | imp_prf (Const ("==>", _) $ A $ B) i m = AbsP ("H", NONE (*A*), imp_prf B (i+1) (m-1))
 | 
| 
25f28f9c28a3
Adapted Proofterm.bicompose_proof to Larry's changes in
 berghofe parents: 
23178diff
changeset | 721 | | imp_prf _ i _ = PBound i; | 
| 
25f28f9c28a3
Adapted Proofterm.bicompose_proof to Larry's changes in
 berghofe parents: 
23178diff
changeset | 722 |     fun all_prf (Const ("all", _) $ Abs (a, T, t)) = Abst (a, NONE (*T*), all_prf t)
 | 
| 
25f28f9c28a3
Adapted Proofterm.bicompose_proof to Larry's changes in
 berghofe parents: 
23178diff
changeset | 723 | | all_prf t = imp_prf t (~i) m | 
| 
25f28f9c28a3
Adapted Proofterm.bicompose_proof to Larry's changes in
 berghofe parents: 
23178diff
changeset | 724 | in all_prf t end; | 
| 11519 | 725 | |
| 726 | fun assumption_proof Bs Bi n prf = | |
| 727 | mk_AbsP (length Bs, proof_combP (prf, | |
| 23296 
25f28f9c28a3
Adapted Proofterm.bicompose_proof to Larry's changes in
 berghofe parents: 
23178diff
changeset | 728 | map PBound (length Bs - 1 downto 0) @ [mk_asm_prf Bi n ~1])); | 
| 11519 | 729 | |
| 730 | ||
| 731 | (***** Composition of object rule with proof state *****) | |
| 732 | ||
| 733 | fun flatten_params_proof i j n (Const ("==>", _) $ A $ B, k) =
 | |
| 15531 | 734 |       AbsP ("H", NONE (*A*), flatten_params_proof (i+1) j n (B, k))
 | 
| 11519 | 735 |   | flatten_params_proof i j n (Const ("all", _) $ Abs (a, T, t), k) =
 | 
| 15531 | 736 | Abst (a, NONE (*T*), flatten_params_proof i (j+1) n (t, k)) | 
| 11519 | 737 | | flatten_params_proof i j n (_, k) = proof_combP (proof_combt (PBound (k+i), | 
| 19304 | 738 | map Bound (j-1 downto 0)), map PBound (remove (op =) (i-n) (i-1 downto 0))); | 
| 11519 | 739 | |
| 23296 
25f28f9c28a3
Adapted Proofterm.bicompose_proof to Larry's changes in
 berghofe parents: 
23178diff
changeset | 740 | fun bicompose_proof flatten Bs oldAs newAs A n m rprf sprf = | 
| 11519 | 741 | let | 
| 742 | val la = length newAs; | |
| 743 | val lb = length Bs; | |
| 744 | in | |
| 745 | mk_AbsP (lb+la, proof_combP (sprf, | |
| 11615 | 746 | map PBound (lb + la - 1 downto la)) %% | 
| 23296 
25f28f9c28a3
Adapted Proofterm.bicompose_proof to Larry's changes in
 berghofe parents: 
23178diff
changeset | 747 | proof_combP (rprf, (if n>0 then [mk_asm_prf (the A) n m] else []) @ | 
| 18485 | 748 | map (if flatten then flatten_params_proof 0 0 n else PBound o snd) | 
| 749 | (oldAs ~~ (la - 1 downto 0)))) | |
| 11519 | 750 | end; | 
| 751 | ||
| 752 | ||
| 753 | (***** axioms for equality *****) | |
| 754 | ||
| 14854 | 755 | val aT = TFree ("'a", []);
 | 
| 756 | val bT = TFree ("'b", []);
 | |
| 11519 | 757 | val x = Free ("x", aT);
 | 
| 758 | val y = Free ("y", aT);
 | |
| 759 | val z = Free ("z", aT);
 | |
| 760 | val A = Free ("A", propT);
 | |
| 761 | val B = Free ("B", propT);
 | |
| 762 | val f = Free ("f", aT --> bT);
 | |
| 763 | val g = Free ("g", aT --> bT);
 | |
| 764 | ||
| 765 | local open Logic in | |
| 766 | ||
| 767 | val equality_axms = | |
| 768 |   [("reflexive", mk_equals (x, x)),
 | |
| 769 |    ("symmetric", mk_implies (mk_equals (x, y), mk_equals (y, x))),
 | |
| 770 |    ("transitive", list_implies ([mk_equals (x, y), mk_equals (y, z)], mk_equals (x, z))),
 | |
| 771 |    ("equal_intr", list_implies ([mk_implies (A, B), mk_implies (B, A)], mk_equals (A, B))),
 | |
| 772 |    ("equal_elim", list_implies ([mk_equals (A, B), A], B)),
 | |
| 27330 | 773 |    ("abstract_rule", mk_implies
 | 
| 774 | (all x (mk_equals (f $ x, g $ x)), mk_equals (lambda x (f $ x), lambda x (g $ x)))), | |
| 775 |    ("combination", list_implies
 | |
| 776 | ([mk_equals (f, g), mk_equals (x, y)], mk_equals (f $ x, g $ y)))]; | |
| 11519 | 777 | |
| 778 | val [reflexive_axm, symmetric_axm, transitive_axm, equal_intr_axm, | |
| 779 | equal_elim_axm, abstract_rule_axm, combination_axm] = | |
| 26424 | 780 |     map (fn (s, t) => PAxm ("Pure." ^ s, varify t, NONE)) equality_axms;
 | 
| 11519 | 781 | |
| 782 | end; | |
| 783 | ||
| 15531 | 784 | val reflexive = reflexive_axm % NONE; | 
| 11519 | 785 | |
| 26424 | 786 | fun symmetric (prf as PAxm ("Pure.reflexive", _, _) % _) = prf
 | 
| 15531 | 787 | | symmetric prf = symmetric_axm % NONE % NONE %% prf; | 
| 11519 | 788 | |
| 26424 | 789 | fun transitive _ _ (PAxm ("Pure.reflexive", _, _) % _) prf2 = prf2
 | 
| 790 |   | transitive _ _ prf1 (PAxm ("Pure.reflexive", _, _) % _) = prf1
 | |
| 11519 | 791 |   | transitive u (Type ("prop", [])) prf1 prf2 =
 | 
| 15531 | 792 | transitive_axm % NONE % SOME (remove_types u) % NONE %% prf1 %% prf2 | 
| 11519 | 793 | | transitive u T prf1 prf2 = | 
| 15531 | 794 | transitive_axm % NONE % NONE % NONE %% prf1 %% prf2; | 
| 11519 | 795 | |
| 796 | fun abstract_rule x a prf = | |
| 15531 | 797 | abstract_rule_axm % NONE % NONE %% forall_intr_proof x a prf; | 
| 11519 | 798 | |
| 26424 | 799 | fun check_comb (PAxm ("Pure.combination", _, _) % f % g % _ % _ %% prf %% _) =
 | 
| 19502 | 800 | is_some f orelse check_comb prf | 
| 26424 | 801 |   | check_comb (PAxm ("Pure.transitive", _, _) % _ % _ % _ %% prf1 %% prf2) =
 | 
| 11519 | 802 | check_comb prf1 andalso check_comb prf2 | 
| 26424 | 803 |   | check_comb (PAxm ("Pure.symmetric", _, _) % _ % _ %% prf) = check_comb prf
 | 
| 11519 | 804 | | check_comb _ = false; | 
| 805 | ||
| 806 | fun combination f g t u (Type (_, [T, U])) prf1 prf2 = | |
| 807 | let | |
| 808 | val f = Envir.beta_norm f; | |
| 809 | val g = Envir.beta_norm g; | |
| 810 | val prf = if check_comb prf1 then | |
| 15531 | 811 | combination_axm % NONE % NONE | 
| 11519 | 812 | else (case prf1 of | 
| 26424 | 813 |           PAxm ("Pure.reflexive", _, _) % _ =>
 | 
| 15531 | 814 | combination_axm %> remove_types f % NONE | 
| 11615 | 815 | | _ => combination_axm %> remove_types f %> remove_types g) | 
| 11519 | 816 | in | 
| 817 | (case T of | |
| 11615 | 818 |        Type ("fun", _) => prf %
 | 
| 11519 | 819 | (case head_of f of | 
| 15531 | 820 | Abs _ => SOME (remove_types t) | 
| 821 | | Var _ => SOME (remove_types t) | |
| 822 | | _ => NONE) % | |
| 11519 | 823 | (case head_of g of | 
| 15531 | 824 | Abs _ => SOME (remove_types u) | 
| 825 | | Var _ => SOME (remove_types u) | |
| 826 | | _ => NONE) %% prf1 %% prf2 | |
| 827 | | _ => prf % NONE % NONE %% prf1 %% prf2) | |
| 11519 | 828 | end; | 
| 829 | ||
| 830 | fun equal_intr A B prf1 prf2 = | |
| 11615 | 831 | equal_intr_axm %> remove_types A %> remove_types B %% prf1 %% prf2; | 
| 11519 | 832 | |
| 833 | fun equal_elim A B prf1 prf2 = | |
| 11615 | 834 | equal_elim_axm %> remove_types A %> remove_types B %% prf1 %% prf2; | 
| 11519 | 835 | |
| 836 | ||
| 837 | (***** axioms and theorems *****) | |
| 838 | ||
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 839 | val proofs = ref 2; | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 840 | |
| 28812 
413695e07bd4
Frees in PThms are now quantified in the order of their appearance in the
 berghofe parents: 
28803diff
changeset | 841 | fun vars_of t = map Var (rev (Term.add_vars t [])); | 
| 
413695e07bd4
Frees in PThms are now quantified in the order of their appearance in the
 berghofe parents: 
28803diff
changeset | 842 | fun frees_of t = map Free (rev (Term.add_frees t [])); | 
| 11519 | 843 | |
| 844 | fun test_args _ [] = true | |
| 845 | | test_args is (Bound i :: ts) = | |
| 17492 | 846 | not (member (op =) is i) andalso test_args (i :: is) ts | 
| 11519 | 847 | | test_args _ _ = false; | 
| 848 | ||
| 849 | fun is_fun (Type ("fun", _)) = true
 | |
| 850 | | is_fun (TVar _) = true | |
| 851 | | is_fun _ = false; | |
| 852 | ||
| 853 | fun add_funvars Ts (vs, t) = | |
| 854 | if is_fun (fastype_of1 (Ts, t)) then | |
| 19482 
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
 wenzelm parents: 
19357diff
changeset | 855 | vs union map_filter (fn Var (ixn, T) => | 
| 15531 | 856 | if is_fun T then SOME ixn else NONE | _ => NONE) (vars_of t) | 
| 11519 | 857 | else vs; | 
| 858 | ||
| 859 | fun add_npvars q p Ts (vs, Const ("==>", _) $ t $ u) =
 | |
| 860 | add_npvars q p Ts (add_npvars q (not p) Ts (vs, t), u) | |
| 861 |   | add_npvars q p Ts (vs, Const ("all", Type (_, [Type (_, [T, _]), _])) $ t) =
 | |
| 862 |       add_npvars q p Ts (vs, if p andalso q then betapply (t, Var (("",0), T)) else t)
 | |
| 12041 | 863 | | add_npvars q p Ts (vs, Abs (_, T, t)) = add_npvars q p (T::Ts) (vs, t) | 
| 864 | | add_npvars _ _ Ts (vs, t) = add_npvars' Ts (vs, t) | |
| 865 | and add_npvars' Ts (vs, t) = (case strip_comb t of | |
| 11519 | 866 | (Var (ixn, _), ts) => if test_args [] ts then vs | 
| 17314 | 867 | else Library.foldl (add_npvars' Ts) | 
| 868 | (AList.update (op =) (ixn, | |
| 869 | Library.foldl (add_funvars Ts) ((these ooo AList.lookup) (op =) vs ixn, ts)) vs, ts) | |
| 15570 | 870 | | (Abs (_, T, u), ts) => Library.foldl (add_npvars' (T::Ts)) (vs, u :: ts) | 
| 871 | | (_, ts) => Library.foldl (add_npvars' Ts) (vs, ts)); | |
| 11519 | 872 | |
| 873 | fun prop_vars (Const ("==>", _) $ P $ Q) = prop_vars P union prop_vars Q
 | |
| 874 |   | prop_vars (Const ("all", _) $ Abs (_, _, t)) = prop_vars t
 | |
| 875 | | prop_vars t = (case strip_comb t of | |
| 876 | (Var (ixn, _), _) => [ixn] | _ => []); | |
| 877 | ||
| 878 | fun is_proj t = | |
| 879 | let | |
| 880 | fun is_p i t = (case strip_comb t of | |
| 881 | (Bound j, []) => false | |
| 882 | | (Bound j, ts) => j >= i orelse exists (is_p i) ts | |
| 883 | | (Abs (_, _, u), _) => is_p (i+1) u | |
| 884 | | (_, ts) => exists (is_p i) ts) | |
| 885 | in (case strip_abs_body t of | |
| 886 | Bound _ => true | |
| 887 | | t' => is_p 0 t') | |
| 888 | end; | |
| 889 | ||
| 21646 
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
 wenzelm parents: 
20853diff
changeset | 890 | fun needed_vars prop = | 
| 20853 | 891 | Library.foldl (op union) | 
| 892 | ([], map (uncurry (insert (op =))) (add_npvars true true [] ([], prop))) union | |
| 11519 | 893 | prop_vars prop; | 
| 894 | ||
| 895 | fun gen_axm_proof c name prop = | |
| 896 | let | |
| 897 | val nvs = needed_vars prop; | |
| 898 | val args = map (fn (v as Var (ixn, _)) => | |
| 17492 | 899 | if member (op =) nvs ixn then SOME v else NONE) (vars_of prop) @ | 
| 28812 
413695e07bd4
Frees in PThms are now quantified in the order of their appearance in the
 berghofe parents: 
28803diff
changeset | 900 | map SOME (frees_of prop); | 
| 11519 | 901 | in | 
| 15531 | 902 | proof_combt' (c (name, prop, NONE), args) | 
| 11519 | 903 | end; | 
| 904 | ||
| 905 | val axm_proof = gen_axm_proof PAxm; | |
| 17017 | 906 | |
| 907 | val dummy = Const (Term.dummy_patternN, dummyT); | |
| 908 | ||
| 909 | fun oracle_proof name prop = | |
| 910 | if !proofs = 0 then Oracle (name, dummy, NONE) | |
| 911 | else gen_axm_proof Oracle name prop; | |
| 11519 | 912 | |
| 17492 | 913 | fun shrink_proof thy = | 
| 914 | let | |
| 915 | fun shrink ls lev (prf as Abst (a, T, body)) = | |
| 916 | let val (b, is, ch, body') = shrink ls (lev+1) body | |
| 26631 
d6b6c74a8bcf
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26424diff
changeset | 917 | in (b, is, ch, if ch then Abst (a, T, body') else prf) end | 
| 17492 | 918 | | shrink ls lev (prf as AbsP (a, t, body)) = | 
| 919 | let val (b, is, ch, body') = shrink (lev::ls) lev body | |
| 19482 
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
 wenzelm parents: 
19357diff
changeset | 920 | in (b orelse member (op =) is 0, map_filter (fn 0 => NONE | i => SOME (i-1)) is, | 
| 26631 
d6b6c74a8bcf
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26424diff
changeset | 921 | ch, if ch then AbsP (a, t, body') else prf) | 
| 17492 | 922 | end | 
| 923 | | shrink ls lev prf = | |
| 924 | let val (is, ch, _, prf') = shrink' ls lev [] [] prf | |
| 925 | in (false, is, ch, prf') end | |
| 926 | and shrink' ls lev ts prfs (prf as prf1 %% prf2) = | |
| 927 | let | |
| 928 | val p as (_, is', ch', prf') = shrink ls lev prf2; | |
| 929 | val (is, ch, ts', prf'') = shrink' ls lev ts (p::prfs) prf1 | |
| 930 | in (is union is', ch orelse ch', ts', | |
| 931 | if ch orelse ch' then prf'' %% prf' else prf) | |
| 932 | end | |
| 933 | | shrink' ls lev ts prfs (prf as prf1 % t) = | |
| 934 | let val (is, ch, (ch', t')::ts', prf') = shrink' ls lev (t::ts) prfs prf1 | |
| 935 | in (is, ch orelse ch', ts', | |
| 26631 
d6b6c74a8bcf
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26424diff
changeset | 936 | if ch orelse ch' then prf' % t' else prf) end | 
| 17492 | 937 | | shrink' ls lev ts prfs (prf as PBound i) = | 
| 938 | (if exists (fn SOME (Bound j) => lev-j <= List.nth (ls, i) | _ => true) ts | |
| 18928 
042608ffa2ec
subsituted gen_duplicates / has_duplicates for duplicates whenever appropriate
 haftmann parents: 
18485diff
changeset | 939 | orelse has_duplicates (op =) | 
| 
042608ffa2ec
subsituted gen_duplicates / has_duplicates for duplicates whenever appropriate
 haftmann parents: 
18485diff
changeset | 940 | (Library.foldl (fn (js, SOME (Bound j)) => j :: js | (js, _) => js) ([], ts)) | 
| 17492 | 941 | orelse exists #1 prfs then [i] else [], false, map (pair false) ts, prf) | 
| 26631 
d6b6c74a8bcf
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26424diff
changeset | 942 | | shrink' ls lev ts prfs (Hyp t) = ([], false, map (pair false) ts, Hyp t) | 
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 943 | | shrink' ls lev ts prfs MinProof = ([], false, map (pair false) ts, MinProof) | 
| 17492 | 944 | | shrink' ls lev ts prfs prf = | 
| 945 | let | |
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 946 | val prop = | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 947 | (case prf of | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 948 | PAxm (_, prop, _) => prop | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 949 | | Oracle (_, prop, _) => prop | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 950 | | Promise (_, prop, _) => prop | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 951 | | PThm (_, ((_, prop, _), _)) => prop | 
| 28319 
13cb2108c2b9
added Promise constructor, which is similar to Oracle but may be replaced later;
 wenzelm parents: 
27330diff
changeset | 952 | | _ => error "shrink: proof not in normal form"); | 
| 17492 | 953 | val vs = vars_of prop; | 
| 19012 | 954 | val (ts', ts'') = chop (length vs) ts; | 
| 17492 | 955 | val insts = Library.take (length ts', map (fst o dest_Var) vs) ~~ ts'; | 
| 956 | val nvs = Library.foldl (fn (ixns', (ixn, ixns)) => | |
| 957 | insert (op =) ixn (case AList.lookup (op =) insts ixn of | |
| 958 | SOME (SOME t) => if is_proj t then ixns union ixns' else ixns' | |
| 959 | | _ => ixns union ixns')) | |
| 960 | (needed prop ts'' prfs, add_npvars false true [] ([], prop)); | |
| 961 | val insts' = map | |
| 962 | (fn (ixn, x as SOME _) => if member (op =) nvs ixn then (false, x) else (true, NONE) | |
| 963 | | (_, x) => (false, x)) insts | |
| 964 | in ([], false, insts' @ map (pair false) ts'', prf) end | |
| 965 |     and needed (Const ("==>", _) $ t $ u) ts ((b, _, _, _)::prfs) =
 | |
| 966 | (if b then map (fst o dest_Var) (vars_of t) else []) union needed u ts prfs | |
| 967 | | needed (Var (ixn, _)) (_::_) _ = [ixn] | |
| 968 | | needed _ _ _ = []; | |
| 969 | in shrink end; | |
| 11519 | 970 | |
| 971 | ||
| 972 | (**** Simple first order matching functions for terms and proofs ****) | |
| 973 | ||
| 974 | exception PMatch; | |
| 975 | ||
| 976 | (** see pattern.ML **) | |
| 977 | ||
| 15570 | 978 | fun flt (i: int) = List.filter (fn n => n < i); | 
| 12279 | 979 | |
| 980 | fun fomatch Ts tymatch j = | |
| 11519 | 981 | let | 
| 982 | fun mtch (instsp as (tyinsts, insts)) = fn | |
| 983 | (Var (ixn, T), t) => | |
| 12279 | 984 | if j>0 andalso not (null (flt j (loose_bnos t))) | 
| 985 | then raise PMatch | |
| 986 | else (tymatch (tyinsts, fn () => (T, fastype_of1 (Ts, t))), | |
| 987 | (ixn, t) :: insts) | |
| 11519 | 988 | | (Free (a, T), Free (b, U)) => | 
| 20147 | 989 | if a=b then (tymatch (tyinsts, K (T, U)), insts) else raise PMatch | 
| 11519 | 990 | | (Const (a, T), Const (b, U)) => | 
| 20147 | 991 | if a=b then (tymatch (tyinsts, K (T, U)), insts) else raise PMatch | 
| 11519 | 992 | | (f $ t, g $ u) => mtch (mtch instsp (f, g)) (t, u) | 
| 12279 | 993 | | (Bound i, Bound j) => if i=j then instsp else raise PMatch | 
| 11519 | 994 | | _ => raise PMatch | 
| 995 | in mtch end; | |
| 996 | ||
| 12279 | 997 | fun match_proof Ts tymatch = | 
| 11519 | 998 | let | 
| 15531 | 999 | fun optmatch _ inst (NONE, _) = inst | 
| 1000 | | optmatch _ _ (SOME _, NONE) = raise PMatch | |
| 1001 | | optmatch mtch inst (SOME x, SOME y) = mtch inst (x, y) | |
| 12279 | 1002 | |
| 1003 | fun matcht Ts j (pinst, tinst) (t, u) = | |
| 1004 | (pinst, fomatch Ts tymatch j tinst (t, Envir.beta_norm u)); | |
| 1005 | fun matchT (pinst, (tyinsts, insts)) p = | |
| 1006 | (pinst, (tymatch (tyinsts, K p), insts)); | |
| 15570 | 1007 | fun matchTs inst (Ts, Us) = Library.foldl (uncurry matchT) (inst, Ts ~~ Us); | 
| 12279 | 1008 | |
| 1009 | fun mtch Ts i j (pinst, tinst) (Hyp (Var (ixn, _)), prf) = | |
| 1010 | if i = 0 andalso j = 0 then ((ixn, prf) :: pinst, tinst) | |
| 1011 | else (case apfst (flt i) (apsnd (flt j) | |
| 1012 | (prf_add_loose_bnos 0 0 prf ([], []))) of | |
| 1013 | ([], []) => ((ixn, incr_pboundvars (~i) (~j) prf) :: pinst, tinst) | |
| 1014 | | ([], _) => if j = 0 then | |
| 1015 | ((ixn, incr_pboundvars (~i) (~j) prf) :: pinst, tinst) | |
| 1016 | else raise PMatch | |
| 1017 | | _ => raise PMatch) | |
| 1018 | | mtch Ts i j inst (prf1 % opt1, prf2 % opt2) = | |
| 1019 | optmatch (matcht Ts j) (mtch Ts i j inst (prf1, prf2)) (opt1, opt2) | |
| 1020 | | mtch Ts i j inst (prf1 %% prf2, prf1' %% prf2') = | |
| 1021 | mtch Ts i j (mtch Ts i j inst (prf1, prf1')) (prf2, prf2') | |
| 1022 | | mtch Ts i j inst (Abst (_, opT, prf1), Abst (_, opU, prf2)) = | |
| 18485 | 1023 | mtch (the_default dummyT opU :: Ts) i (j+1) | 
| 12279 | 1024 | (optmatch matchT inst (opT, opU)) (prf1, prf2) | 
| 1025 | | mtch Ts i j inst (prf1, Abst (_, opU, prf2)) = | |
| 18485 | 1026 | mtch (the_default dummyT opU :: Ts) i (j+1) inst | 
| 12279 | 1027 | (incr_pboundvars 0 1 prf1 %> Bound 0, prf2) | 
| 1028 | | mtch Ts i j inst (AbsP (_, opt, prf1), AbsP (_, opu, prf2)) = | |
| 1029 | mtch Ts (i+1) j (optmatch (matcht Ts j) inst (opt, opu)) (prf1, prf2) | |
| 1030 | | mtch Ts i j inst (prf1, AbsP (_, _, prf2)) = | |
| 1031 | mtch Ts (i+1) j inst (incr_pboundvars 1 0 prf1 %% PBound 0, prf2) | |
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 1032 | | mtch Ts i j inst (PAxm (s1, _, opTs), PAxm (s2, _, opUs)) = | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 1033 | if s1 = s2 then optmatch matchTs inst (opTs, opUs) | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 1034 | else raise PMatch | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 1035 | | mtch Ts i j inst (PThm (_, ((name1, prop1, opTs), _)), PThm (_, ((name2, prop2, opUs), _))) = | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 1036 | if name1 = name2 andalso prop1 = prop2 then | 
| 12279 | 1037 | optmatch matchTs inst (opTs, opUs) | 
| 11519 | 1038 | else raise PMatch | 
| 12279 | 1039 | | mtch _ _ _ inst (PBound i, PBound j) = if i = j then inst else raise PMatch | 
| 1040 | | mtch _ _ _ _ _ = raise PMatch | |
| 1041 | in mtch Ts 0 0 end; | |
| 11519 | 1042 | |
| 1043 | fun prf_subst (pinst, (tyinsts, insts)) = | |
| 1044 | let | |
| 15797 | 1045 | val substT = Envir.typ_subst_TVars tyinsts; | 
| 11519 | 1046 | |
| 17325 | 1047 | fun subst' lev (t as Var (ixn, _)) = (case AList.lookup (op =) insts ixn of | 
| 15531 | 1048 | NONE => t | 
| 1049 | | SOME u => incr_boundvars lev u) | |
| 11519 | 1050 | | subst' lev (Const (s, T)) = Const (s, substT T) | 
| 1051 | | subst' lev (Free (s, T)) = Free (s, substT T) | |
| 1052 | | subst' lev (Abs (a, T, body)) = Abs (a, substT T, subst' (lev+1) body) | |
| 1053 | | subst' lev (f $ t) = subst' lev f $ subst' lev t | |
| 1054 | | subst' _ t = t; | |
| 1055 | ||
| 1056 | fun subst plev tlev (AbsP (a, t, body)) = | |
| 15570 | 1057 | AbsP (a, Option.map (subst' tlev) t, subst (plev+1) tlev body) | 
| 11519 | 1058 | | subst plev tlev (Abst (a, T, body)) = | 
| 15570 | 1059 | Abst (a, Option.map substT T, subst plev (tlev+1) body) | 
| 11615 | 1060 | | subst plev tlev (prf %% prf') = subst plev tlev prf %% subst plev tlev prf' | 
| 15570 | 1061 | | subst plev tlev (prf % t) = subst plev tlev prf % Option.map (subst' tlev) t | 
| 17325 | 1062 | | subst plev tlev (prf as Hyp (Var (ixn, _))) = (case AList.lookup (op =) pinst ixn of | 
| 15531 | 1063 | NONE => prf | 
| 1064 | | SOME prf' => incr_pboundvars plev tlev prf') | |
| 28828 
c25dd83a6f9f
unified treatment of PAxm/Oracle/Promise in basic proof term operations;
 wenzelm parents: 
28815diff
changeset | 1065 | | subst _ _ (PAxm (id, prop, Ts)) = PAxm (id, prop, Option.map (map substT) Ts) | 
| 
c25dd83a6f9f
unified treatment of PAxm/Oracle/Promise in basic proof term operations;
 wenzelm parents: 
28815diff
changeset | 1066 | | subst _ _ (Oracle (id, prop, Ts)) = Oracle (id, prop, Option.map (map substT) Ts) | 
| 
c25dd83a6f9f
unified treatment of PAxm/Oracle/Promise in basic proof term operations;
 wenzelm parents: 
28815diff
changeset | 1067 | | subst _ _ (Promise (i, prop, Ts)) = Promise (i, prop, (map substT) Ts) | 
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 1068 | | subst _ _ (PThm (i, ((id, prop, Ts), body))) = | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 1069 | PThm (i, ((id, prop, Option.map (map substT) Ts), body)) | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 1070 | | subst _ _ t = t; | 
| 11519 | 1071 | in subst 0 0 end; | 
| 1072 | ||
| 21646 
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
 wenzelm parents: 
20853diff
changeset | 1073 | (*A fast unification filter: true unless the two terms cannot be unified. | 
| 12871 
21486a0557d1
Added function could_unify to speed up rewriting of proof terms.
 berghofe parents: 
12868diff
changeset | 1074 | Terms must be NORMAL. Treats all Vars as distinct. *) | 
| 
21486a0557d1
Added function could_unify to speed up rewriting of proof terms.
 berghofe parents: 
12868diff
changeset | 1075 | fun could_unify prf1 prf2 = | 
| 
21486a0557d1
Added function could_unify to speed up rewriting of proof terms.
 berghofe parents: 
12868diff
changeset | 1076 | let | 
| 
21486a0557d1
Added function could_unify to speed up rewriting of proof terms.
 berghofe parents: 
12868diff
changeset | 1077 | fun matchrands (prf1 %% prf2) (prf1' %% prf2') = | 
| 
21486a0557d1
Added function could_unify to speed up rewriting of proof terms.
 berghofe parents: 
12868diff
changeset | 1078 | could_unify prf2 prf2' andalso matchrands prf1 prf1' | 
| 15531 | 1079 | | matchrands (prf % SOME t) (prf' % SOME t') = | 
| 12871 
21486a0557d1
Added function could_unify to speed up rewriting of proof terms.
 berghofe parents: 
12868diff
changeset | 1080 | Term.could_unify (t, t') andalso matchrands prf prf' | 
| 
21486a0557d1
Added function could_unify to speed up rewriting of proof terms.
 berghofe parents: 
12868diff
changeset | 1081 | | matchrands (prf % _) (prf' % _) = matchrands prf prf' | 
| 
21486a0557d1
Added function could_unify to speed up rewriting of proof terms.
 berghofe parents: 
12868diff
changeset | 1082 | | matchrands _ _ = true | 
| 
21486a0557d1
Added function could_unify to speed up rewriting of proof terms.
 berghofe parents: 
12868diff
changeset | 1083 | |
| 
21486a0557d1
Added function could_unify to speed up rewriting of proof terms.
 berghofe parents: 
12868diff
changeset | 1084 | fun head_of (prf %% _) = head_of prf | 
| 
21486a0557d1
Added function could_unify to speed up rewriting of proof terms.
 berghofe parents: 
12868diff
changeset | 1085 | | head_of (prf % _) = head_of prf | 
| 
21486a0557d1
Added function could_unify to speed up rewriting of proof terms.
 berghofe parents: 
12868diff
changeset | 1086 | | head_of prf = prf | 
| 
21486a0557d1
Added function could_unify to speed up rewriting of proof terms.
 berghofe parents: 
12868diff
changeset | 1087 | |
| 
21486a0557d1
Added function could_unify to speed up rewriting of proof terms.
 berghofe parents: 
12868diff
changeset | 1088 | in case (head_of prf1, head_of prf2) of | 
| 
21486a0557d1
Added function could_unify to speed up rewriting of proof terms.
 berghofe parents: 
12868diff
changeset | 1089 | (_, Hyp (Var _)) => true | 
| 
21486a0557d1
Added function could_unify to speed up rewriting of proof terms.
 berghofe parents: 
12868diff
changeset | 1090 | | (Hyp (Var _), _) => true | 
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 1091 | | (PAxm (a, _, _), PAxm (b, _, _)) => a = b andalso matchrands prf1 prf2 | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 1092 | | (PThm (_, ((a, propa, _), _)), PThm (_, ((b, propb, _), _))) => | 
| 12871 
21486a0557d1
Added function could_unify to speed up rewriting of proof terms.
 berghofe parents: 
12868diff
changeset | 1093 | a = b andalso propa = propb andalso matchrands prf1 prf2 | 
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 1094 | | (PBound i, PBound j) => i = j andalso matchrands prf1 prf2 | 
| 12871 
21486a0557d1
Added function could_unify to speed up rewriting of proof terms.
 berghofe parents: 
12868diff
changeset | 1095 | | (AbsP _, _) => true (*because of possible eta equality*) | 
| 
21486a0557d1
Added function could_unify to speed up rewriting of proof terms.
 berghofe parents: 
12868diff
changeset | 1096 | | (Abst _, _) => true | 
| 
21486a0557d1
Added function could_unify to speed up rewriting of proof terms.
 berghofe parents: 
12868diff
changeset | 1097 | | (_, AbsP _) => true | 
| 
21486a0557d1
Added function could_unify to speed up rewriting of proof terms.
 berghofe parents: 
12868diff
changeset | 1098 | | (_, Abst _) => true | 
| 
21486a0557d1
Added function could_unify to speed up rewriting of proof terms.
 berghofe parents: 
12868diff
changeset | 1099 | | _ => false | 
| 
21486a0557d1
Added function could_unify to speed up rewriting of proof terms.
 berghofe parents: 
12868diff
changeset | 1100 | end; | 
| 
21486a0557d1
Added function could_unify to speed up rewriting of proof terms.
 berghofe parents: 
12868diff
changeset | 1101 | |
| 28329 
e6a5fa9f1e41
added conditional add_oracles, keep oracles_of_proof private;
 wenzelm parents: 
28319diff
changeset | 1102 | |
| 11519 | 1103 | (**** rewriting on proof terms ****) | 
| 1104 | ||
| 13102 
b6f8aae5f152
Added skeletons to speed up rewriting on proof terms.
 berghofe parents: 
12923diff
changeset | 1105 | val skel0 = PBound 0; | 
| 
b6f8aae5f152
Added skeletons to speed up rewriting on proof terms.
 berghofe parents: 
12923diff
changeset | 1106 | |
| 12279 | 1107 | fun rewrite_prf tymatch (rules, procs) prf = | 
| 11519 | 1108 | let | 
| 15531 | 1109 | fun rew _ (Abst (_, _, body) % SOME t) = SOME (prf_subst_bounds [t] body, skel0) | 
| 1110 | | rew _ (AbsP (_, _, body) %% prf) = SOME (prf_subst_pbounds [prf] body, skel0) | |
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 1111 | | rew Ts prf = (case get_first (fn r => r Ts prf) procs of | 
| 15531 | 1112 | SOME prf' => SOME (prf', skel0) | 
| 1113 | | NONE => get_first (fn (prf1, prf2) => SOME (prf_subst | |
| 13102 
b6f8aae5f152
Added skeletons to speed up rewriting on proof terms.
 berghofe parents: 
12923diff
changeset | 1114 | (match_proof Ts tymatch ([], (Vartab.empty, [])) (prf1, prf)) prf2, prf2) | 
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 1115 | handle PMatch => NONE) (filter (could_unify prf o fst) rules)); | 
| 11519 | 1116 | |
| 11615 | 1117 | fun rew0 Ts (prf as AbsP (_, _, prf' %% PBound 0)) = | 
| 11519 | 1118 | if prf_loose_Pbvar1 prf' 0 then rew Ts prf | 
| 1119 | else | |
| 1120 | let val prf'' = incr_pboundvars (~1) 0 prf' | |
| 19502 | 1121 | in SOME (the_default (prf'', skel0) (rew Ts prf'')) end | 
| 15531 | 1122 | | rew0 Ts (prf as Abst (_, _, prf' % SOME (Bound 0))) = | 
| 11519 | 1123 | if prf_loose_bvar1 prf' 0 then rew Ts prf | 
| 1124 | else | |
| 1125 | let val prf'' = incr_pboundvars 0 (~1) prf' | |
| 19502 | 1126 | in SOME (the_default (prf'', skel0) (rew Ts prf'')) end | 
| 11519 | 1127 | | rew0 Ts prf = rew Ts prf; | 
| 1128 | ||
| 15531 | 1129 | fun rew1 _ (Hyp (Var _)) _ = NONE | 
| 13102 
b6f8aae5f152
Added skeletons to speed up rewriting on proof terms.
 berghofe parents: 
12923diff
changeset | 1130 | | rew1 Ts skel prf = (case rew2 Ts skel prf of | 
| 15531 | 1131 | SOME prf1 => (case rew0 Ts prf1 of | 
| 19502 | 1132 | SOME (prf2, skel') => SOME (the_default prf2 (rew1 Ts skel' prf2)) | 
| 15531 | 1133 | | NONE => SOME prf1) | 
| 1134 | | NONE => (case rew0 Ts prf of | |
| 19502 | 1135 | SOME (prf1, skel') => SOME (the_default prf1 (rew1 Ts skel' prf1)) | 
| 15531 | 1136 | | NONE => NONE)) | 
| 11519 | 1137 | |
| 15531 | 1138 | and rew2 Ts skel (prf % SOME t) = (case prf of | 
| 11519 | 1139 | Abst (_, _, body) => | 
| 1140 | let val prf' = prf_subst_bounds [t] body | |
| 19502 | 1141 | in SOME (the_default prf' (rew2 Ts skel0 prf')) end | 
| 13102 
b6f8aae5f152
Added skeletons to speed up rewriting on proof terms.
 berghofe parents: 
12923diff
changeset | 1142 | | _ => (case rew1 Ts (case skel of skel' % _ => skel' | _ => skel0) prf of | 
| 15531 | 1143 | SOME prf' => SOME (prf' % SOME t) | 
| 1144 | | NONE => NONE)) | |
| 15570 | 1145 | | rew2 Ts skel (prf % NONE) = Option.map (fn prf' => prf' % NONE) | 
| 13102 
b6f8aae5f152
Added skeletons to speed up rewriting on proof terms.
 berghofe parents: 
12923diff
changeset | 1146 | (rew1 Ts (case skel of skel' % _ => skel' | _ => skel0) prf) | 
| 
b6f8aae5f152
Added skeletons to speed up rewriting on proof terms.
 berghofe parents: 
12923diff
changeset | 1147 | | rew2 Ts skel (prf1 %% prf2) = (case prf1 of | 
| 11519 | 1148 | AbsP (_, _, body) => | 
| 1149 | let val prf' = prf_subst_pbounds [prf2] body | |
| 19502 | 1150 | in SOME (the_default prf' (rew2 Ts skel0 prf')) end | 
| 13102 
b6f8aae5f152
Added skeletons to speed up rewriting on proof terms.
 berghofe parents: 
12923diff
changeset | 1151 | | _ => | 
| 
b6f8aae5f152
Added skeletons to speed up rewriting on proof terms.
 berghofe parents: 
12923diff
changeset | 1152 | let val (skel1, skel2) = (case skel of | 
| 
b6f8aae5f152
Added skeletons to speed up rewriting on proof terms.
 berghofe parents: 
12923diff
changeset | 1153 | skel1 %% skel2 => (skel1, skel2) | 
| 
b6f8aae5f152
Added skeletons to speed up rewriting on proof terms.
 berghofe parents: 
12923diff
changeset | 1154 | | _ => (skel0, skel0)) | 
| 
b6f8aae5f152
Added skeletons to speed up rewriting on proof terms.
 berghofe parents: 
12923diff
changeset | 1155 | in case rew1 Ts skel1 prf1 of | 
| 15531 | 1156 | SOME prf1' => (case rew1 Ts skel2 prf2 of | 
| 1157 | SOME prf2' => SOME (prf1' %% prf2') | |
| 1158 | | NONE => SOME (prf1' %% prf2)) | |
| 1159 | | NONE => (case rew1 Ts skel2 prf2 of | |
| 1160 | SOME prf2' => SOME (prf1 %% prf2') | |
| 1161 | | NONE => NONE) | |
| 13102 
b6f8aae5f152
Added skeletons to speed up rewriting on proof terms.
 berghofe parents: 
12923diff
changeset | 1162 | end) | 
| 19502 | 1163 | | rew2 Ts skel (Abst (s, T, prf)) = (case rew1 (the_default dummyT T :: Ts) | 
| 13102 
b6f8aae5f152
Added skeletons to speed up rewriting on proof terms.
 berghofe parents: 
12923diff
changeset | 1164 | (case skel of Abst (_, _, skel') => skel' | _ => skel0) prf of | 
| 15531 | 1165 | SOME prf' => SOME (Abst (s, T, prf')) | 
| 1166 | | NONE => NONE) | |
| 13102 
b6f8aae5f152
Added skeletons to speed up rewriting on proof terms.
 berghofe parents: 
12923diff
changeset | 1167 | | rew2 Ts skel (AbsP (s, t, prf)) = (case rew1 Ts | 
| 
b6f8aae5f152
Added skeletons to speed up rewriting on proof terms.
 berghofe parents: 
12923diff
changeset | 1168 | (case skel of AbsP (_, _, skel') => skel' | _ => skel0) prf of | 
| 15531 | 1169 | SOME prf' => SOME (AbsP (s, t, prf')) | 
| 1170 | | NONE => NONE) | |
| 1171 | | rew2 _ _ _ = NONE | |
| 11519 | 1172 | |
| 19502 | 1173 | in the_default prf (rew1 [] skel0 prf) end; | 
| 11519 | 1174 | |
| 17203 | 1175 | fun rewrite_proof thy = rewrite_prf (fn (tyenv, f) => | 
| 1176 | Sign.typ_match thy (f ()) tyenv handle Type.TYPE_MATCH => raise PMatch); | |
| 11519 | 1177 | |
| 11715 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 1178 | fun rewrite_proof_notypes rews = rewrite_prf fst rews; | 
| 11615 | 1179 | |
| 16940 | 1180 | |
| 11519 | 1181 | (**** theory data ****) | 
| 1182 | ||
| 16458 | 1183 | structure ProofData = TheoryDataFun | 
| 22846 | 1184 | ( | 
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 1185 | type T = (stamp * (proof * proof)) list * (stamp * (typ list -> proof -> proof option)) list; | 
| 11519 | 1186 | |
| 12233 | 1187 | val empty = ([], []); | 
| 1188 | val copy = I; | |
| 16458 | 1189 | val extend = I; | 
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 1190 | fun merge _ ((rules1, procs1), (rules2, procs2)) : T = | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 1191 | (AList.merge (op =) (K true) (rules1, rules2), | 
| 22662 | 1192 | AList.merge (op =) (K true) (procs1, procs2)); | 
| 22846 | 1193 | ); | 
| 11519 | 1194 | |
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 1195 | fun get_data thy = let val (rules, procs) = ProofData.get thy in (map #2 rules, map #2 procs) end; | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 1196 | fun rew_proof thy = rewrite_prf fst (get_data thy); | 
| 23780 
a0e7305dd0cb
Added function rew_proof (for pre-normalizing proofs).
 berghofe parents: 
23296diff
changeset | 1197 | |
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 1198 | fun add_prf_rrule r = (ProofData.map o apfst) (cons (stamp (), r)); | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 1199 | fun add_prf_rproc p = (ProofData.map o apsnd) (cons (stamp (), p)); | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 1200 | |
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 1201 | |
| 28828 
c25dd83a6f9f
unified treatment of PAxm/Oracle/Promise in basic proof term operations;
 wenzelm parents: 
28815diff
changeset | 1202 | (***** promises *****) | 
| 11519 | 1203 | |
| 28828 
c25dd83a6f9f
unified treatment of PAxm/Oracle/Promise in basic proof term operations;
 wenzelm parents: 
28815diff
changeset | 1204 | fun promise_proof thy i prop = | 
| 
c25dd83a6f9f
unified treatment of PAxm/Oracle/Promise in basic proof term operations;
 wenzelm parents: 
28815diff
changeset | 1205 | let | 
| 
c25dd83a6f9f
unified treatment of PAxm/Oracle/Promise in basic proof term operations;
 wenzelm parents: 
28815diff
changeset | 1206 | val _ = prop |> Term.exists_subterm (fn t => | 
| 
c25dd83a6f9f
unified treatment of PAxm/Oracle/Promise in basic proof term operations;
 wenzelm parents: 
28815diff
changeset | 1207 | (Term.is_Free t orelse Term.is_Var t) andalso | 
| 
c25dd83a6f9f
unified treatment of PAxm/Oracle/Promise in basic proof term operations;
 wenzelm parents: 
28815diff
changeset | 1208 |         error ("promise_proof: illegal variable " ^ Syntax.string_of_term_global thy t));
 | 
| 
c25dd83a6f9f
unified treatment of PAxm/Oracle/Promise in basic proof term operations;
 wenzelm parents: 
28815diff
changeset | 1209 | val _ = prop |> Term.exists_type (Term.exists_subtype | 
| 
c25dd83a6f9f
unified treatment of PAxm/Oracle/Promise in basic proof term operations;
 wenzelm parents: 
28815diff
changeset | 1210 |       (fn TFree (a, _) => error ("promise_proof: illegal type variable " ^ quote a)
 | 
| 
c25dd83a6f9f
unified treatment of PAxm/Oracle/Promise in basic proof term operations;
 wenzelm parents: 
28815diff
changeset | 1211 | | _ => false)); | 
| 
c25dd83a6f9f
unified treatment of PAxm/Oracle/Promise in basic proof term operations;
 wenzelm parents: 
28815diff
changeset | 1212 | in Promise (i, prop, map TVar (Term.add_tvars prop [])) end; | 
| 
c25dd83a6f9f
unified treatment of PAxm/Oracle/Promise in basic proof term operations;
 wenzelm parents: 
28815diff
changeset | 1213 | |
| 
c25dd83a6f9f
unified treatment of PAxm/Oracle/Promise in basic proof term operations;
 wenzelm parents: 
28815diff
changeset | 1214 | fun fulfill_proof _ [] body0 = body0 | 
| 
c25dd83a6f9f
unified treatment of PAxm/Oracle/Promise in basic proof term operations;
 wenzelm parents: 
28815diff
changeset | 1215 | | fulfill_proof thy promises body0 = | 
| 
c25dd83a6f9f
unified treatment of PAxm/Oracle/Promise in basic proof term operations;
 wenzelm parents: 
28815diff
changeset | 1216 | let | 
| 
c25dd83a6f9f
unified treatment of PAxm/Oracle/Promise in basic proof term operations;
 wenzelm parents: 
28815diff
changeset | 1217 |         val PBody {oracles = oracles0, thms = thms0, proof = proof0} = body0;
 | 
| 28846 | 1218 | val (oracles, thms) = fold (merge_body o make_body o #2) promises (oracles0, thms0); | 
| 28875 
c1c0e23ed063
eliminated finish_proof, keep pre/post normalization of results separate;
 wenzelm parents: 
28846diff
changeset | 1219 | |
| 
c1c0e23ed063
eliminated finish_proof, keep pre/post normalization of results separate;
 wenzelm parents: 
28846diff
changeset | 1220 | val tab = Inttab.make promises; | 
| 
c1c0e23ed063
eliminated finish_proof, keep pre/post normalization of results separate;
 wenzelm parents: 
28846diff
changeset | 1221 | fun fill (Promise (i, prop, Ts)) = | 
| 
c1c0e23ed063
eliminated finish_proof, keep pre/post normalization of results separate;
 wenzelm parents: 
28846diff
changeset | 1222 | (case Inttab.lookup tab i of | 
| 
c1c0e23ed063
eliminated finish_proof, keep pre/post normalization of results separate;
 wenzelm parents: 
28846diff
changeset | 1223 | NONE => NONE | 
| 
c1c0e23ed063
eliminated finish_proof, keep pre/post normalization of results separate;
 wenzelm parents: 
28846diff
changeset | 1224 | | SOME p => SOME (instantiate (Term.add_tvars prop [] ~~ Ts, []) p)) | 
| 
c1c0e23ed063
eliminated finish_proof, keep pre/post normalization of results separate;
 wenzelm parents: 
28846diff
changeset | 1225 | | fill _ = NONE; | 
| 
c1c0e23ed063
eliminated finish_proof, keep pre/post normalization of results separate;
 wenzelm parents: 
28846diff
changeset | 1226 | val (rules, procs) = get_data thy; | 
| 
c1c0e23ed063
eliminated finish_proof, keep pre/post normalization of results separate;
 wenzelm parents: 
28846diff
changeset | 1227 | val proof = rewrite_prf fst (rules, K fill :: procs) proof0; | 
| 28828 
c25dd83a6f9f
unified treatment of PAxm/Oracle/Promise in basic proof term operations;
 wenzelm parents: 
28815diff
changeset | 1228 |       in PBody {oracles = oracles, thms = thms, proof = proof} end;
 | 
| 
c25dd83a6f9f
unified treatment of PAxm/Oracle/Promise in basic proof term operations;
 wenzelm parents: 
28815diff
changeset | 1229 | |
| 
c25dd83a6f9f
unified treatment of PAxm/Oracle/Promise in basic proof term operations;
 wenzelm parents: 
28815diff
changeset | 1230 | |
| 
c25dd83a6f9f
unified treatment of PAxm/Oracle/Promise in basic proof term operations;
 wenzelm parents: 
28815diff
changeset | 1231 | (***** theorems *****) | 
| 11519 | 1232 | |
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 1233 | fun thm_proof thy name hyps prop promises body = | 
| 11519 | 1234 | let | 
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 1235 |     val PBody {oracles = oracles0, thms = thms0, proof = prf} = body;
 | 
| 12923 | 1236 | val prop = Logic.list_implies (hyps, prop); | 
| 11519 | 1237 | val nvs = needed_vars prop; | 
| 1238 | val args = map (fn (v as Var (ixn, _)) => | |
| 17492 | 1239 | if member (op =) nvs ixn then SOME v else NONE) (vars_of prop) @ | 
| 28812 
413695e07bd4
Frees in PThms are now quantified in the order of their appearance in the
 berghofe parents: 
28803diff
changeset | 1240 | map SOME (frees_of prop); | 
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 1241 | |
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 1242 | val proof0 = | 
| 28876 | 1243 | if ! proofs = 2 then | 
| 1244 | #4 (shrink_proof thy [] 0 (rew_proof thy (fold_rev implies_intr_proof hyps prf))) | |
| 1245 | else MinProof; | |
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 1246 | |
| 28846 | 1247 | fun new_prf () = (serial (), name, prop, | 
| 1248 | Lazy.lazy (fn () => fulfill_proof thy (Lazy.force promises) | |
| 1249 |         (PBody {oracles = oracles0, thms = thms0, proof = proof0})));
 | |
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 1250 | |
| 28815 | 1251 | val (i, name, prop, body') = | 
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 1252 | (case strip_combt (fst (strip_combP prf)) of | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 1253 | (PThm (i, ((old_name, prop', NONE), body')), args') => | 
| 28815 | 1254 | if (old_name = "" orelse old_name = name) andalso prop = prop' andalso args = args' | 
| 1255 | then (i, name, prop, body') | |
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 1256 | else new_prf () | 
| 28815 | 1257 | | _ => new_prf ()); | 
| 1258 | val head = PThm (i, ((name, prop, NONE), body')); | |
| 11519 | 1259 | in | 
| 28815 | 1260 | ((i, (name, prop, body')), proof_combP (proof_combt' (head, args), map Hyp hyps)) | 
| 11519 | 1261 | end; | 
| 1262 | ||
| 21646 
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
 wenzelm parents: 
20853diff
changeset | 1263 | fun get_name hyps prop prf = | 
| 12923 | 1264 | let val prop = Logic.list_implies (hyps, prop) in | 
| 1265 | (case strip_combt (fst (strip_combP prf)) of | |
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 1266 | (PAxm (name, prop', _), _) => if prop = prop' then name else "" (* FIXME !? *) | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 1267 | | (PThm (_, ((name, prop', _), _)), _) => if prop = prop' then name else "" | 
| 21646 
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
 wenzelm parents: 
20853diff
changeset | 1268 | | _ => "") | 
| 12923 | 1269 | end; | 
| 11519 | 1270 | |
| 1271 | end; | |
| 1272 | ||
| 1273 | structure BasicProofterm : BASIC_PROOFTERM = Proofterm; | |
| 1274 | open BasicProofterm; |