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