| author | wenzelm | 
| Thu, 11 Jul 2024 22:39:04 +0200 | |
| changeset 80557 | 08034bb75ee8 | 
| parent 80311 | 31df11a23d6e | 
| child 80560 | 960b866b1117 | 
| 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 | |
| 70578 | 9 | signature PROOFTERM = | 
| 11519 | 10 | sig | 
| 70493 | 11 | type thm_header = | 
| 80295 
8a9588ffc133
more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
 wenzelm parents: 
80288diff
changeset | 12 |     {serial: serial, pos: Position.T list, theory_name: string, thm_name: Thm_Name.T,
 | 
| 70538 
fc9ba6fe367f
clarified PThm: theory_name simplifies retrieval from exports;
 wenzelm parents: 
70534diff
changeset | 13 | prop: term, types: typ list option} | 
| 70493 | 14 | type thm_body | 
| 70587 | 15 | type thm_node | 
| 11519 | 16 | datatype proof = | 
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 17 | MinProof | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 18 | | PBound of int | 
| 11519 | 19 | | Abst of string * typ option * proof | 
| 20 | | AbsP of string * term option * proof | |
| 63857 | 21 | | % of proof * term option | 
| 22 | | %% of proof * proof | |
| 11519 | 23 | | Hyp of term | 
| 24 | | PAxm of string * term * typ list option | |
| 71777 
3875815f5967
clarified signature: avoid clash with Isabelle/Scala Term.OFCLASS on case-insensible file-system;
 wenzelm parents: 
71533diff
changeset | 25 | | PClass of typ * class | 
| 70834 | 26 | | Oracle of string * term * typ list option | 
| 70493 | 27 | | PThm of thm_header * thm_body | 
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 28 | and proof_body = PBody of | 
| 77867 | 29 |     {oracles: ((string * Position.T) * term option) Ord_List.T,
 | 
| 77866 | 30 | thms: (serial * thm_node) Ord_List.T, | 
| 79263 | 31 | zboxes: ZTerm.zboxes, | 
| 79220 | 32 | zproof: zproof, | 
| 33 | proof: proof} | |
| 77867 | 34 | type oracle = (string * Position.T) * term option | 
| 70590 | 35 | type thm = serial * thm_node | 
| 70976 
d86798eddc14
more accurate proof_boxes -- from actual proof body;
 wenzelm parents: 
70948diff
changeset | 36 | exception MIN_PROOF of unit | 
| 79220 | 37 | val zproof_of: proof_body -> zproof | 
| 32094 
89b9210c7506
prefer simultaneous join -- for improved scheduling;
 wenzelm parents: 
32057diff
changeset | 38 | val proof_of: proof_body -> proof | 
| 70587 | 39 | val join_proof: proof_body future -> proof | 
| 79220 | 40 | val map_proof_of: (proof -> proof) -> proof_body -> proof_body | 
| 80295 
8a9588ffc133
more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
 wenzelm parents: 
80288diff
changeset | 41 | val thm_header: serial -> Position.T list -> string -> Thm_Name.T -> term -> typ list option -> | 
| 70538 
fc9ba6fe367f
clarified PThm: theory_name simplifies retrieval from exports;
 wenzelm parents: 
70534diff
changeset | 42 | thm_header | 
| 70501 | 43 | val thm_body: proof_body -> thm_body | 
| 70493 | 44 | val thm_body_proof_raw: thm_body -> proof | 
| 45 | val thm_body_proof_open: thm_body -> proof | |
| 70595 
2ae7e33c950f
clarified thm_id vs. thm_node/thm: retain theory_name;
 wenzelm parents: 
70593diff
changeset | 46 | val thm_node_theory_name: thm_node -> string | 
| 80295 
8a9588ffc133
more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
 wenzelm parents: 
80288diff
changeset | 47 | val thm_node_name: thm_node -> Thm_Name.T | 
| 64573 | 48 | val thm_node_prop: thm_node -> term | 
| 49 | val thm_node_body: thm_node -> proof_body future | |
| 77866 | 50 | val thm_node_thms: thm_node -> thm list | 
| 51 | val join_thms: thm list -> proof_body list | |
| 70590 | 52 | val make_thm: thm_header -> thm_body -> thm | 
| 30711 | 53 | val fold_proof_atoms: bool -> (proof -> 'a -> 'a) -> proof list -> 'a -> 'a | 
| 70413 | 54 | val fold_body_thms: | 
| 80295 
8a9588ffc133
more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
 wenzelm parents: 
80288diff
changeset | 55 |     ({serial: serial, thm_name: Thm_Name.T, prop: term, body: proof_body} -> 'a -> 'a) ->
 | 
| 64572 | 56 | proof_body list -> 'a -> 'a | 
| 77867 | 57 | val oracle_ord: oracle ord | 
| 77866 | 58 | val thm_ord: thm ord | 
| 77874 | 59 | val union_oracles: oracle Ord_List.T -> oracle Ord_List.T -> oracle Ord_List.T | 
| 77867 | 60 | val unions_oracles: oracle Ord_List.T list -> oracle Ord_List.T | 
| 77874 | 61 | val union_thms: thm Ord_List.T -> thm Ord_List.T -> thm Ord_List.T | 
| 77866 | 62 | val unions_thms: thm Ord_List.T list -> thm Ord_List.T | 
| 79220 | 63 | val no_proof_body: zproof -> proof -> proof_body | 
| 70916 
4c15217d6266
clarified signature: name of standard_proof is authentic, otherwise empty;
 wenzelm parents: 
70915diff
changeset | 64 | val no_thm_names: proof -> proof | 
| 52424 
77075c576d4c
support for XML data representation of proof terms;
 wenzelm parents: 
51700diff
changeset | 65 | val no_thm_proofs: proof -> proof | 
| 70440 | 66 | val no_body_proofs: proof -> proof | 
| 52424 
77075c576d4c
support for XML data representation of proof terms;
 wenzelm parents: 
51700diff
changeset | 67 | |
| 70784 
799437173553
Term_XML.Encode/Decode.term uses Const "typargs";
 wenzelm parents: 
70604diff
changeset | 68 | val encode: Consts.T -> proof XML.Encode.T | 
| 
799437173553
Term_XML.Encode/Decode.term uses Const "typargs";
 wenzelm parents: 
70604diff
changeset | 69 | val encode_body: Consts.T -> proof_body XML.Encode.T | 
| 70843 
cc987440d776
more compact XML: separate environment for free variables;
 wenzelm parents: 
70839diff
changeset | 70 | val encode_standard_term: Consts.T -> term XML.Encode.T | 
| 
cc987440d776
more compact XML: separate environment for free variables;
 wenzelm parents: 
70839diff
changeset | 71 | val encode_standard_proof: Consts.T -> proof XML.Encode.T | 
| 70784 
799437173553
Term_XML.Encode/Decode.term uses Const "typargs";
 wenzelm parents: 
70604diff
changeset | 72 | val decode: Consts.T -> proof XML.Decode.T | 
| 
799437173553
Term_XML.Encode/Decode.term uses Const "typargs";
 wenzelm parents: 
70604diff
changeset | 73 | val decode_body: Consts.T -> proof_body XML.Decode.T | 
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 74 | |
| 70587 | 75 | val %> : proof * term -> proof | 
| 76 | ||
| 70397 | 77 | (*primitive operations*) | 
| 79222 | 78 | val zproof_enabled: int -> bool | 
| 79113 
5109e4b2a292
pro-forma support for optional zproof: no proper content yet;
 wenzelm parents: 
79112diff
changeset | 79 | val proof_enabled: int -> bool | 
| 79219 
8b371e684acf
clarified signature: more explicit get_proofs_level with bounds check;
 wenzelm parents: 
79217diff
changeset | 80 | val oracle_enabled: int -> bool | 
| 
8b371e684acf
clarified signature: more explicit get_proofs_level with bounds check;
 wenzelm parents: 
79217diff
changeset | 81 | val get_proofs_level: unit -> int | 
| 70587 | 82 | val proofs: int Unsynchronized.ref | 
| 79113 
5109e4b2a292
pro-forma support for optional zproof: no proper content yet;
 wenzelm parents: 
79112diff
changeset | 83 | val any_proofs_enabled: unit -> bool | 
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 84 | val proof_combt: proof * term list -> proof | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 85 | 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 | 86 | val proof_combP: proof * proof list -> proof | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 87 | 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 | 88 | val strip_combP: proof -> proof * proof list | 
| 79441 | 89 | val any_head_of: proof -> proof | 
| 90 | val term_head_of: proof -> proof | |
| 91 | val proof_head_of: proof -> proof | |
| 79442 | 92 | val compact_proof: proof -> bool | 
| 70830 | 93 | val strip_thm_body: proof_body -> proof_body | 
| 37231 
e5419ecf92b7
- outer_constraints with original variable names, to ensure that argsP is consistent with args
 berghofe parents: 
36883diff
changeset | 94 | val map_proof_same: term Same.operation -> typ Same.operation | 
| 
e5419ecf92b7
- outer_constraints with original variable names, to ensure that argsP is consistent with args
 berghofe parents: 
36883diff
changeset | 95 | -> (typ * class -> proof) -> proof Same.operation | 
| 36620 
e6bb250402b5
simplified/unified fundamental operations on types/terms/proofterms -- prefer Same.operation over "option" variant;
 wenzelm parents: 
36619diff
changeset | 96 | val map_proof_terms_same: term Same.operation -> typ Same.operation -> proof Same.operation | 
| 
e6bb250402b5
simplified/unified fundamental operations on types/terms/proofterms -- prefer Same.operation over "option" variant;
 wenzelm parents: 
36619diff
changeset | 97 | val map_proof_types_same: typ Same.operation -> proof Same.operation | 
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 98 | val map_proof_terms: (term -> term) -> (typ -> typ) -> proof -> proof | 
| 36620 
e6bb250402b5
simplified/unified fundamental operations on types/terms/proofterms -- prefer Same.operation over "option" variant;
 wenzelm parents: 
36619diff
changeset | 99 | val map_proof_types: (typ -> typ) -> proof -> proof | 
| 70843 
cc987440d776
more compact XML: separate environment for free variables;
 wenzelm parents: 
70839diff
changeset | 100 | val fold_proof_terms: (term -> 'a -> 'a) -> proof -> 'a -> 'a | 
| 
cc987440d776
more compact XML: separate environment for free variables;
 wenzelm parents: 
70839diff
changeset | 101 | val fold_proof_terms_types: (term -> 'a -> 'a) -> (typ -> 'a -> 'a) -> proof -> 'a -> 'a | 
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 102 | val maxidx_proof: proof -> int -> int | 
| 70417 | 103 | val change_types: typ list option -> proof -> proof | 
| 79197 | 104 | val abstract_over: term -> proof -> proof | 
| 79175 
04dfecb9343a
misc tuning and clarification, following Term.incr_bv / Term.incr_boundvars;
 wenzelm parents: 
79174diff
changeset | 105 | val incr_bv_same: int -> int -> int -> int -> proof Same.operation | 
| 
04dfecb9343a
misc tuning and clarification, following Term.incr_bv / Term.incr_boundvars;
 wenzelm parents: 
79174diff
changeset | 106 | val incr_bv: int -> int -> int -> int -> proof -> proof | 
| 
04dfecb9343a
misc tuning and clarification, following Term.incr_bv / Term.incr_boundvars;
 wenzelm parents: 
79174diff
changeset | 107 | val incr_boundvars: int -> int -> proof -> proof | 
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 108 | val prf_loose_bvar1: proof -> int -> bool | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 109 | val prf_loose_Pbvar1: proof -> int -> bool | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 110 | 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 | 111 | val norm_proof: Envir.env -> proof -> proof | 
| 79164 | 112 | val norm_proof_remove_types: Envir.env -> proof -> proof | 
| 79167 | 113 | val subst_bounds: term list -> proof -> proof | 
| 114 | val subst_pbounds: proof list -> proof -> proof | |
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 115 | val freeze_thaw_prf: proof -> proof * (proof -> proof) | 
| 11519 | 116 | |
| 70397 | 117 | (*proof terms for specific inference rules*) | 
| 70824 | 118 | val trivial_proof: proof | 
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 119 | val implies_intr_proof: term -> proof -> proof | 
| 37231 
e5419ecf92b7
- outer_constraints with original variable names, to ensure that argsP is consistent with args
 berghofe parents: 
36883diff
changeset | 120 | val implies_intr_proof': term -> proof -> proof | 
| 70814 | 121 | val forall_intr_proof: string * term -> typ option -> proof -> proof | 
| 37231 
e5419ecf92b7
- outer_constraints with original variable names, to ensure that argsP is consistent with args
 berghofe parents: 
36883diff
changeset | 122 | val forall_intr_proof': term -> proof -> proof | 
| 79135 | 123 | val varifyT_proof: ((string * sort) * (indexname * sort)) list -> proof -> proof | 
| 36619 
deadcd0ec431
renamed Proofterm.freezeT to Proofterm.legacy_freezeT (cf. 88756a5a92fc);
 wenzelm parents: 
35851diff
changeset | 124 | val legacy_freezeT: term -> proof -> proof | 
| 70822 
22e2f5acc0b4
more accurate treatment of propositions within proof terms, but these are ultimately ignored for performance reasons;
 wenzelm parents: 
70815diff
changeset | 125 | val rotate_proof: term list -> term -> (string * typ) list -> term list -> int -> proof -> proof | 
| 36742 | 126 | val permute_prems_proof: term list -> int -> int -> proof -> proof | 
| 74266 | 127 | val generalize_proof: Names.set * Names.set -> int -> term -> proof -> proof | 
| 128 | val instantiate: typ TVars.table * term Vars.table -> proof -> proof | |
| 79227 | 129 | val lift_proof: term -> int -> term list -> proof -> proof | 
| 32027 | 130 | val incr_indexes: int -> proof -> proof | 
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 131 | val assumption_proof: term list -> term -> int -> proof -> proof | 
| 79241 | 132 | val bicompose_proof: Envir.env -> int -> bool -> term list -> term list -> term option -> | 
| 79240 | 133 | term list -> int -> int -> proof -> proof -> proof | 
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 134 | val reflexive_axm: proof | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 135 | val symmetric_axm: proof | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 136 | val transitive_axm: proof | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 137 | val equal_intr_axm: proof | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 138 | val equal_elim_axm: proof | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 139 | val abstract_rule_axm: proof | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 140 | val combination_axm: proof | 
| 70814 | 141 | val reflexive_proof: proof | 
| 142 | val symmetric_proof: proof -> proof | |
| 143 | val transitive_proof: typ -> term -> proof -> proof -> proof | |
| 144 | val equal_intr_proof: term -> term -> proof -> proof -> proof | |
| 145 | val equal_elim_proof: term -> term -> proof -> proof -> proof | |
| 146 | val abstract_rule_proof: string * term -> proof -> proof | |
| 70908 | 147 | val combination_proof: term -> term -> term -> term -> proof -> proof -> proof | 
| 79112 | 148 | val could_unify: proof * proof -> bool | 
| 79405 | 149 | type sorts_proof = (class * class -> proof) * (string * class list list * class -> proof) | 
| 150 | val of_sort_proof: Sorts.algebra -> sorts_proof -> (typ * class -> proof) -> typ * sort -> proof list | |
| 79410 | 151 | val axiom_proof: string -> term -> proof | 
| 70834 | 152 | val oracle_proof: string -> term -> proof | 
| 63623 | 153 | val shrink_proof: proof -> proof | 
| 11519 | 154 | |
| 70397 | 155 | (*rewriting on proof terms*) | 
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 156 | val add_prf_rrule: proof * proof -> theory -> theory | 
| 52487 
48bc24467008
backout dedd7952a62c: static "proofs" value within theory prevents later inferencing with different configuration;
 wenzelm parents: 
52470diff
changeset | 157 | val add_prf_rproc: (typ list -> term option list -> proof -> (proof * proof) option) -> theory -> theory | 
| 70848 | 158 | val set_preproc: (theory -> proof -> proof) -> theory -> theory | 
| 71010 | 159 | val apply_preproc: theory -> proof -> proof | 
| 70978 | 160 | val forall_intr_variables_term: term -> term | 
| 161 | val forall_intr_variables: term -> proof -> proof | |
| 33722 
e588744f14da
generalized procs for rewrite_proof: allow skeleton;
 wenzelm parents: 
33522diff
changeset | 162 | val no_skel: proof | 
| 
e588744f14da
generalized procs for rewrite_proof: allow skeleton;
 wenzelm parents: 
33522diff
changeset | 163 | val normal_skel: proof | 
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 164 | val rewrite_proof: theory -> (proof * proof) list * | 
| 37231 
e5419ecf92b7
- outer_constraints with original variable names, to ensure that argsP is consistent with args
 berghofe parents: 
36883diff
changeset | 165 | (typ list -> term option list -> proof -> (proof * proof) option) list -> proof -> proof | 
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 166 | val rewrite_proof_notypes: (proof * proof) list * | 
| 37231 
e5419ecf92b7
- outer_constraints with original variable names, to ensure that argsP is consistent with args
 berghofe parents: 
36883diff
changeset | 167 | (typ list -> term option list -> proof -> (proof * proof) option) list -> proof -> proof | 
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 168 | val rew_proof: theory -> proof -> proof | 
| 36877 
7699f7fafde7
added Proofterm.get_name variants according to krauss/schropp;
 wenzelm parents: 
36742diff
changeset | 169 | |
| 70449 | 170 | val reconstruct_proof: theory -> term -> proof -> proof | 
| 70447 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 171 | val prop_of': term list -> proof -> term | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 172 | val prop_of: proof -> term | 
| 80295 
8a9588ffc133
more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
 wenzelm parents: 
80288diff
changeset | 173 | val expand_name_empty: thm_header -> Thm_Name.T option | 
| 
8a9588ffc133
more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
 wenzelm parents: 
80288diff
changeset | 174 | val expand_proof: theory -> (thm_header -> Thm_Name.T option) -> proof -> proof | 
| 70400 
65bbef66e2ec
clarified treatment of unnamed PThm nodes (from close_derivation): retain full proof, publish when named;
 wenzelm parents: 
70399diff
changeset | 175 | |
| 70541 
f3fbc7f3559d
more careful treatment of hidden type variable names: smash before zero_var_indexes to get standard enumeration;
 wenzelm parents: 
70540diff
changeset | 176 | val standard_vars: Name.context -> term * proof option -> term * proof option | 
| 70529 | 177 | val standard_vars_term: Name.context -> term -> term | 
| 70843 
cc987440d776
more compact XML: separate environment for free variables;
 wenzelm parents: 
70839diff
changeset | 178 | val add_standard_vars: proof -> (string * typ) list -> (string * typ) list | 
| 
cc987440d776
more compact XML: separate environment for free variables;
 wenzelm parents: 
70839diff
changeset | 179 | val add_standard_vars_term: term -> (string * typ) list -> (string * typ) list | 
| 70529 | 180 | |
| 70604 | 181 | val export_enabled: unit -> bool | 
| 70983 | 182 | val export_standard_enabled: unit -> bool | 
| 70984 | 183 | val export_proof_boxes_required: theory -> bool | 
| 71018 
d32ed8927a42
more robust expose_proofs corresponding to register_proofs/consolidate_theory;
 wenzelm parents: 
71010diff
changeset | 184 | val export_proof_boxes: proof_body list -> unit | 
| 36877 
7699f7fafde7
added Proofterm.get_name variants according to krauss/schropp;
 wenzelm parents: 
36742diff
changeset | 185 | val fulfill_norm_proof: theory -> (serial * proof_body) list -> proof_body -> proof_body | 
| 80295 
8a9588ffc133
more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
 wenzelm parents: 
80288diff
changeset | 186 | val thm_proof: theory -> sorts_proof -> Thm_Name.P -> sort list -> term list -> | 
| 79425 | 187 | term -> (serial * proof_body future) list -> proof_body -> proof_body | 
| 188 | val unconstrain_thm_proof: theory -> sorts_proof -> sort list -> | |
| 189 | term -> (serial * proof_body future) list -> proof_body -> term * proof_body | |
| 77869 | 190 | val get_identity: sort list -> term list -> term -> proof -> | 
| 80295 
8a9588ffc133
more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
 wenzelm parents: 
80288diff
changeset | 191 |     {serial: serial, theory_name: string, thm_name: Thm_Name.T} option
 | 
| 
8a9588ffc133
more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
 wenzelm parents: 
80288diff
changeset | 192 | val get_approximative_name: sort list -> term list -> term -> proof -> Thm_Name.T | 
| 70577 
ed651a58afe4
back to uniform serial (reverting 913b4afb6ac2): this allows to treat derivation id like name space entity id;
 wenzelm parents: 
70573diff
changeset | 193 |   type thm_id = {serial: serial, theory_name: string}
 | 
| 70895 
2a318149b01b
proof boxes based on proof digest (not proof term): thus it works with prune_proofs;
 wenzelm parents: 
70892diff
changeset | 194 | val make_thm_id: serial * string -> thm_id | 
| 70915 
bd4d37edfee4
clarified expand_proof/expand_name: allow more detailed control via thm_header;
 wenzelm parents: 
70909diff
changeset | 195 | val thm_header_id: thm_header -> thm_id | 
| 70595 
2ae7e33c950f
clarified thm_id vs. thm_node/thm: retain theory_name;
 wenzelm parents: 
70593diff
changeset | 196 | val thm_id: thm -> thm_id | 
| 77869 | 197 | val get_id: sort list -> term list -> term -> proof -> thm_id option | 
| 70979 | 198 | val this_id: thm_id option -> thm_id -> bool | 
| 70976 
d86798eddc14
more accurate proof_boxes -- from actual proof body;
 wenzelm parents: 
70948diff
changeset | 199 |   val proof_boxes: {excluded: thm_id -> bool, included: thm_id -> bool} ->
 | 
| 
d86798eddc14
more accurate proof_boxes -- from actual proof body;
 wenzelm parents: 
70948diff
changeset | 200 | proof list -> (thm_header * proof) list (*exception MIN_PROOF*) | 
| 11519 | 201 | end | 
| 202 | ||
| 203 | structure Proofterm : PROOFTERM = | |
| 204 | struct | |
| 205 | ||
| 70397 | 206 | (** datatype proof **) | 
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 207 | |
| 70493 | 208 | type thm_header = | 
| 80295 
8a9588ffc133
more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
 wenzelm parents: 
80288diff
changeset | 209 |   {serial: serial, pos: Position.T list, theory_name: string, thm_name: Thm_Name.T,
 | 
| 70538 
fc9ba6fe367f
clarified PThm: theory_name simplifies retrieval from exports;
 wenzelm parents: 
70534diff
changeset | 210 | prop: term, types: typ list option}; | 
| 70493 | 211 | |
| 11519 | 212 | datatype proof = | 
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 213 | MinProof | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 214 | | PBound of int | 
| 11519 | 215 | | Abst of string * typ option * proof | 
| 216 | | AbsP of string * term option * proof | |
| 12497 | 217 | | op % of proof * term option | 
| 218 | | op %% of proof * proof | |
| 11519 | 219 | | Hyp of term | 
| 220 | | PAxm of string * term * typ list option | |
| 71777 
3875815f5967
clarified signature: avoid clash with Isabelle/Scala Term.OFCLASS on case-insensible file-system;
 wenzelm parents: 
71533diff
changeset | 221 | | PClass of typ * class | 
| 70834 | 222 | | Oracle of string * term * typ list option | 
| 70493 | 223 | | PThm of thm_header * thm_body | 
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 224 | and proof_body = PBody of | 
| 77867 | 225 |   {oracles: ((string * Position.T) * term option) Ord_List.T,
 | 
| 77866 | 226 | thms: (serial * thm_node) Ord_List.T, | 
| 79263 | 227 | zboxes: ZTerm.zboxes, | 
| 79220 | 228 | zproof: zproof, | 
| 229 | proof: proof} | |
| 70493 | 230 | and thm_body = | 
| 71018 
d32ed8927a42
more robust expose_proofs corresponding to register_proofs/consolidate_theory;
 wenzelm parents: 
71010diff
changeset | 231 |   Thm_Body of {open_proof: proof -> proof, body: proof_body future}
 | 
| 64574 
1134e4d5e5b7
consolidate nested thms with persistent result, for improved performance;
 wenzelm parents: 
64573diff
changeset | 232 | and thm_node = | 
| 80295 
8a9588ffc133
more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
 wenzelm parents: 
80288diff
changeset | 233 |   Thm_Node of {theory_name: string, thm_name: Thm_Name.T, prop: term,
 | 
| 71018 
d32ed8927a42
more robust expose_proofs corresponding to register_proofs/consolidate_theory;
 wenzelm parents: 
71010diff
changeset | 234 | body: proof_body future, export: unit lazy, consolidate: unit lazy}; | 
| 11519 | 235 | |
| 77867 | 236 | type oracle = (string * Position.T) * term option; | 
| 237 | val oracle_ord: oracle ord = | |
| 238 | prod_ord (prod_ord fast_string_ord Position.ord) (option_ord Term_Ord.fast_term_ord); | |
| 239 | ||
| 70590 | 240 | type thm = serial * thm_node; | 
| 77866 | 241 | val thm_ord: thm ord = fn ((i, _), (j, _)) => int_ord (j, i); | 
| 28815 | 242 | |
| 70587 | 243 | |
| 70976 
d86798eddc14
more accurate proof_boxes -- from actual proof body;
 wenzelm parents: 
70948diff
changeset | 244 | exception MIN_PROOF of unit; | 
| 
d86798eddc14
more accurate proof_boxes -- from actual proof body;
 wenzelm parents: 
70948diff
changeset | 245 | |
| 79220 | 246 | fun proof_of (PBody {proof, ...}) = proof;
 | 
| 247 | fun zproof_of (PBody {zproof, ...}) = zproof;
 | |
| 32094 
89b9210c7506
prefer simultaneous join -- for improved scheduling;
 wenzelm parents: 
32057diff
changeset | 248 | val join_proof = Future.join #> proof_of; | 
| 17017 | 249 | |
| 79220 | 250 | fun map_proof_of f (PBody {oracles, thms, zboxes, zproof, proof}) =
 | 
| 251 |   PBody {oracles = oracles, thms = thms, zboxes = zboxes, zproof = zproof, proof = f proof};
 | |
| 252 | ||
| 79333 
56b604882d0b
more thorough treatment of zproof vs. proof: avoid accidental storage of large structures;
 wenzelm parents: 
79332diff
changeset | 253 | fun no_proof (PBody {oracles, thms, zboxes, zproof, ...}) =
 | 
| 
56b604882d0b
more thorough treatment of zproof vs. proof: avoid accidental storage of large structures;
 wenzelm parents: 
79332diff
changeset | 254 |   PBody {oracles = oracles, thms = thms, zboxes = zboxes, zproof = zproof, proof = MinProof};
 | 
| 70396 | 255 | |
| 80295 
8a9588ffc133
more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
 wenzelm parents: 
80288diff
changeset | 256 | fun thm_header serial pos theory_name thm_name prop types : thm_header = | 
| 
8a9588ffc133
more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
 wenzelm parents: 
80288diff
changeset | 257 |   {serial = serial, pos = pos, theory_name = theory_name, thm_name = thm_name,
 | 
| 
8a9588ffc133
more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
 wenzelm parents: 
80288diff
changeset | 258 | prop = prop, types = types}; | 
| 70493 | 259 | |
| 71018 
d32ed8927a42
more robust expose_proofs corresponding to register_proofs/consolidate_theory;
 wenzelm parents: 
71010diff
changeset | 260 | fun thm_body body = Thm_Body {open_proof = I, body = Future.value body};
 | 
| 70493 | 261 | fun thm_body_proof_raw (Thm_Body {body, ...}) = join_proof body;
 | 
| 70502 
b053c9ed0b0a
more careful export of unnamed proof boxes: avoid duplicates via memoing;
 wenzelm parents: 
70501diff
changeset | 262 | fun thm_body_proof_open (Thm_Body {open_proof, body, ...}) = open_proof (join_proof body);
 | 
| 70493 | 263 | |
| 64574 
1134e4d5e5b7
consolidate nested thms with persistent result, for improved performance;
 wenzelm parents: 
64573diff
changeset | 264 | fun rep_thm_node (Thm_Node args) = args; | 
| 70595 
2ae7e33c950f
clarified thm_id vs. thm_node/thm: retain theory_name;
 wenzelm parents: 
70593diff
changeset | 265 | val thm_node_theory_name = #theory_name o rep_thm_node; | 
| 80295 
8a9588ffc133
more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
 wenzelm parents: 
80288diff
changeset | 266 | val thm_node_name = #thm_name o rep_thm_node; | 
| 64574 
1134e4d5e5b7
consolidate nested thms with persistent result, for improved performance;
 wenzelm parents: 
64573diff
changeset | 267 | val thm_node_prop = #prop o rep_thm_node; | 
| 
1134e4d5e5b7
consolidate nested thms with persistent result, for improved performance;
 wenzelm parents: 
64573diff
changeset | 268 | val thm_node_body = #body o rep_thm_node; | 
| 70595 
2ae7e33c950f
clarified thm_id vs. thm_node/thm: retain theory_name;
 wenzelm parents: 
70593diff
changeset | 269 | val thm_node_thms = thm_node_body #> Future.join #> (fn PBody {thms, ...} => thms);
 | 
| 71018 
d32ed8927a42
more robust expose_proofs corresponding to register_proofs/consolidate_theory;
 wenzelm parents: 
71010diff
changeset | 270 | val thm_node_export = #export o rep_thm_node; | 
| 64574 
1134e4d5e5b7
consolidate nested thms with persistent result, for improved performance;
 wenzelm parents: 
64573diff
changeset | 271 | val thm_node_consolidate = #consolidate o rep_thm_node; | 
| 64573 | 272 | |
| 77866 | 273 | fun join_thms (thms: thm list) = | 
| 274 | Future.joins (map (thm_node_body o #2) thms); | |
| 64574 
1134e4d5e5b7
consolidate nested thms with persistent result, for improved performance;
 wenzelm parents: 
64573diff
changeset | 275 | |
| 71018 
d32ed8927a42
more robust expose_proofs corresponding to register_proofs/consolidate_theory;
 wenzelm parents: 
71010diff
changeset | 276 | val consolidate_bodies = | 
| 77866 | 277 |   maps (fn PBody {thms, ...} => map (thm_node_consolidate o #2) thms)
 | 
| 67669 | 278 | #> Lazy.consolidate #> map Lazy.force #> ignore; | 
| 64574 
1134e4d5e5b7
consolidate nested thms with persistent result, for improved performance;
 wenzelm parents: 
64573diff
changeset | 279 | |
| 80295 
8a9588ffc133
more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
 wenzelm parents: 
80288diff
changeset | 280 | fun make_thm_node theory_name thm_name prop body export = | 
| 71018 
d32ed8927a42
more robust expose_proofs corresponding to register_proofs/consolidate_theory;
 wenzelm parents: 
71010diff
changeset | 281 | let | 
| 
d32ed8927a42
more robust expose_proofs corresponding to register_proofs/consolidate_theory;
 wenzelm parents: 
71010diff
changeset | 282 | val consolidate = | 
| 66167 | 283 | Lazy.lazy_name "Proofterm.make_thm_node" (fn () => | 
| 71022 
6504ea98623c
uniform "prune_proofs" for Thm_Node / PThm, but it is in conflict with export_proofs of re-used nodes;
 wenzelm parents: 
71018diff
changeset | 284 |         let val PBody {thms, ...} = Future.join body
 | 
| 71018 
d32ed8927a42
more robust expose_proofs corresponding to register_proofs/consolidate_theory;
 wenzelm parents: 
71010diff
changeset | 285 | in consolidate_bodies (join_thms thms) end); | 
| 
d32ed8927a42
more robust expose_proofs corresponding to register_proofs/consolidate_theory;
 wenzelm parents: 
71010diff
changeset | 286 | in | 
| 80295 
8a9588ffc133
more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
 wenzelm parents: 
80288diff
changeset | 287 |     Thm_Node {theory_name = theory_name, thm_name = thm_name, prop = prop, body = body,
 | 
| 71018 
d32ed8927a42
more robust expose_proofs corresponding to register_proofs/consolidate_theory;
 wenzelm parents: 
71010diff
changeset | 288 | export = export, consolidate = consolidate} | 
| 
d32ed8927a42
more robust expose_proofs corresponding to register_proofs/consolidate_theory;
 wenzelm parents: 
71010diff
changeset | 289 | end; | 
| 
d32ed8927a42
more robust expose_proofs corresponding to register_proofs/consolidate_theory;
 wenzelm parents: 
71010diff
changeset | 290 | |
| 
d32ed8927a42
more robust expose_proofs corresponding to register_proofs/consolidate_theory;
 wenzelm parents: 
71010diff
changeset | 291 | val no_export = Lazy.value (); | 
| 44333 
cc53ce50f738
reverted to join_bodies/join_proofs based on fold_body_thms to regain performance (escpecially of HOL-Proofs) -- see also aa9c1e9ef2ce and 4e2abb045eac;
 wenzelm parents: 
44332diff
changeset | 292 | |
| 80295 
8a9588ffc133
more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
 wenzelm parents: 
80288diff
changeset | 293 | fun make_thm ({serial, theory_name, thm_name, prop, ...}: thm_header) (Thm_Body {body, ...}) =
 | 
| 
8a9588ffc133
more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
 wenzelm parents: 
80288diff
changeset | 294 | (serial, make_thm_node theory_name thm_name prop body no_export); | 
| 70589 | 295 | |
| 17017 | 296 | |
| 70397 | 297 | (* proof atoms *) | 
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 298 | |
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 299 | fun fold_proof_atoms all f = | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 300 | let | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 301 | fun app (Abst (_, _, prf)) = app prf | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 302 | | app (AbsP (_, _, prf)) = app prf | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 303 | | app (prf % _) = app prf | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 304 | | app (prf1 %% prf2) = app prf1 #> app prf2 | 
| 70493 | 305 |       | app (prf as PThm ({serial = i, ...}, Thm_Body {body, ...})) = (fn (x, seen) =>
 | 
| 77820 | 306 | if Intset.member seen i then (x, seen) | 
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 307 | else | 
| 28815 | 308 | let val (x', seen') = | 
| 77820 | 309 | (if all then app (join_proof body) else I) (x, Intset.insert i seen) | 
| 28815 | 310 | in (f prf x', seen') end) | 
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 311 | | app prf = (fn (x, seen) => (f prf x, seen)); | 
| 77820 | 312 | in fn prfs => fn x => #1 (fold app prfs (x, Intset.empty)) end; | 
| 19357 
dade85a75c9f
Added alternative version of thms_of_proof that does not recursively
 berghofe parents: 
19304diff
changeset | 313 | |
| 30711 | 314 | fun fold_body_thms f = | 
| 315 | let | |
| 32726 | 316 |     fun app (PBody {thms, ...}) =
 | 
| 77866 | 317 | tap join_thms thms |> fold (fn (i, thm_node) => fn (x, seen) => | 
| 77820 | 318 | if Intset.member seen i then (x, seen) | 
| 32094 
89b9210c7506
prefer simultaneous join -- for improved scheduling;
 wenzelm parents: 
32057diff
changeset | 319 | else | 
| 
89b9210c7506
prefer simultaneous join -- for improved scheduling;
 wenzelm parents: 
32057diff
changeset | 320 | let | 
| 80295 
8a9588ffc133
more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
 wenzelm parents: 
80288diff
changeset | 321 | val thm_name = thm_node_name thm_node; | 
| 64574 
1134e4d5e5b7
consolidate nested thms with persistent result, for improved performance;
 wenzelm parents: 
64573diff
changeset | 322 | val prop = thm_node_prop thm_node; | 
| 
1134e4d5e5b7
consolidate nested thms with persistent result, for improved performance;
 wenzelm parents: 
64573diff
changeset | 323 | val body = Future.join (thm_node_body thm_node); | 
| 77820 | 324 | val (x', seen') = app body (x, Intset.insert i seen); | 
| 80295 
8a9588ffc133
more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
 wenzelm parents: 
80288diff
changeset | 325 |           in (f {serial = i, thm_name = thm_name, prop = prop, body = body} x', seen') end);
 | 
| 77820 | 326 | in fn bodies => fn x => #1 (fold app bodies (x, Intset.empty)) end; | 
| 30711 | 327 | |
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 328 | |
| 28815 | 329 | (* proof body *) | 
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 330 | |
| 77874 | 331 | val union_oracles = Ord_List.union oracle_ord; | 
| 77867 | 332 | val unions_oracles = Ord_List.unions oracle_ord; | 
| 77874 | 333 | |
| 334 | val union_thms = Ord_List.union thm_ord; | |
| 77866 | 335 | val unions_thms = Ord_List.unions thm_ord; | 
| 336 | ||
| 79220 | 337 | fun no_proof_body zproof proof = | 
| 79279 | 338 |   PBody {oracles = [], thms = [], zboxes = [], zproof = zproof, proof = proof};
 | 
| 79220 | 339 | val no_thm_body = thm_body (no_proof_body ZDummy MinProof); | 
| 52424 
77075c576d4c
support for XML data representation of proof terms;
 wenzelm parents: 
51700diff
changeset | 340 | |
| 70916 
4c15217d6266
clarified signature: name of standard_proof is authentic, otherwise empty;
 wenzelm parents: 
70915diff
changeset | 341 | fun no_thm_names (Abst (x, T, prf)) = Abst (x, T, no_thm_names prf) | 
| 
4c15217d6266
clarified signature: name of standard_proof is authentic, otherwise empty;
 wenzelm parents: 
70915diff
changeset | 342 | | no_thm_names (AbsP (x, t, prf)) = AbsP (x, t, no_thm_names prf) | 
| 
4c15217d6266
clarified signature: name of standard_proof is authentic, otherwise empty;
 wenzelm parents: 
70915diff
changeset | 343 | | no_thm_names (prf % t) = no_thm_names prf % t | 
| 
4c15217d6266
clarified signature: name of standard_proof is authentic, otherwise empty;
 wenzelm parents: 
70915diff
changeset | 344 | | no_thm_names (prf1 %% prf2) = no_thm_names prf1 %% no_thm_names prf2 | 
| 80295 
8a9588ffc133
more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
 wenzelm parents: 
80288diff
changeset | 345 |   | no_thm_names (PThm ({serial, pos, theory_name, thm_name = _, prop, types}, thm_body)) =
 | 
| 
8a9588ffc133
more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
 wenzelm parents: 
80288diff
changeset | 346 | PThm (thm_header serial pos theory_name Thm_Name.empty prop types, thm_body) | 
| 70916 
4c15217d6266
clarified signature: name of standard_proof is authentic, otherwise empty;
 wenzelm parents: 
70915diff
changeset | 347 | | no_thm_names a = a; | 
| 
4c15217d6266
clarified signature: name of standard_proof is authentic, otherwise empty;
 wenzelm parents: 
70915diff
changeset | 348 | |
| 70493 | 349 | fun no_thm_proofs (Abst (x, T, prf)) = Abst (x, T, no_thm_proofs prf) | 
| 52424 
77075c576d4c
support for XML data representation of proof terms;
 wenzelm parents: 
51700diff
changeset | 350 | | no_thm_proofs (AbsP (x, t, prf)) = AbsP (x, t, no_thm_proofs prf) | 
| 
77075c576d4c
support for XML data representation of proof terms;
 wenzelm parents: 
51700diff
changeset | 351 | | no_thm_proofs (prf % t) = no_thm_proofs prf % t | 
| 
77075c576d4c
support for XML data representation of proof terms;
 wenzelm parents: 
51700diff
changeset | 352 | | no_thm_proofs (prf1 %% prf2) = no_thm_proofs prf1 %% no_thm_proofs prf2 | 
| 70493 | 353 | | no_thm_proofs (PThm (header, _)) = PThm (header, no_thm_body) | 
| 52424 
77075c576d4c
support for XML data representation of proof terms;
 wenzelm parents: 
51700diff
changeset | 354 | | no_thm_proofs a = a; | 
| 
77075c576d4c
support for XML data representation of proof terms;
 wenzelm parents: 
51700diff
changeset | 355 | |
| 70493 | 356 | fun no_body_proofs (Abst (x, T, prf)) = Abst (x, T, no_body_proofs prf) | 
| 70440 | 357 | | no_body_proofs (AbsP (x, t, prf)) = AbsP (x, t, no_body_proofs prf) | 
| 358 | | no_body_proofs (prf % t) = no_body_proofs prf % t | |
| 359 | | no_body_proofs (prf1 %% prf2) = no_body_proofs prf1 %% no_body_proofs prf2 | |
| 71018 
d32ed8927a42
more robust expose_proofs corresponding to register_proofs/consolidate_theory;
 wenzelm parents: 
71010diff
changeset | 360 |   | no_body_proofs (PThm (header, Thm_Body {open_proof, body})) =
 | 
| 70502 
b053c9ed0b0a
more careful export of unnamed proof boxes: avoid duplicates via memoing;
 wenzelm parents: 
70501diff
changeset | 361 | let | 
| 79220 | 362 |         val PBody {zproof, proof, ...} = Future.join body;
 | 
| 363 | val body' = Future.value (no_proof_body zproof proof); | |
| 71018 
d32ed8927a42
more robust expose_proofs corresponding to register_proofs/consolidate_theory;
 wenzelm parents: 
71010diff
changeset | 364 |         val thm_body' = Thm_Body {open_proof = open_proof, body = body'};
 | 
| 70502 
b053c9ed0b0a
more careful export of unnamed proof boxes: avoid duplicates via memoing;
 wenzelm parents: 
70501diff
changeset | 365 | in PThm (header, thm_body') end | 
| 70440 | 366 | | no_body_proofs a = a; | 
| 367 | ||
| 52424 
77075c576d4c
support for XML data representation of proof terms;
 wenzelm parents: 
51700diff
changeset | 368 | |
| 70397 | 369 | |
| 370 | (** XML data representation **) | |
| 52424 
77075c576d4c
support for XML data representation of proof terms;
 wenzelm parents: 
51700diff
changeset | 371 | |
| 
77075c576d4c
support for XML data representation of proof terms;
 wenzelm parents: 
51700diff
changeset | 372 | (* encode *) | 
| 
77075c576d4c
support for XML data representation of proof terms;
 wenzelm parents: 
51700diff
changeset | 373 | |
| 
77075c576d4c
support for XML data representation of proof terms;
 wenzelm parents: 
51700diff
changeset | 374 | local | 
| 
77075c576d4c
support for XML data representation of proof terms;
 wenzelm parents: 
51700diff
changeset | 375 | |
| 
77075c576d4c
support for XML data representation of proof terms;
 wenzelm parents: 
51700diff
changeset | 376 | open XML.Encode Term_XML.Encode; | 
| 
77075c576d4c
support for XML data representation of proof terms;
 wenzelm parents: 
51700diff
changeset | 377 | |
| 70784 
799437173553
Term_XML.Encode/Decode.term uses Const "typargs";
 wenzelm parents: 
70604diff
changeset | 378 | fun proof consts prf = prf |> variant | 
| 52424 
77075c576d4c
support for XML data representation of proof terms;
 wenzelm parents: 
51700diff
changeset | 379 | [fn MinProof => ([], []), | 
| 70844 | 380 | fn PBound a => ([], int a), | 
| 70784 
799437173553
Term_XML.Encode/Decode.term uses Const "typargs";
 wenzelm parents: 
70604diff
changeset | 381 | fn Abst (a, b, c) => ([a], pair (option typ) (proof consts) (b, c)), | 
| 
799437173553
Term_XML.Encode/Decode.term uses Const "typargs";
 wenzelm parents: 
70604diff
changeset | 382 | fn AbsP (a, b, c) => ([a], pair (option (term consts)) (proof consts) (b, c)), | 
| 
799437173553
Term_XML.Encode/Decode.term uses Const "typargs";
 wenzelm parents: 
70604diff
changeset | 383 | fn a % b => ([], pair (proof consts) (option (term consts)) (a, b)), | 
| 
799437173553
Term_XML.Encode/Decode.term uses Const "typargs";
 wenzelm parents: 
70604diff
changeset | 384 | fn a %% b => ([], pair (proof consts) (proof consts) (a, b)), | 
| 
799437173553
Term_XML.Encode/Decode.term uses Const "typargs";
 wenzelm parents: 
70604diff
changeset | 385 | fn Hyp a => ([], term consts a), | 
| 
799437173553
Term_XML.Encode/Decode.term uses Const "typargs";
 wenzelm parents: 
70604diff
changeset | 386 | fn PAxm (a, b, c) => ([a], pair (term consts) (option (list typ)) (b, c)), | 
| 71777 
3875815f5967
clarified signature: avoid clash with Isabelle/Scala Term.OFCLASS on case-insensible file-system;
 wenzelm parents: 
71533diff
changeset | 387 | fn PClass (a, b) => ([b], typ a), | 
| 70834 | 388 | fn Oracle (a, b, c) => ([a], pair (term consts) (option (list typ)) (b, c)), | 
| 80295 
8a9588ffc133
more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
 wenzelm parents: 
80288diff
changeset | 389 |   fn PThm ({serial, pos, theory_name, thm_name, prop, types}, Thm_Body {open_proof, body, ...}) =>
 | 
| 
8a9588ffc133
more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
 wenzelm parents: 
80288diff
changeset | 390 | ([int_atom serial, theory_name, #1 thm_name, int_atom (#2 thm_name)], | 
| 70784 
799437173553
Term_XML.Encode/Decode.term uses Const "typargs";
 wenzelm parents: 
70604diff
changeset | 391 | pair (list properties) (pair (term consts) (pair (option (list typ)) (proof_body consts))) | 
| 79113 
5109e4b2a292
pro-forma support for optional zproof: no proper content yet;
 wenzelm parents: 
79112diff
changeset | 392 | (map Position.properties_of pos, | 
| 79220 | 393 | (prop, (types, map_proof_of open_proof (Future.join body)))))] | 
| 394 | and proof_body consts (PBody {oracles, thms, zboxes = _, zproof = _, proof = prf}) =
 | |
| 71465 
910a081cca74
more position information for oracles (e.g. "skip_proof" for 'sorry'), requires Proofterm.proofs := 1;
 wenzelm parents: 
71022diff
changeset | 395 | triple (list (pair (pair string (properties o Position.properties_of)) | 
| 77867 | 396 | (option (term consts)))) (list (thm consts)) (proof consts) (oracles, thms, prf) | 
| 70784 
799437173553
Term_XML.Encode/Decode.term uses Const "typargs";
 wenzelm parents: 
70604diff
changeset | 397 | and thm consts (a, thm_node) = | 
| 80311 | 398 | pair int (pair string (pair Thm_Name.encode (pair (term consts) (proof_body consts)))) | 
| 70595 
2ae7e33c950f
clarified thm_id vs. thm_node/thm: retain theory_name;
 wenzelm parents: 
70593diff
changeset | 399 | (a, (thm_node_theory_name thm_node, (thm_node_name thm_node, (thm_node_prop thm_node, | 
| 
2ae7e33c950f
clarified thm_id vs. thm_node/thm: retain theory_name;
 wenzelm parents: 
70593diff
changeset | 400 | (Future.join (thm_node_body thm_node)))))); | 
| 52424 
77075c576d4c
support for XML data representation of proof terms;
 wenzelm parents: 
51700diff
changeset | 401 | |
| 70843 
cc987440d776
more compact XML: separate environment for free variables;
 wenzelm parents: 
70839diff
changeset | 402 | fun standard_term consts t = t |> variant | 
| 
cc987440d776
more compact XML: separate environment for free variables;
 wenzelm parents: 
70839diff
changeset | 403 | [fn Const (a, b) => ([a], list typ (Consts.typargs consts (a, b))), | 
| 
cc987440d776
more compact XML: separate environment for free variables;
 wenzelm parents: 
70839diff
changeset | 404 | fn Free (a, _) => ([a], []), | 
| 
cc987440d776
more compact XML: separate environment for free variables;
 wenzelm parents: 
70839diff
changeset | 405 | fn Var (a, _) => (indexname a, []), | 
| 70844 | 406 | fn Bound a => ([], int a), | 
| 70843 
cc987440d776
more compact XML: separate environment for free variables;
 wenzelm parents: 
70839diff
changeset | 407 | fn Abs (a, b, c) => ([a], pair typ (standard_term consts) (b, c)), | 
| 
cc987440d776
more compact XML: separate environment for free variables;
 wenzelm parents: 
70839diff
changeset | 408 | fn op $ a => ([], pair (standard_term consts) (standard_term consts) a)]; | 
| 
cc987440d776
more compact XML: separate environment for free variables;
 wenzelm parents: 
70839diff
changeset | 409 | |
| 70829 | 410 | fun standard_proof consts prf = prf |> variant | 
| 70534 
fb876ebbf5a7
export facts with reconstructed proof term (if possible), but its PThm boxes need to be collected separately;
 wenzelm parents: 
70531diff
changeset | 411 | [fn MinProof => ([], []), | 
| 70844 | 412 | fn PBound a => ([], int a), | 
| 70829 | 413 | fn Abst (a, SOME b, c) => ([a], pair typ (standard_proof consts) (b, c)), | 
| 70843 
cc987440d776
more compact XML: separate environment for free variables;
 wenzelm parents: 
70839diff
changeset | 414 | fn AbsP (a, SOME b, c) => ([a], pair (standard_term consts) (standard_proof consts) (b, c)), | 
| 
cc987440d776
more compact XML: separate environment for free variables;
 wenzelm parents: 
70839diff
changeset | 415 | fn a % SOME b => ([], pair (standard_proof consts) (standard_term consts) (a, b)), | 
| 70829 | 416 | fn a %% b => ([], pair (standard_proof consts) (standard_proof consts) (a, b)), | 
| 70843 
cc987440d776
more compact XML: separate environment for free variables;
 wenzelm parents: 
70839diff
changeset | 417 | fn Hyp a => ([], standard_term consts a), | 
| 70534 
fb876ebbf5a7
export facts with reconstructed proof term (if possible), but its PThm boxes need to be collected separately;
 wenzelm parents: 
70531diff
changeset | 418 | fn PAxm (name, _, SOME Ts) => ([name], list typ Ts), | 
| 71777 
3875815f5967
clarified signature: avoid clash with Isabelle/Scala Term.OFCLASS on case-insensible file-system;
 wenzelm parents: 
71533diff
changeset | 419 | fn PClass (T, c) => ([c], typ T), | 
| 70843 
cc987440d776
more compact XML: separate environment for free variables;
 wenzelm parents: 
70839diff
changeset | 420 | fn Oracle (name, prop, SOME Ts) => ([name], pair (standard_term consts) (list typ) (prop, Ts)), | 
| 80295 
8a9588ffc133
more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
 wenzelm parents: 
80288diff
changeset | 421 |   fn PThm ({serial, theory_name, thm_name, types = SOME Ts, ...}, _) =>
 | 
| 
8a9588ffc133
more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
 wenzelm parents: 
80288diff
changeset | 422 | ([int_atom serial, theory_name, #1 thm_name, int_atom (#2 thm_name)], list typ Ts)]; | 
| 70534 
fb876ebbf5a7
export facts with reconstructed proof term (if possible), but its PThm boxes need to be collected separately;
 wenzelm parents: 
70531diff
changeset | 423 | |
| 52424 
77075c576d4c
support for XML data representation of proof terms;
 wenzelm parents: 
51700diff
changeset | 424 | in | 
| 
77075c576d4c
support for XML data representation of proof terms;
 wenzelm parents: 
51700diff
changeset | 425 | |
| 
77075c576d4c
support for XML data representation of proof terms;
 wenzelm parents: 
51700diff
changeset | 426 | val encode = proof; | 
| 
77075c576d4c
support for XML data representation of proof terms;
 wenzelm parents: 
51700diff
changeset | 427 | val encode_body = proof_body; | 
| 70843 
cc987440d776
more compact XML: separate environment for free variables;
 wenzelm parents: 
70839diff
changeset | 428 | val encode_standard_term = standard_term; | 
| 
cc987440d776
more compact XML: separate environment for free variables;
 wenzelm parents: 
70839diff
changeset | 429 | val encode_standard_proof = standard_proof; | 
| 52424 
77075c576d4c
support for XML data representation of proof terms;
 wenzelm parents: 
51700diff
changeset | 430 | |
| 
77075c576d4c
support for XML data representation of proof terms;
 wenzelm parents: 
51700diff
changeset | 431 | end; | 
| 
77075c576d4c
support for XML data representation of proof terms;
 wenzelm parents: 
51700diff
changeset | 432 | |
| 
77075c576d4c
support for XML data representation of proof terms;
 wenzelm parents: 
51700diff
changeset | 433 | |
| 
77075c576d4c
support for XML data representation of proof terms;
 wenzelm parents: 
51700diff
changeset | 434 | (* decode *) | 
| 
77075c576d4c
support for XML data representation of proof terms;
 wenzelm parents: 
51700diff
changeset | 435 | |
| 
77075c576d4c
support for XML data representation of proof terms;
 wenzelm parents: 
51700diff
changeset | 436 | local | 
| 
77075c576d4c
support for XML data representation of proof terms;
 wenzelm parents: 
51700diff
changeset | 437 | |
| 
77075c576d4c
support for XML data representation of proof terms;
 wenzelm parents: 
51700diff
changeset | 438 | open XML.Decode Term_XML.Decode; | 
| 
77075c576d4c
support for XML data representation of proof terms;
 wenzelm parents: 
51700diff
changeset | 439 | |
| 70784 
799437173553
Term_XML.Encode/Decode.term uses Const "typargs";
 wenzelm parents: 
70604diff
changeset | 440 | fun proof consts prf = prf |> variant | 
| 52424 
77075c576d4c
support for XML data representation of proof terms;
 wenzelm parents: 
51700diff
changeset | 441 | [fn ([], []) => MinProof, | 
| 70844 | 442 | fn ([], a) => PBound (int a), | 
| 70784 
799437173553
Term_XML.Encode/Decode.term uses Const "typargs";
 wenzelm parents: 
70604diff
changeset | 443 | fn ([a], b) => let val (c, d) = pair (option typ) (proof consts) b in Abst (a, c, d) end, | 
| 
799437173553
Term_XML.Encode/Decode.term uses Const "typargs";
 wenzelm parents: 
70604diff
changeset | 444 | fn ([a], b) => let val (c, d) = pair (option (term consts)) (proof consts) b in AbsP (a, c, d) end, | 
| 
799437173553
Term_XML.Encode/Decode.term uses Const "typargs";
 wenzelm parents: 
70604diff
changeset | 445 | fn ([], a) => op % (pair (proof consts) (option (term consts)) a), | 
| 
799437173553
Term_XML.Encode/Decode.term uses Const "typargs";
 wenzelm parents: 
70604diff
changeset | 446 | fn ([], a) => op %% (pair (proof consts) (proof consts) a), | 
| 
799437173553
Term_XML.Encode/Decode.term uses Const "typargs";
 wenzelm parents: 
70604diff
changeset | 447 | fn ([], a) => Hyp (term consts a), | 
| 
799437173553
Term_XML.Encode/Decode.term uses Const "typargs";
 wenzelm parents: 
70604diff
changeset | 448 | fn ([a], b) => let val (c, d) = pair (term consts) (option (list typ)) b in PAxm (a, c, d) end, | 
| 71777 
3875815f5967
clarified signature: avoid clash with Isabelle/Scala Term.OFCLASS on case-insensible file-system;
 wenzelm parents: 
71533diff
changeset | 449 | fn ([b], a) => PClass (typ a, b), | 
| 70834 | 450 | fn ([a], b) => let val (c, d) = pair (term consts) (option (list typ)) b in Oracle (a, c, d) end, | 
| 80295 
8a9588ffc133
more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
 wenzelm parents: 
80288diff
changeset | 451 | fn ([a, b, c, d], e) => | 
| 70497 | 452 | let | 
| 80295 
8a9588ffc133
more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
 wenzelm parents: 
80288diff
changeset | 453 | val ((x, (y, (z, w)))) = | 
| 
8a9588ffc133
more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
 wenzelm parents: 
80288diff
changeset | 454 | pair (list properties) (pair (term consts) (pair (option (list typ)) (proof_body consts))) e; | 
| 
8a9588ffc133
more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
 wenzelm parents: 
80288diff
changeset | 455 | val header = thm_header (int_atom a) (map Position.of_properties x) b (c, int_atom d) y z; | 
| 
8a9588ffc133
more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
 wenzelm parents: 
80288diff
changeset | 456 | in PThm (header, thm_body w) end] | 
| 70784 
799437173553
Term_XML.Encode/Decode.term uses Const "typargs";
 wenzelm parents: 
70604diff
changeset | 457 | and proof_body consts x = | 
| 
799437173553
Term_XML.Encode/Decode.term uses Const "typargs";
 wenzelm parents: 
70604diff
changeset | 458 | let | 
| 
799437173553
Term_XML.Encode/Decode.term uses Const "typargs";
 wenzelm parents: 
70604diff
changeset | 459 | val (a, b, c) = | 
| 71465 
910a081cca74
more position information for oracles (e.g. "skip_proof" for 'sorry'), requires Proofterm.proofs := 1;
 wenzelm parents: 
71022diff
changeset | 460 | triple (list (pair (pair string (Position.of_properties o properties)) | 
| 
910a081cca74
more position information for oracles (e.g. "skip_proof" for 'sorry'), requires Proofterm.proofs := 1;
 wenzelm parents: 
71022diff
changeset | 461 | (option (term consts)))) (list (thm consts)) (proof consts) x; | 
| 79279 | 462 |   in PBody {oracles = a, thms = b, zboxes = [], zproof = ZDummy, proof = c} end
 | 
| 70784 
799437173553
Term_XML.Encode/Decode.term uses Const "typargs";
 wenzelm parents: 
70604diff
changeset | 463 | and thm consts x = | 
| 
799437173553
Term_XML.Encode/Decode.term uses Const "typargs";
 wenzelm parents: 
70604diff
changeset | 464 | let | 
| 
799437173553
Term_XML.Encode/Decode.term uses Const "typargs";
 wenzelm parents: 
70604diff
changeset | 465 | val (a, (b, (c, (d, e)))) = | 
| 80311 | 466 | pair int (pair string (pair Thm_Name.decode (pair (term consts) (proof_body consts)))) x | 
| 71018 
d32ed8927a42
more robust expose_proofs corresponding to register_proofs/consolidate_theory;
 wenzelm parents: 
71010diff
changeset | 467 | in (a, make_thm_node b c d (Future.value e) no_export) end; | 
| 52424 
77075c576d4c
support for XML data representation of proof terms;
 wenzelm parents: 
51700diff
changeset | 468 | |
| 
77075c576d4c
support for XML data representation of proof terms;
 wenzelm parents: 
51700diff
changeset | 469 | in | 
| 
77075c576d4c
support for XML data representation of proof terms;
 wenzelm parents: 
51700diff
changeset | 470 | |
| 
77075c576d4c
support for XML data representation of proof terms;
 wenzelm parents: 
51700diff
changeset | 471 | val decode = proof; | 
| 
77075c576d4c
support for XML data representation of proof terms;
 wenzelm parents: 
51700diff
changeset | 472 | val decode_body = proof_body; | 
| 
77075c576d4c
support for XML data representation of proof terms;
 wenzelm parents: 
51700diff
changeset | 473 | |
| 
77075c576d4c
support for XML data representation of proof terms;
 wenzelm parents: 
51700diff
changeset | 474 | end; | 
| 
77075c576d4c
support for XML data representation of proof terms;
 wenzelm parents: 
51700diff
changeset | 475 | |
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 476 | |
| 70397 | 477 | (** proof objects with different levels of detail **) | 
| 11519 | 478 | |
| 79222 | 479 | fun zproof_enabled proofs = proofs = 4 orelse proofs = 5 orelse proofs = 6; | 
| 79219 
8b371e684acf
clarified signature: more explicit get_proofs_level with bounds check;
 wenzelm parents: 
79217diff
changeset | 480 | fun proof_enabled proofs = proofs = 2 orelse proofs = 6; | 
| 
8b371e684acf
clarified signature: more explicit get_proofs_level with bounds check;
 wenzelm parents: 
79217diff
changeset | 481 | fun oracle_enabled proofs = not (proofs = 0 orelse proofs = 4); | 
| 79113 
5109e4b2a292
pro-forma support for optional zproof: no proper content yet;
 wenzelm parents: 
79112diff
changeset | 482 | |
| 
5109e4b2a292
pro-forma support for optional zproof: no proper content yet;
 wenzelm parents: 
79112diff
changeset | 483 | val proofs = Unsynchronized.ref 6; | 
| 
5109e4b2a292
pro-forma support for optional zproof: no proper content yet;
 wenzelm parents: 
79112diff
changeset | 484 | |
| 79219 
8b371e684acf
clarified signature: more explicit get_proofs_level with bounds check;
 wenzelm parents: 
79217diff
changeset | 485 | fun get_proofs_level () = | 
| 
8b371e684acf
clarified signature: more explicit get_proofs_level with bounds check;
 wenzelm parents: 
79217diff
changeset | 486 | let val proofs = ! proofs in | 
| 
8b371e684acf
clarified signature: more explicit get_proofs_level with bounds check;
 wenzelm parents: 
79217diff
changeset | 487 | if 0 <= proofs andalso proofs <= 6 andalso proofs <> 3 then proofs | 
| 
8b371e684acf
clarified signature: more explicit get_proofs_level with bounds check;
 wenzelm parents: 
79217diff
changeset | 488 |     else error ("Illegal level of detail for proof objects: " ^ string_of_int proofs)
 | 
| 
8b371e684acf
clarified signature: more explicit get_proofs_level with bounds check;
 wenzelm parents: 
79217diff
changeset | 489 | end; | 
| 
8b371e684acf
clarified signature: more explicit get_proofs_level with bounds check;
 wenzelm parents: 
79217diff
changeset | 490 | |
| 79113 
5109e4b2a292
pro-forma support for optional zproof: no proper content yet;
 wenzelm parents: 
79112diff
changeset | 491 | fun any_proofs_enabled () = | 
| 79223 
78d032205af4
more robust: proper Proofterm.get_proofs_level with bound check;
 wenzelm parents: 
79222diff
changeset | 492 | let val proofs = get_proofs_level () | 
| 79222 | 493 | in zproof_enabled proofs orelse proof_enabled proofs end; | 
| 70587 | 494 | |
| 79440 | 495 | fun (p %> t) = p % SOME t; | 
| 11519 | 496 | |
| 15570 | 497 | val proof_combt = Library.foldl (op %>); | 
| 498 | val proof_combt' = Library.foldl (op %); | |
| 499 | val proof_combP = Library.foldl (op %%); | |
| 11519 | 500 | |
| 21646 
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
 wenzelm parents: 
20853diff
changeset | 501 | fun strip_combt prf = | 
| 79440 | 502 | let | 
| 503 | fun strip (p % t, ts) = strip (p, t :: ts) | |
| 504 | | strip res = res; | |
| 505 | in strip (prf, []) end; | |
| 11519 | 506 | |
| 21646 
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
 wenzelm parents: 
20853diff
changeset | 507 | fun strip_combP prf = | 
| 79440 | 508 | let | 
| 509 | fun strip (p %% q, qs) = strip (p, q :: qs) | |
| 510 | | strip res = res; | |
| 511 | in strip (prf, []) end; | |
| 11519 | 512 | |
| 79441 | 513 | fun any_head_of (p %% _) = any_head_of p | 
| 514 | | any_head_of (p % _) = any_head_of p | |
| 515 | | any_head_of p = p; | |
| 516 | ||
| 517 | fun term_head_of (p % _) = term_head_of p | |
| 518 | | term_head_of p = p; | |
| 519 | ||
| 520 | fun proof_head_of (p %% _) = proof_head_of p | |
| 521 | | proof_head_of p = p; | |
| 522 | ||
| 79442 | 523 | val atomic_proof = | 
| 524 | (fn Abst _ => false | AbsP _ => false | |
| 525 | | op % _ => false | op %% _ => false | |
| 526 | | MinProof => false | |
| 527 | | _ => true); | |
| 528 | ||
| 529 | fun compact_proof (p % _) = compact_proof p | |
| 530 | | compact_proof (p %% q) = atomic_proof q andalso compact_proof p | |
| 531 | | compact_proof p = atomic_proof p; | |
| 532 | ||
| 79220 | 533 | fun strip_thm_body (body as PBody {proof, ...}) =
 | 
| 79441 | 534 | (case term_head_of (proof_head_of proof) of | 
| 70493 | 535 |     PThm (_, Thm_Body {body = body', ...}) => Future.join body'
 | 
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 536 | | _ => body); | 
| 11519 | 537 | |
| 70822 
22e2f5acc0b4
more accurate treatment of propositions within proof terms, but these are ultimately ignored for performance reasons;
 wenzelm parents: 
70815diff
changeset | 538 | val mk_Abst = fold_rev (fn (x, _: typ) => fn prf => Abst (x, NONE, prf)); | 
| 
22e2f5acc0b4
more accurate treatment of propositions within proof terms, but these are ultimately ignored for performance reasons;
 wenzelm parents: 
70815diff
changeset | 539 | val mk_AbsP = fold_rev (fn _: term => fn prf => AbsP ("H", NONE, prf));
 | 
| 11519 | 540 | |
| 36620 
e6bb250402b5
simplified/unified fundamental operations on types/terms/proofterms -- prefer Same.operation over "option" variant;
 wenzelm parents: 
36619diff
changeset | 541 | fun map_proof_same term typ ofclass = | 
| 20000 | 542 | let | 
| 32024 | 543 | val typs = Same.map typ; | 
| 20000 | 544 | |
| 32024 | 545 | fun proof (Abst (s, T, prf)) = | 
| 546 | (Abst (s, Same.map_option typ T, Same.commit proof prf) | |
| 547 | handle Same.SAME => Abst (s, T, proof prf)) | |
| 548 | | proof (AbsP (s, t, prf)) = | |
| 549 | (AbsP (s, Same.map_option term t, Same.commit proof prf) | |
| 550 | handle Same.SAME => AbsP (s, t, proof prf)) | |
| 551 | | proof (prf % t) = | |
| 552 | (proof prf % Same.commit (Same.map_option term) t | |
| 553 | handle Same.SAME => prf % Same.map_option term t) | |
| 554 | | proof (prf1 %% prf2) = | |
| 555 | (proof prf1 %% Same.commit proof prf2 | |
| 556 | handle Same.SAME => prf1 %% proof prf2) | |
| 557 | | proof (PAxm (a, prop, SOME Ts)) = PAxm (a, prop, SOME (typs Ts)) | |
| 79415 | 558 | | proof (PClass C) = ofclass C | 
| 32024 | 559 | | proof (Oracle (a, prop, SOME Ts)) = Oracle (a, prop, SOME (typs Ts)) | 
| 80295 
8a9588ffc133
more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
 wenzelm parents: 
80288diff
changeset | 560 |       | proof (PThm ({serial, pos, theory_name, thm_name, prop, types = SOME Ts}, thm_body)) =
 | 
| 
8a9588ffc133
more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
 wenzelm parents: 
80288diff
changeset | 561 | PThm (thm_header serial pos theory_name thm_name prop (SOME (typs Ts)), thm_body) | 
| 32024 | 562 | | proof _ = raise Same.SAME; | 
| 36620 
e6bb250402b5
simplified/unified fundamental operations on types/terms/proofterms -- prefer Same.operation over "option" variant;
 wenzelm parents: 
36619diff
changeset | 563 | in proof end; | 
| 
e6bb250402b5
simplified/unified fundamental operations on types/terms/proofterms -- prefer Same.operation over "option" variant;
 wenzelm parents: 
36619diff
changeset | 564 | |
| 71777 
3875815f5967
clarified signature: avoid clash with Isabelle/Scala Term.OFCLASS on case-insensible file-system;
 wenzelm parents: 
71533diff
changeset | 565 | fun map_proof_terms_same term typ = map_proof_same term typ (fn (T, c) => PClass (typ T, c)); | 
| 79409 | 566 | fun map_proof_types_same typ = map_proof_terms_same (Term.map_types_same typ) typ; | 
| 20000 | 567 | |
| 79400 | 568 | fun map_proof_terms f g = | 
| 569 | Same.commit (map_proof_terms_same (Same.function_eq (op =) f) (Same.function_eq (op =) g)); | |
| 11715 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 570 | |
| 79400 | 571 | fun map_proof_types f = | 
| 572 | Same.commit (map_proof_types_same (Same.function_eq (op =) f)); | |
| 11519 | 573 | |
| 70843 
cc987440d776
more compact XML: separate environment for free variables;
 wenzelm parents: 
70839diff
changeset | 574 | fun fold_proof_terms f (Abst (_, _, prf)) = fold_proof_terms f prf | 
| 
cc987440d776
more compact XML: separate environment for free variables;
 wenzelm parents: 
70839diff
changeset | 575 | | fold_proof_terms f (AbsP (_, SOME t, prf)) = f t #> fold_proof_terms f prf | 
| 
cc987440d776
more compact XML: separate environment for free variables;
 wenzelm parents: 
70839diff
changeset | 576 | | fold_proof_terms f (AbsP (_, NONE, prf)) = fold_proof_terms f prf | 
| 
cc987440d776
more compact XML: separate environment for free variables;
 wenzelm parents: 
70839diff
changeset | 577 | | fold_proof_terms f (prf % SOME t) = fold_proof_terms f prf #> f t | 
| 
cc987440d776
more compact XML: separate environment for free variables;
 wenzelm parents: 
70839diff
changeset | 578 | | fold_proof_terms f (prf % NONE) = fold_proof_terms f prf | 
| 
cc987440d776
more compact XML: separate environment for free variables;
 wenzelm parents: 
70839diff
changeset | 579 | | fold_proof_terms f (prf1 %% prf2) = fold_proof_terms f prf1 #> fold_proof_terms f prf2 | 
| 
cc987440d776
more compact XML: separate environment for free variables;
 wenzelm parents: 
70839diff
changeset | 580 | | fold_proof_terms _ _ = I; | 
| 11519 | 581 | |
| 70843 
cc987440d776
more compact XML: separate environment for free variables;
 wenzelm parents: 
70839diff
changeset | 582 | fun fold_proof_terms_types f g (Abst (_, SOME T, prf)) = g T #> fold_proof_terms_types f g prf | 
| 
cc987440d776
more compact XML: separate environment for free variables;
 wenzelm parents: 
70839diff
changeset | 583 | | fold_proof_terms_types f g (Abst (_, NONE, prf)) = fold_proof_terms_types f g prf | 
| 
cc987440d776
more compact XML: separate environment for free variables;
 wenzelm parents: 
70839diff
changeset | 584 | | fold_proof_terms_types f g (AbsP (_, SOME t, prf)) = f t #> fold_proof_terms_types f g prf | 
| 
cc987440d776
more compact XML: separate environment for free variables;
 wenzelm parents: 
70839diff
changeset | 585 | | fold_proof_terms_types f g (AbsP (_, NONE, prf)) = fold_proof_terms_types f g prf | 
| 
cc987440d776
more compact XML: separate environment for free variables;
 wenzelm parents: 
70839diff
changeset | 586 | | fold_proof_terms_types f g (prf % SOME t) = fold_proof_terms_types f g prf #> f t | 
| 
cc987440d776
more compact XML: separate environment for free variables;
 wenzelm parents: 
70839diff
changeset | 587 | | fold_proof_terms_types f g (prf % NONE) = fold_proof_terms_types f g prf | 
| 
cc987440d776
more compact XML: separate environment for free variables;
 wenzelm parents: 
70839diff
changeset | 588 | | fold_proof_terms_types f g (prf1 %% prf2) = | 
| 
cc987440d776
more compact XML: separate environment for free variables;
 wenzelm parents: 
70839diff
changeset | 589 | fold_proof_terms_types f g prf1 #> fold_proof_terms_types f g prf2 | 
| 
cc987440d776
more compact XML: separate environment for free variables;
 wenzelm parents: 
70839diff
changeset | 590 | | fold_proof_terms_types _ g (PAxm (_, _, SOME Ts)) = fold g Ts | 
| 71777 
3875815f5967
clarified signature: avoid clash with Isabelle/Scala Term.OFCLASS on case-insensible file-system;
 wenzelm parents: 
71533diff
changeset | 591 | | fold_proof_terms_types _ g (PClass (T, _)) = g T | 
| 70843 
cc987440d776
more compact XML: separate environment for free variables;
 wenzelm parents: 
70839diff
changeset | 592 | | fold_proof_terms_types _ g (Oracle (_, _, SOME Ts)) = fold g Ts | 
| 
cc987440d776
more compact XML: separate environment for free variables;
 wenzelm parents: 
70839diff
changeset | 593 |   | fold_proof_terms_types _ g (PThm ({types = SOME Ts, ...}, _)) = fold g Ts
 | 
| 
cc987440d776
more compact XML: separate environment for free variables;
 wenzelm parents: 
70839diff
changeset | 594 | | fold_proof_terms_types _ _ _ = I; | 
| 
cc987440d776
more compact XML: separate environment for free variables;
 wenzelm parents: 
70839diff
changeset | 595 | |
| 
cc987440d776
more compact XML: separate environment for free variables;
 wenzelm parents: 
70839diff
changeset | 596 | fun maxidx_proof prf = fold_proof_terms_types Term.maxidx_term Term.maxidx_typ prf; | 
| 12868 | 597 | |
| 70417 | 598 | fun change_types types (PAxm (name, prop, _)) = PAxm (name, prop, types) | 
| 71777 
3875815f5967
clarified signature: avoid clash with Isabelle/Scala Term.OFCLASS on case-insensible file-system;
 wenzelm parents: 
71533diff
changeset | 599 | | change_types (SOME [T]) (PClass (_, c)) = PClass (T, c) | 
| 70417 | 600 | | change_types types (Oracle (name, prop, _)) = Oracle (name, prop, types) | 
| 80295 
8a9588ffc133
more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
 wenzelm parents: 
80288diff
changeset | 601 |   | change_types types (PThm ({serial, pos, theory_name, thm_name, prop, types = _}, thm_body)) =
 | 
| 
8a9588ffc133
more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
 wenzelm parents: 
80288diff
changeset | 602 | PThm (thm_header serial pos theory_name thm_name prop types, thm_body) | 
| 70417 | 603 | | change_types _ prf = prf; | 
| 12907 
27e6d344d724
New function change_type for changing type assignments of theorems,
 berghofe parents: 
12890diff
changeset | 604 | |
| 11519 | 605 | |
| 21646 
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
 wenzelm parents: 
20853diff
changeset | 606 | (*Abstraction of a proof term over its occurrences of v, | 
| 11519 | 607 | which must contain no loose bound variables. | 
| 608 | The resulting proof term is ready to become the body of an Abst.*) | |
| 609 | ||
| 79197 | 610 | fun abstract_over v = | 
| 11519 | 611 | let | 
| 79196 | 612 | fun term lev u = | 
| 613 | if v aconv u then Bound lev | |
| 614 | else | |
| 615 | (case u of | |
| 616 | Abs (a, T, t) => Abs (a, T, term (lev + 1) t) | |
| 617 | | t $ u => | |
| 618 | (term lev t $ Same.commit (term lev) u | |
| 619 | handle Same.SAME => t $ term lev u) | |
| 620 | | _ => raise Same.SAME); | |
| 11519 | 621 | |
| 79196 | 622 | fun proof lev (AbsP (a, t, p)) = | 
| 623 | (AbsP (a, Same.map_option (term lev) t, Same.commit (proof lev) p) | |
| 624 | handle Same.SAME => AbsP (a, t, proof lev p)) | |
| 625 | | proof lev (Abst (a, T, p)) = Abst (a, T, proof (lev + 1) p) | |
| 626 | | proof lev (p %% q) = (proof lev p %% Same.commit (proof lev) q | |
| 627 | handle Same.SAME => p %% proof lev q) | |
| 628 | | proof lev (p % t) = | |
| 629 | (proof lev p % Option.map (Same.commit (term lev)) t | |
| 630 | handle Same.SAME => p % Same.map_option (term lev) t) | |
| 631 | | proof _ _ = raise Same.SAME; | |
| 11519 | 632 | |
| 79196 | 633 | in Same.commit (proof 0) end; | 
| 11519 | 634 | |
| 635 | ||
| 636 | (*increments a proof term's non-local bound variables | |
| 637 | required when moving a proof term within abstractions | |
| 638 | inc is increment for bound variables | |
| 639 | lev is level at which a bound variable is considered 'loose'*) | |
| 640 | ||
| 79175 
04dfecb9343a
misc tuning and clarification, following Term.incr_bv / Term.incr_boundvars;
 wenzelm parents: 
79174diff
changeset | 641 | fun incr_bv_same incP inct = | 
| 
04dfecb9343a
misc tuning and clarification, following Term.incr_bv / Term.incr_boundvars;
 wenzelm parents: 
79174diff
changeset | 642 | if incP = 0 andalso inct = 0 then fn _ => fn _ => Same.same | 
| 
04dfecb9343a
misc tuning and clarification, following Term.incr_bv / Term.incr_boundvars;
 wenzelm parents: 
79174diff
changeset | 643 | else | 
| 
04dfecb9343a
misc tuning and clarification, following Term.incr_bv / Term.incr_boundvars;
 wenzelm parents: 
79174diff
changeset | 644 | let | 
| 79284 | 645 | val term = Term.incr_bv_same inct; | 
| 646 | ||
| 79175 
04dfecb9343a
misc tuning and clarification, following Term.incr_bv / Term.incr_boundvars;
 wenzelm parents: 
79174diff
changeset | 647 | fun proof Plev _ (PBound i) = | 
| 
04dfecb9343a
misc tuning and clarification, following Term.incr_bv / Term.incr_boundvars;
 wenzelm parents: 
79174diff
changeset | 648 | if i >= Plev then PBound (i + incP) else raise Same.SAME | 
| 
04dfecb9343a
misc tuning and clarification, following Term.incr_bv / Term.incr_boundvars;
 wenzelm parents: 
79174diff
changeset | 649 | | proof Plev tlev (AbsP (a, t, p)) = | 
| 79284 | 650 | (AbsP (a, Same.map_option (term tlev) t, Same.commit (proof (Plev + 1) tlev) p) | 
| 651 | handle Same.SAME => AbsP (a, t, proof (Plev + 1) tlev p)) | |
| 79175 
04dfecb9343a
misc tuning and clarification, following Term.incr_bv / Term.incr_boundvars;
 wenzelm parents: 
79174diff
changeset | 652 | | proof Plev tlev (Abst (a, T, body)) = | 
| 
04dfecb9343a
misc tuning and clarification, following Term.incr_bv / Term.incr_boundvars;
 wenzelm parents: 
79174diff
changeset | 653 | Abst (a, T, proof Plev (tlev + 1) body) | 
| 
04dfecb9343a
misc tuning and clarification, following Term.incr_bv / Term.incr_boundvars;
 wenzelm parents: 
79174diff
changeset | 654 | | proof Plev tlev (p %% q) = | 
| 
04dfecb9343a
misc tuning and clarification, following Term.incr_bv / Term.incr_boundvars;
 wenzelm parents: 
79174diff
changeset | 655 | (proof Plev tlev p %% Same.commit (proof Plev tlev) q | 
| 79284 | 656 | handle Same.SAME => p %% proof Plev tlev q) | 
| 79175 
04dfecb9343a
misc tuning and clarification, following Term.incr_bv / Term.incr_boundvars;
 wenzelm parents: 
79174diff
changeset | 657 | | proof Plev tlev (p % t) = | 
| 79284 | 658 | (proof Plev tlev p % Option.map (Same.commit (term tlev)) t | 
| 659 | handle Same.SAME => p % Same.map_option (term tlev) t) | |
| 79175 
04dfecb9343a
misc tuning and clarification, following Term.incr_bv / Term.incr_boundvars;
 wenzelm parents: 
79174diff
changeset | 660 | | proof _ _ _ = raise Same.SAME; | 
| 
04dfecb9343a
misc tuning and clarification, following Term.incr_bv / Term.incr_boundvars;
 wenzelm parents: 
79174diff
changeset | 661 | in proof end; | 
| 11519 | 662 | |
| 79175 
04dfecb9343a
misc tuning and clarification, following Term.incr_bv / Term.incr_boundvars;
 wenzelm parents: 
79174diff
changeset | 663 | fun incr_bv incP inct Plev tlev = Same.commit (incr_bv_same incP inct Plev tlev); | 
| 
04dfecb9343a
misc tuning and clarification, following Term.incr_bv / Term.incr_boundvars;
 wenzelm parents: 
79174diff
changeset | 664 | |
| 
04dfecb9343a
misc tuning and clarification, following Term.incr_bv / Term.incr_boundvars;
 wenzelm parents: 
79174diff
changeset | 665 | fun incr_boundvars incP inct = incr_bv incP inct 0 0; | 
| 11519 | 666 | |
| 667 | ||
| 11615 | 668 | fun prf_loose_bvar1 (prf1 %% prf2) k = prf_loose_bvar1 prf1 k orelse prf_loose_bvar1 prf2 k | 
| 15531 | 669 | | prf_loose_bvar1 (prf % SOME t) k = prf_loose_bvar1 prf k orelse loose_bvar1 (t, k) | 
| 670 | | prf_loose_bvar1 (_ % NONE) _ = true | |
| 671 | | prf_loose_bvar1 (AbsP (_, SOME t, prf)) k = loose_bvar1 (t, k) orelse prf_loose_bvar1 prf k | |
| 63857 | 672 | | prf_loose_bvar1 (AbsP (_, NONE, _)) _ = true | 
| 11519 | 673 | | prf_loose_bvar1 (Abst (_, _, prf)) k = prf_loose_bvar1 prf (k+1) | 
| 674 | | prf_loose_bvar1 _ _ = false; | |
| 675 | ||
| 676 | fun prf_loose_Pbvar1 (PBound i) k = i = k | |
| 11615 | 677 | | prf_loose_Pbvar1 (prf1 %% prf2) k = prf_loose_Pbvar1 prf1 k orelse prf_loose_Pbvar1 prf2 k | 
| 678 | | prf_loose_Pbvar1 (prf % _) k = prf_loose_Pbvar1 prf k | |
| 11519 | 679 | | prf_loose_Pbvar1 (AbsP (_, _, prf)) k = prf_loose_Pbvar1 prf (k+1) | 
| 680 | | prf_loose_Pbvar1 (Abst (_, _, prf)) k = prf_loose_Pbvar1 prf k | |
| 681 | | prf_loose_Pbvar1 _ _ = false; | |
| 682 | ||
| 63857 | 683 | fun prf_add_loose_bnos plev _ (PBound i) (is, js) = | 
| 17492 | 684 | if i < plev then (is, js) else (insert (op =) (i-plev) is, js) | 
| 12279 | 685 | | prf_add_loose_bnos plev tlev (prf1 %% prf2) p = | 
| 686 | prf_add_loose_bnos plev tlev prf2 | |
| 687 | (prf_add_loose_bnos plev tlev prf1 p) | |
| 688 | | prf_add_loose_bnos plev tlev (prf % opt) (is, js) = | |
| 64566 | 689 | prf_add_loose_bnos plev tlev prf | 
| 690 | (case opt of | |
| 17492 | 691 | NONE => (is, insert (op =) ~1 js) | 
| 15531 | 692 | | SOME t => (is, add_loose_bnos (t, tlev, js))) | 
| 12279 | 693 | | prf_add_loose_bnos plev tlev (AbsP (_, opt, prf)) (is, js) = | 
| 64566 | 694 | prf_add_loose_bnos (plev+1) tlev prf | 
| 695 | (case opt of | |
| 17492 | 696 | NONE => (is, insert (op =) ~1 js) | 
| 15531 | 697 | | SOME t => (is, add_loose_bnos (t, tlev, js))) | 
| 12279 | 698 | | prf_add_loose_bnos plev tlev (Abst (_, _, prf)) p = | 
| 699 | prf_add_loose_bnos plev (tlev+1) prf p | |
| 700 | | prf_add_loose_bnos _ _ _ _ = ([], []); | |
| 701 | ||
| 11519 | 702 | |
| 70397 | 703 | (* substitutions *) | 
| 11519 | 704 | |
| 74228 | 705 | local | 
| 706 | ||
| 707 | fun conflicting_tvarsT envT = | |
| 708 | Term.fold_atyps | |
| 709 | (fn T => fn instT => | |
| 710 | (case T of | |
| 711 | TVar (v as (_, S)) => | |
| 74266 | 712 | if TVars.defined instT v orelse can (Type.lookup envT) v then instT | 
| 713 | else TVars.add (v, Logic.dummy_tfree S) instT | |
| 74228 | 714 | | _ => instT)); | 
| 18316 
4b62e0cb3aa8
Improved norm_proof to handle proofs containing term (type) variables
 berghofe parents: 
18030diff
changeset | 715 | |
| 74228 | 716 | fun conflicting_tvars env = | 
| 717 | Term.fold_aterms | |
| 718 | (fn t => fn inst => | |
| 719 | (case t of | |
| 720 | Var (v as (_, T)) => | |
| 74266 | 721 | if Vars.defined inst v orelse can (Envir.lookup env) v then inst | 
| 722 |           else Vars.add (v, Free ("dummy", T)) inst
 | |
| 74228 | 723 | | _ => inst)); | 
| 724 | ||
| 725 | fun del_conflicting_tvars envT ty = | |
| 74266 | 726 | Term_Subst.instantiateT (TVars.build (conflicting_tvarsT envT ty)) ty; | 
| 74228 | 727 | |
| 728 | fun del_conflicting_vars env tm = | |
| 74220 
c49134ee16c1
more scalable data structure (but: rarely used many arguments);
 wenzelm parents: 
74200diff
changeset | 729 | let | 
| 74232 | 730 | val instT = | 
| 74266 | 731 | TVars.build (tm |> Term.fold_types (conflicting_tvarsT (Envir.type_env env))); | 
| 732 | val inst = Vars.build (tm |> conflicting_tvars env); | |
| 74228 | 733 | in Term_Subst.instantiate (instT, inst) tm end; | 
| 734 | ||
| 735 | in | |
| 18316 
4b62e0cb3aa8
Improved norm_proof to handle proofs containing term (type) variables
 berghofe parents: 
18030diff
changeset | 736 | |
| 79203 | 737 | fun norm_proof envir = | 
| 11519 | 738 | let | 
| 79203 | 739 | val tyenv = Envir.type_env envir; | 
| 18316 
4b62e0cb3aa8
Improved norm_proof to handle proofs containing term (type) variables
 berghofe parents: 
18030diff
changeset | 740 |     fun msg s = warning ("type conflict in norm_proof:\n" ^ s);
 | 
| 79203 | 741 | fun norm_term_same t = Envir.norm_term_same envir t handle TYPE (s, _, _) => | 
| 742 | (msg s; Envir.norm_term_same envir (del_conflicting_vars envir t)); | |
| 743 | fun norm_type_same T = Envir.norm_type_same tyenv T handle TYPE (s, _, _) => | |
| 744 | (msg s; Envir.norm_type_same tyenv (del_conflicting_tvars tyenv T)); | |
| 745 | fun norm_types_same Ts = Envir.norm_types_same tyenv Ts handle TYPE (s, _, _) => | |
| 746 | (msg s; Envir.norm_types_same tyenv (map (del_conflicting_tvars tyenv) Ts)); | |
| 32024 | 747 | |
| 79203 | 748 | fun norm (Abst (a, T, p)) = | 
| 749 | (Abst (a, Same.map_option norm_type_same T, Same.commit norm p) | |
| 750 | handle Same.SAME => Abst (a, T, norm p)) | |
| 751 | | norm (AbsP (a, t, p)) = | |
| 752 | (AbsP (a, Same.map_option norm_term_same t, Same.commit norm p) | |
| 753 | handle Same.SAME => AbsP (a, t, norm p)) | |
| 754 | | norm (p % t) = | |
| 755 | (norm p % Option.map (Same.commit norm_term_same) t | |
| 756 | handle Same.SAME => p % Same.map_option norm_term_same t) | |
| 757 | | norm (p %% q) = | |
| 758 | (norm p %% Same.commit norm q | |
| 759 | handle Same.SAME => p %% norm q) | |
| 760 | | norm (PAxm (a, prop, Ts)) = | |
| 761 | PAxm (a, prop, Same.map_option norm_types_same Ts) | |
| 71777 
3875815f5967
clarified signature: avoid clash with Isabelle/Scala Term.OFCLASS on case-insensible file-system;
 wenzelm parents: 
71533diff
changeset | 762 | | norm (PClass (T, c)) = | 
| 79174 | 763 | PClass (norm_type_same T, c) | 
| 79203 | 764 | | norm (Oracle (a, prop, Ts)) = | 
| 765 | Oracle (a, prop, Same.map_option norm_types_same Ts) | |
| 80295 
8a9588ffc133
more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
 wenzelm parents: 
80288diff
changeset | 766 |       | norm (PThm ({serial = i, pos = p, theory_name, thm_name, prop = t, types = Ts}, thm_body)) =
 | 
| 
8a9588ffc133
more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
 wenzelm parents: 
80288diff
changeset | 767 | PThm (thm_header i p theory_name thm_name t | 
| 79174 | 768 | (Same.map_option norm_types_same Ts), thm_body) | 
| 32019 | 769 | | norm _ = raise Same.SAME; | 
| 770 | in Same.commit norm end; | |
| 11519 | 771 | |
| 74228 | 772 | end; | 
| 773 | ||
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 774 | |
| 70397 | 775 | (* remove some types in proof term (to save space) *) | 
| 11519 | 776 | |
| 777 | fun remove_types (Abs (s, _, t)) = Abs (s, dummyT, remove_types t) | |
| 778 | | remove_types (t $ u) = remove_types t $ remove_types u | |
| 779 | | remove_types (Const (s, _)) = Const (s, dummyT) | |
| 780 | | remove_types t = t; | |
| 781 | ||
| 32032 | 782 | fun remove_types_env (Envir.Envir {maxidx, tenv, tyenv}) =
 | 
| 39020 | 783 |   Envir.Envir {maxidx = maxidx, tenv = Vartab.map (K (apsnd remove_types)) tenv, tyenv = tyenv};
 | 
| 11519 | 784 | |
| 79164 | 785 | fun norm_proof_remove_types env prf = norm_proof (remove_types_env env) prf; | 
| 11519 | 786 | |
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 787 | |
| 70397 | 788 | (* substitution of bound variables *) | 
| 11519 | 789 | |
| 79167 | 790 | fun subst_bounds args prf = | 
| 79202 | 791 | if null args then prf | 
| 792 | else | |
| 793 | let | |
| 794 | val term = Term.subst_bounds_same args; | |
| 11519 | 795 | |
| 79202 | 796 | fun proof lev (AbsP (a, t, p)) = | 
| 79280 | 797 | (AbsP (a, Same.map_option (term lev) t, Same.commit (proof lev) p) | 
| 798 | handle Same.SAME => AbsP (a, t, proof lev p)) | |
| 79202 | 799 | | proof lev (Abst (a, T, p)) = Abst (a, T, proof (lev + 1) p) | 
| 79280 | 800 | | proof lev (p %% q) = | 
| 801 | (proof lev p %% Same.commit (proof lev) q | |
| 802 | handle Same.SAME => p %% proof lev q) | |
| 803 | | proof lev (p % t) = | |
| 804 | (proof lev p % Option.map (Same.commit (term lev)) t | |
| 805 | handle Same.SAME => p % Same.map_option (term lev) t) | |
| 79202 | 806 | | proof _ _ = raise Same.SAME; | 
| 807 | in Same.commit (proof 0) prf end; | |
| 11519 | 808 | |
| 79167 | 809 | fun subst_pbounds args prf = | 
| 11519 | 810 | let | 
| 811 | val n = length args; | |
| 79168 | 812 | fun proof Plev tlev (PBound i) = | 
| 79282 | 813 | if i < Plev then raise Same.SAME (*var is locally bound*) | 
| 79176 | 814 | else if i - Plev < n then incr_boundvars Plev tlev (nth args (i - Plev)) | 
| 79282 | 815 | else PBound (i - n) (*loose: change it*) | 
| 79169 | 816 | | proof Plev tlev (AbsP (a, t, p)) = AbsP (a, t, proof (Plev + 1) tlev p) | 
| 817 | | proof Plev tlev (Abst (a, T, p)) = Abst (a, T, proof Plev (tlev + 1) p) | |
| 79280 | 818 | | proof Plev tlev (p %% q) = | 
| 819 | (proof Plev tlev p %% Same.commit (proof Plev tlev) q | |
| 820 | handle Same.SAME => p %% proof Plev tlev q) | |
| 79168 | 821 | | proof Plev tlev (p % t) = proof Plev tlev p % t | 
| 79169 | 822 | | proof _ _ _ = raise Same.SAME; | 
| 79168 | 823 | in if null args then prf else Same.commit (proof 0 0) prf end; | 
| 11519 | 824 | |
| 825 | ||
| 70397 | 826 | (* freezing and thawing of variables in proof terms *) | 
| 11519 | 827 | |
| 44101 | 828 | local | 
| 829 | ||
| 11519 | 830 | fun frzT names = | 
| 44101 | 831 | map_type_tvar (fn (ixn, S) => TFree (the (AList.lookup (op =) names ixn), S)); | 
| 11519 | 832 | |
| 833 | fun thawT names = | |
| 44101 | 834 | map_type_tfree (fn (a, S) => | 
| 835 | (case AList.lookup (op =) names a of | |
| 79412 | 836 | NONE => raise Same.SAME | 
| 44101 | 837 | | SOME ixn => TVar (ixn, S))); | 
| 11519 | 838 | |
| 839 | fun freeze names names' (t $ u) = | |
| 840 | freeze names names' t $ freeze names names' u | |
| 841 | | freeze names names' (Abs (s, T, t)) = | |
| 842 | Abs (s, frzT names' T, freeze names names' t) | |
| 63857 | 843 | | freeze _ names' (Const (s, T)) = Const (s, frzT names' T) | 
| 844 | | freeze _ names' (Free (s, T)) = Free (s, frzT names' T) | |
| 11519 | 845 | | freeze names names' (Var (ixn, T)) = | 
| 44101 | 846 | Free (the (AList.lookup (op =) names ixn), frzT names' T) | 
| 63857 | 847 | | freeze _ _ t = t; | 
| 11519 | 848 | |
| 849 | fun thaw names names' (t $ u) = | |
| 850 | thaw names names' t $ thaw names names' u | |
| 851 | | thaw names names' (Abs (s, T, t)) = | |
| 852 | Abs (s, thawT names' T, thaw names names' t) | |
| 63857 | 853 | | thaw _ names' (Const (s, T)) = Const (s, thawT names' T) | 
| 21646 
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
 wenzelm parents: 
20853diff
changeset | 854 | | thaw names names' (Free (s, T)) = | 
| 44101 | 855 | let val T' = thawT names' T in | 
| 856 | (case AList.lookup (op =) names s of | |
| 15531 | 857 | NONE => Free (s, T') | 
| 44101 | 858 | | SOME ixn => Var (ixn, T')) | 
| 11519 | 859 | end | 
| 63857 | 860 | | thaw _ names' (Var (ixn, T)) = Var (ixn, thawT names' T) | 
| 861 | | thaw _ _ t = t; | |
| 11519 | 862 | |
| 44101 | 863 | in | 
| 864 | ||
| 11519 | 865 | fun freeze_thaw_prf prf = | 
| 866 | let | |
| 70843 
cc987440d776
more compact XML: separate environment for free variables;
 wenzelm parents: 
70839diff
changeset | 867 | val (fs, Tfs, vs, Tvs) = fold_proof_terms_types | 
| 20147 | 868 | (fn t => fn (fs, Tfs, vs, Tvs) => | 
| 29261 | 869 | (Term.add_free_names t fs, Term.add_tfree_names t Tfs, | 
| 870 | Term.add_var_names t vs, Term.add_tvar_names t Tvs)) | |
| 20147 | 871 | (fn T => fn (fs, Tfs, vs, Tvs) => | 
| 29261 | 872 | (fs, Term.add_tfree_namesT T Tfs, | 
| 873 | vs, Term.add_tvar_namesT T Tvs)) | |
| 20147 | 874 | prf ([], [], [], []); | 
| 29261 | 875 | val names = vs ~~ Name.variant_list fs (map fst vs); | 
| 20071 
8f3e1ddb50e6
replaced Term.variant(list) by Name.variant(_list);
 wenzelm parents: 
20000diff
changeset | 876 | val names' = Tvs ~~ Name.variant_list Tfs (map fst Tvs); | 
| 11519 | 877 | val rnames = map swap names; | 
| 878 | val rnames' = map swap names'; | |
| 879 | in | |
| 880 | (map_proof_terms (freeze names names') (frzT names') prf, | |
| 881 | map_proof_terms (thaw rnames rnames') (thawT rnames')) | |
| 882 | end; | |
| 883 | ||
| 44101 | 884 | end; | 
| 885 | ||
| 11519 | 886 | |
| 70397 | 887 | |
| 888 | (** inference rules **) | |
| 889 | ||
| 70824 | 890 | (* trivial implication *) | 
| 891 | ||
| 892 | val trivial_proof = AbsP ("H", NONE, PBound 0);
 | |
| 893 | ||
| 894 | ||
| 70397 | 895 | (* implication introduction *) | 
| 11519 | 896 | |
| 37231 
e5419ecf92b7
- outer_constraints with original variable names, to ensure that argsP is consistent with args
 berghofe parents: 
36883diff
changeset | 897 | fun gen_implies_intr_proof f h prf = | 
| 11519 | 898 | let | 
| 32019 | 899 | fun abshyp i (Hyp t) = if h aconv t then PBound i else raise Same.SAME | 
| 11519 | 900 | | abshyp i (Abst (s, T, prf)) = Abst (s, T, abshyp i prf) | 
| 32024 | 901 | | abshyp i (AbsP (s, t, prf)) = AbsP (s, t, abshyp (i + 1) prf) | 
| 11615 | 902 | | abshyp i (prf % t) = abshyp i prf % t | 
| 32024 | 903 | | abshyp i (prf1 %% prf2) = | 
| 904 | (abshyp i prf1 %% abshyph i prf2 | |
| 905 | handle Same.SAME => prf1 %% abshyp i prf2) | |
| 32019 | 906 | | abshyp _ _ = raise Same.SAME | 
| 32024 | 907 | and abshyph i prf = (abshyp i prf handle Same.SAME => prf); | 
| 11519 | 908 | in | 
| 37231 
e5419ecf92b7
- outer_constraints with original variable names, to ensure that argsP is consistent with args
 berghofe parents: 
36883diff
changeset | 909 |     AbsP ("H", f h, abshyph 0 prf)
 | 
| 11519 | 910 | end; | 
| 911 | ||
| 37231 
e5419ecf92b7
- outer_constraints with original variable names, to ensure that argsP is consistent with args
 berghofe parents: 
36883diff
changeset | 912 | val implies_intr_proof = gen_implies_intr_proof (K NONE); | 
| 
e5419ecf92b7
- outer_constraints with original variable names, to ensure that argsP is consistent with args
 berghofe parents: 
36883diff
changeset | 913 | val implies_intr_proof' = gen_implies_intr_proof SOME; | 
| 
e5419ecf92b7
- outer_constraints with original variable names, to ensure that argsP is consistent with args
 berghofe parents: 
36883diff
changeset | 914 | |
| 11519 | 915 | |
| 70397 | 916 | (* forall introduction *) | 
| 11519 | 917 | |
| 79197 | 918 | fun forall_intr_proof (a, v) opt_T prf = Abst (a, opt_T, abstract_over v prf); | 
| 11519 | 919 | |
| 70814 | 920 | fun forall_intr_proof' v prf = | 
| 921 | let val (a, T) = (case v of Var ((a, _), T) => (a, T) | Free (a, T) => (a, T)) | |
| 922 | in forall_intr_proof (a, v) (SOME T) prf end; | |
| 37231 
e5419ecf92b7
- outer_constraints with original variable names, to ensure that argsP is consistent with args
 berghofe parents: 
36883diff
changeset | 923 | |
| 11519 | 924 | |
| 70397 | 925 | (* varify *) | 
| 11519 | 926 | |
| 79135 | 927 | fun varifyT_proof names prf = | 
| 79137 | 928 | if null names then prf | 
| 929 | else | |
| 930 | let | |
| 931 | val tab = TFrees.make names; | |
| 932 | val typ = | |
| 79409 | 933 | Term.map_atyps_same | 
| 79137 | 934 | (fn TFree v => | 
| 935 | (case TFrees.lookup tab v of | |
| 936 | NONE => raise Same.SAME | |
| 937 | | SOME w => TVar w) | |
| 938 | | _ => raise Same.SAME); | |
| 939 | in Same.commit (map_proof_types_same typ) prf end; | |
| 11519 | 940 | |
| 941 | ||
| 79151 | 942 | (* freeze *) | 
| 11519 | 943 | |
| 36619 
deadcd0ec431
renamed Proofterm.freezeT to Proofterm.legacy_freezeT (cf. 88756a5a92fc);
 wenzelm parents: 
35851diff
changeset | 944 | fun legacy_freezeT t prf = | 
| 79151 | 945 | (case Type.legacy_freezeT t of | 
| 946 | NONE => prf | |
| 947 | | SOME f => | |
| 79412 | 948 | let val frzT = map_type_tvar (Same.function f) | 
| 79151 | 949 | in map_proof_terms (map_types frzT) frzT prf end); | 
| 11519 | 950 | |
| 951 | ||
| 70397 | 952 | (* rotate assumptions *) | 
| 11519 | 953 | |
| 70822 
22e2f5acc0b4
more accurate treatment of propositions within proof terms, but these are ultimately ignored for performance reasons;
 wenzelm parents: 
70815diff
changeset | 954 | fun rotate_proof Bs Bi' params asms m prf = | 
| 11519 | 955 | let | 
| 956 | val i = length asms; | |
| 957 | val j = length Bs; | |
| 958 | in | |
| 70822 
22e2f5acc0b4
more accurate treatment of propositions within proof terms, but these are ultimately ignored for performance reasons;
 wenzelm parents: 
70815diff
changeset | 959 | mk_AbsP (Bs @ [Bi']) (proof_combP (prf, map PBound | 
| 
22e2f5acc0b4
more accurate treatment of propositions within proof terms, but these are ultimately ignored for performance reasons;
 wenzelm parents: 
70815diff
changeset | 960 | (j downto 1) @ [mk_Abst params (mk_AbsP asms | 
| 
22e2f5acc0b4
more accurate treatment of propositions within proof terms, but these are ultimately ignored for performance reasons;
 wenzelm parents: 
70815diff
changeset | 961 | (proof_combP (proof_combt (PBound i, map Bound ((length params - 1) downto 0)), | 
| 23178 | 962 | map PBound (((i-m-1) downto 0) @ ((i-1) downto (i-m))))))])) | 
| 11519 | 963 | end; | 
| 964 | ||
| 965 | ||
| 70397 | 966 | (* permute premises *) | 
| 11519 | 967 | |
| 70822 
22e2f5acc0b4
more accurate treatment of propositions within proof terms, but these are ultimately ignored for performance reasons;
 wenzelm parents: 
70815diff
changeset | 968 | fun permute_prems_proof prems' j k prf = | 
| 
22e2f5acc0b4
more accurate treatment of propositions within proof terms, but these are ultimately ignored for performance reasons;
 wenzelm parents: 
70815diff
changeset | 969 | let val n = length prems' in | 
| 
22e2f5acc0b4
more accurate treatment of propositions within proof terms, but these are ultimately ignored for performance reasons;
 wenzelm parents: 
70815diff
changeset | 970 | mk_AbsP prems' | 
| 
22e2f5acc0b4
more accurate treatment of propositions within proof terms, but these are ultimately ignored for performance reasons;
 wenzelm parents: 
70815diff
changeset | 971 | (proof_combP (prf, map PBound ((n-1 downto n-j) @ (k-1 downto 0) @ (n-j-1 downto k)))) | 
| 11519 | 972 | end; | 
| 973 | ||
| 974 | ||
| 70397 | 975 | (* generalization *) | 
| 19908 | 976 | |
| 70827 
730251503341
proper generalize_proof: schematic variables need to be explicit in the resulting proof term (for shrink/reconstruct operation);
 wenzelm parents: 
70824diff
changeset | 977 | fun generalize_proof (tfrees, frees) idx prop prf = | 
| 
730251503341
proper generalize_proof: schematic variables need to be explicit in the resulting proof term (for shrink/reconstruct operation);
 wenzelm parents: 
70824diff
changeset | 978 | let | 
| 
730251503341
proper generalize_proof: schematic variables need to be explicit in the resulting proof term (for shrink/reconstruct operation);
 wenzelm parents: 
70824diff
changeset | 979 | val gen = | 
| 74266 | 980 | if Names.is_empty frees then [] | 
| 70827 
730251503341
proper generalize_proof: schematic variables need to be explicit in the resulting proof term (for shrink/reconstruct operation);
 wenzelm parents: 
70824diff
changeset | 981 | else | 
| 74266 | 982 | fold_aterms (fn Free (x, T) => Names.defined frees x ? insert (op =) (x, T) | _ => I) | 
| 983 | (Term_Subst.generalize (tfrees, Names.empty) idx prop) []; | |
| 70827 
730251503341
proper generalize_proof: schematic variables need to be explicit in the resulting proof term (for shrink/reconstruct operation);
 wenzelm parents: 
70824diff
changeset | 984 | in | 
| 
730251503341
proper generalize_proof: schematic variables need to be explicit in the resulting proof term (for shrink/reconstruct operation);
 wenzelm parents: 
70824diff
changeset | 985 | prf | 
| 
730251503341
proper generalize_proof: schematic variables need to be explicit in the resulting proof term (for shrink/reconstruct operation);
 wenzelm parents: 
70824diff
changeset | 986 | |> Same.commit (map_proof_terms_same | 
| 74266 | 987 | (Term_Subst.generalize_same (tfrees, Names.empty) idx) | 
| 70827 
730251503341
proper generalize_proof: schematic variables need to be explicit in the resulting proof term (for shrink/reconstruct operation);
 wenzelm parents: 
70824diff
changeset | 988 | (Term_Subst.generalizeT_same tfrees idx)) | 
| 
730251503341
proper generalize_proof: schematic variables need to be explicit in the resulting proof term (for shrink/reconstruct operation);
 wenzelm parents: 
70824diff
changeset | 989 | |> fold (fn (x, T) => forall_intr_proof (x, Free (x, T)) NONE) gen | 
| 
730251503341
proper generalize_proof: schematic variables need to be explicit in the resulting proof term (for shrink/reconstruct operation);
 wenzelm parents: 
70824diff
changeset | 990 | |> fold_rev (fn (x, T) => fn prf' => prf' %> Var (Name.clean_index (x, idx), T)) gen | 
| 
730251503341
proper generalize_proof: schematic variables need to be explicit in the resulting proof term (for shrink/reconstruct operation);
 wenzelm parents: 
70824diff
changeset | 991 | end; | 
| 19908 | 992 | |
| 993 | ||
| 70397 | 994 | (* instantiation *) | 
| 11519 | 995 | |
| 20000 | 996 | fun instantiate (instT, inst) = | 
| 36620 
e6bb250402b5
simplified/unified fundamental operations on types/terms/proofterms -- prefer Same.operation over "option" variant;
 wenzelm parents: 
36619diff
changeset | 997 | Same.commit (map_proof_terms_same | 
| 74266 | 998 | (Term_Subst.instantiate_same (instT, Vars.map (K remove_types) inst)) | 
| 36620 
e6bb250402b5
simplified/unified fundamental operations on types/terms/proofterms -- prefer Same.operation over "option" variant;
 wenzelm parents: 
36619diff
changeset | 999 | (Term_Subst.instantiateT_same instT)); | 
| 11519 | 1000 | |
| 1001 | ||
| 70397 | 1002 | (* lifting *) | 
| 11519 | 1003 | |
| 79227 | 1004 | fun lift_proof gprop inc prems prf = | 
| 11519 | 1005 | let | 
| 79217 
5073bbdfa2b8
misc tuning and clarification: more standard Same.commit discipline;
 wenzelm parents: 
79215diff
changeset | 1006 | val typ = Logic.incr_tvar_same inc; | 
| 
5073bbdfa2b8
misc tuning and clarification: more standard Same.commit discipline;
 wenzelm parents: 
79215diff
changeset | 1007 | val typs = Same.map_option (Same.map typ); | 
| 
5073bbdfa2b8
misc tuning and clarification: more standard Same.commit discipline;
 wenzelm parents: 
79215diff
changeset | 1008 | |
| 79233 
f0e49c3957a9
minor performance tuning: more direct abstraction level;
 wenzelm parents: 
79232diff
changeset | 1009 | fun term Ts lev = | 
| 
f0e49c3957a9
minor performance tuning: more direct abstraction level;
 wenzelm parents: 
79232diff
changeset | 1010 |       Logic.incr_indexes_operation {fixed = [], Ts = Ts, inc = inc, level = lev};
 | 
| 11519 | 1011 | |
| 79233 
f0e49c3957a9
minor performance tuning: more direct abstraction level;
 wenzelm parents: 
79232diff
changeset | 1012 | fun proof Ts lev (Abst (a, T, p)) = | 
| 
f0e49c3957a9
minor performance tuning: more direct abstraction level;
 wenzelm parents: 
79232diff
changeset | 1013 | (Abst (a, Same.map_option typ T, Same.commit (proof Ts (lev + 1)) p) | 
| 
f0e49c3957a9
minor performance tuning: more direct abstraction level;
 wenzelm parents: 
79232diff
changeset | 1014 | handle Same.SAME => Abst (a, T, proof Ts (lev + 1) p)) | 
| 
f0e49c3957a9
minor performance tuning: more direct abstraction level;
 wenzelm parents: 
79232diff
changeset | 1015 | | proof Ts lev (AbsP (a, t, p)) = | 
| 
f0e49c3957a9
minor performance tuning: more direct abstraction level;
 wenzelm parents: 
79232diff
changeset | 1016 | (AbsP (a, Same.map_option (term Ts lev) t, Same.commit (proof Ts lev) p) | 
| 
f0e49c3957a9
minor performance tuning: more direct abstraction level;
 wenzelm parents: 
79232diff
changeset | 1017 | handle Same.SAME => AbsP (a, t, proof Ts lev p)) | 
| 
f0e49c3957a9
minor performance tuning: more direct abstraction level;
 wenzelm parents: 
79232diff
changeset | 1018 | | proof Ts lev (p % t) = | 
| 
f0e49c3957a9
minor performance tuning: more direct abstraction level;
 wenzelm parents: 
79232diff
changeset | 1019 | (proof Ts lev p % Option.map (Same.commit (term Ts lev)) t | 
| 
f0e49c3957a9
minor performance tuning: more direct abstraction level;
 wenzelm parents: 
79232diff
changeset | 1020 | handle Same.SAME => p % Same.map_option (term Ts lev) t) | 
| 
f0e49c3957a9
minor performance tuning: more direct abstraction level;
 wenzelm parents: 
79232diff
changeset | 1021 | | proof Ts lev (p %% q) = | 
| 
f0e49c3957a9
minor performance tuning: more direct abstraction level;
 wenzelm parents: 
79232diff
changeset | 1022 | (proof Ts lev p %% Same.commit (proof Ts lev) q | 
| 
f0e49c3957a9
minor performance tuning: more direct abstraction level;
 wenzelm parents: 
79232diff
changeset | 1023 | handle Same.SAME => p %% proof Ts lev q) | 
| 79217 
5073bbdfa2b8
misc tuning and clarification: more standard Same.commit discipline;
 wenzelm parents: 
79215diff
changeset | 1024 | | proof _ _ (PAxm (a, prop, Ts)) = PAxm (a, prop, typs Ts) | 
| 
5073bbdfa2b8
misc tuning and clarification: more standard Same.commit discipline;
 wenzelm parents: 
79215diff
changeset | 1025 | | proof _ _ (PClass (T, c)) = PClass (typ T, c) | 
| 
5073bbdfa2b8
misc tuning and clarification: more standard Same.commit discipline;
 wenzelm parents: 
79215diff
changeset | 1026 | | proof _ _ (Oracle (a, prop, Ts)) = Oracle (a, prop, typs Ts) | 
| 80295 
8a9588ffc133
more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
 wenzelm parents: 
80288diff
changeset | 1027 |       | proof _ _ (PThm ({serial, pos, theory_name, thm_name, prop, types}, thm_body)) =
 | 
| 
8a9588ffc133
more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
 wenzelm parents: 
80288diff
changeset | 1028 | PThm (thm_header serial pos theory_name thm_name prop (typs types), thm_body) | 
| 79217 
5073bbdfa2b8
misc tuning and clarification: more standard Same.commit discipline;
 wenzelm parents: 
79215diff
changeset | 1029 | | proof _ _ _ = raise Same.SAME; | 
| 11519 | 1030 | |
| 79227 | 1031 | val k = length prems; | 
| 11519 | 1032 | |
| 79227 | 1033 | fun mk_app b (i, j, p) = | 
| 1034 | if b then (i - 1, j, p %% PBound i) else (i, j - 1, p %> Bound j); | |
| 11519 | 1035 | |
| 79233 
f0e49c3957a9
minor performance tuning: more direct abstraction level;
 wenzelm parents: 
79232diff
changeset | 1036 |     fun lift Ts bs i j (Const ("Pure.imp", _) $ A $ B) =
 | 
| 
f0e49c3957a9
minor performance tuning: more direct abstraction level;
 wenzelm parents: 
79232diff
changeset | 1037 |           AbsP ("H", NONE (*A*), lift Ts (true::bs) (i + 1) j B)
 | 
| 
f0e49c3957a9
minor performance tuning: more direct abstraction level;
 wenzelm parents: 
79232diff
changeset | 1038 |       | lift Ts bs i j (Const ("Pure.all", _) $ Abs (a, T, t)) =
 | 
| 
f0e49c3957a9
minor performance tuning: more direct abstraction level;
 wenzelm parents: 
79232diff
changeset | 1039 | Abst (a, NONE (*T*), lift (T::Ts) (false::bs) i (j + 1) t) | 
| 
f0e49c3957a9
minor performance tuning: more direct abstraction level;
 wenzelm parents: 
79232diff
changeset | 1040 | | lift Ts bs i j _ = | 
| 
f0e49c3957a9
minor performance tuning: more direct abstraction level;
 wenzelm parents: 
79232diff
changeset | 1041 | proof_combP (Same.commit (proof (rev Ts) 0) prf, | 
| 79215 | 1042 | map (fn k => (#3 (fold_rev mk_app bs (i - 1, j - 1, PBound k)))) (i + k - 1 downto i)); | 
| 79227 | 1043 | in mk_AbsP prems (lift [] [] 0 0 gprop) end; | 
| 11519 | 1044 | |
| 32027 | 1045 | fun incr_indexes i = | 
| 79232 | 1046 | Same.commit | 
| 1047 | (map_proof_terms_same | |
| 1048 |       (Logic.incr_indexes_operation {fixed = [], Ts = [], inc = i, level = 0})
 | |
| 1049 | (Logic.incr_tvar_same i)); | |
| 32027 | 1050 | |
| 11519 | 1051 | |
| 70397 | 1052 | (* proof by assumption *) | 
| 11519 | 1053 | |
| 79208 | 1054 | fun mk_asm_prf C i m = | 
| 23296 
25f28f9c28a3
Adapted Proofterm.bicompose_proof to Larry's changes in
 berghofe parents: 
23178diff
changeset | 1055 | let | 
| 
25f28f9c28a3
Adapted Proofterm.bicompose_proof to Larry's changes in
 berghofe parents: 
23178diff
changeset | 1056 | fun imp_prf _ i 0 = PBound i | 
| 56245 | 1057 |       | imp_prf (Const ("Pure.imp", _) $ A $ B) i m = AbsP ("H", NONE (*A*), imp_prf B (i+1) (m-1))
 | 
| 23296 
25f28f9c28a3
Adapted Proofterm.bicompose_proof to Larry's changes in
 berghofe parents: 
23178diff
changeset | 1058 | | imp_prf _ i _ = PBound i; | 
| 56245 | 1059 |     fun all_prf (Const ("Pure.all", _) $ Abs (a, T, t)) = Abst (a, NONE (*T*), all_prf t)
 | 
| 23296 
25f28f9c28a3
Adapted Proofterm.bicompose_proof to Larry's changes in
 berghofe parents: 
23178diff
changeset | 1060 | | all_prf t = imp_prf t (~i) m | 
| 79208 | 1061 | in all_prf C end; | 
| 11519 | 1062 | |
| 1063 | fun assumption_proof Bs Bi n prf = | |
| 70822 
22e2f5acc0b4
more accurate treatment of propositions within proof terms, but these are ultimately ignored for performance reasons;
 wenzelm parents: 
70815diff
changeset | 1064 | mk_AbsP Bs (proof_combP (prf, map PBound (length Bs - 1 downto 0) @ [mk_asm_prf Bi n ~1])); | 
| 11519 | 1065 | |
| 1066 | ||
| 70397 | 1067 | (* composition of object rule with proof state *) | 
| 11519 | 1068 | |
| 56245 | 1069 | fun flatten_params_proof i j n (Const ("Pure.imp", _) $ A $ B, k) =
 | 
| 15531 | 1070 |       AbsP ("H", NONE (*A*), flatten_params_proof (i+1) j n (B, k))
 | 
| 56245 | 1071 |   | flatten_params_proof i j n (Const ("Pure.all", _) $ Abs (a, T, t), k) =
 | 
| 15531 | 1072 | Abst (a, NONE (*T*), flatten_params_proof i (j+1) n (t, k)) | 
| 11519 | 1073 | | flatten_params_proof i j n (_, k) = proof_combP (proof_combt (PBound (k+i), | 
| 19304 | 1074 | map Bound (j-1 downto 0)), map PBound (remove (op =) (i-n) (i-1 downto 0))); | 
| 11519 | 1075 | |
| 79241 | 1076 | fun bicompose_proof env smax flatten Bs As A oldAs n m rprf sprf = | 
| 11519 | 1077 | let | 
| 79240 | 1078 | val normt = Envir.norm_term env; | 
| 79241 | 1079 | val normp = norm_proof_remove_types env; | 
| 79240 | 1080 | |
| 11519 | 1081 | val lb = length Bs; | 
| 70822 
22e2f5acc0b4
more accurate treatment of propositions within proof terms, but these are ultimately ignored for performance reasons;
 wenzelm parents: 
70815diff
changeset | 1082 | val la = length As; | 
| 79241 | 1083 | |
| 1084 | fun proof p = | |
| 1085 | mk_AbsP (map normt (Bs @ As)) (proof_combP (sprf, | |
| 1086 | map PBound (lb + la - 1 downto la)) %% | |
| 1087 | proof_combP (p, (if n>0 then [mk_asm_prf (the A) n m] else []) @ | |
| 1088 | map (if flatten then flatten_params_proof 0 0 n else PBound o snd) | |
| 1089 | (oldAs ~~ (la - 1 downto 0)))); | |
| 11519 | 1090 | in | 
| 79241 | 1091 | if Envir.is_empty env then proof rprf | 
| 1092 | else if Envir.above env smax | |
| 1093 | then proof (normp rprf) | |
| 1094 | else normp (proof rprf) | |
| 11519 | 1095 | end; | 
| 1096 | ||
| 1097 | ||
| 70397 | 1098 | |
| 79404 | 1099 | (** sort constraints within the logic **) | 
| 36621 
2fd4e2c76636
proof terms for strip_shyps, based on the version by krauss/schropp with some notable differences:
 wenzelm parents: 
36620diff
changeset | 1100 | |
| 79405 | 1101 | type sorts_proof = (class * class -> proof) * (string * class list list * class -> proof); | 
| 1102 | ||
| 1103 | fun of_sort_proof algebra (classrel_proof, arity_proof) hyps = | |
| 70458 | 1104 | Sorts.of_sort_derivation algebra | 
| 1105 |    {class_relation = fn _ => fn _ => fn (prf, c1) => fn c2 =>
 | |
| 1106 | if c1 = c2 then prf else classrel_proof (c1, c2) %% prf, | |
| 1107 | type_constructor = fn (a, _) => fn dom => fn c => | |
| 36741 
d65ed9d7275e
added of_sort_proof according to krauss/schropp, with slightly more direct canonical_instance;
 wenzelm parents: 
36740diff
changeset | 1108 | let val Ss = map (map snd) dom and prfs = maps (map fst) dom | 
| 70458 | 1109 | in proof_combP (arity_proof (a, Ss, c), prfs) end, | 
| 36741 
d65ed9d7275e
added of_sort_proof according to krauss/schropp, with slightly more direct canonical_instance;
 wenzelm parents: 
36740diff
changeset | 1110 | type_variable = fn typ => map (fn c => (hyps (typ, c), c)) (Type.sort_of_atyp typ)}; | 
| 
d65ed9d7275e
added of_sort_proof according to krauss/schropp, with slightly more direct canonical_instance;
 wenzelm parents: 
36740diff
changeset | 1111 | |
| 79405 | 1112 | fun unconstrainT_proof algebra sorts_proof (ucontext: Logic.unconstrain_context) = | 
| 79403 | 1113 | let | 
| 79407 | 1114 |     val typ = #typ_operation ucontext {strip_sorts = true};
 | 
| 1115 |     val typ_sort = #typ_operation ucontext {strip_sorts = false};
 | |
| 79403 | 1116 | |
| 79406 | 1117 | fun hyps T = | 
| 1118 | (case AList.lookup (op =) (#constraints ucontext) T of | |
| 1119 | SOME t => Hyp t | |
| 1120 | | NONE => raise Fail "unconstrainT_proof: missing constraint"); | |
| 1121 | ||
| 1122 | fun class (T, c) = | |
| 1123 | let val T' = Same.commit typ_sort T | |
| 1124 | in the_single (of_sort_proof algebra sorts_proof hyps (T', [c])) end; | |
| 79403 | 1125 | in | 
| 79409 | 1126 | Same.commit (map_proof_same (Term.map_types_same typ) typ class) | 
| 79406 | 1127 | #> fold_rev (implies_intr_proof o #2) (#constraints ucontext) | 
| 79403 | 1128 | end; | 
| 1129 | ||
| 36741 
d65ed9d7275e
added of_sort_proof according to krauss/schropp, with slightly more direct canonical_instance;
 wenzelm parents: 
36740diff
changeset | 1130 | |
| 70420 | 1131 | |
| 70397 | 1132 | (** axioms and theorems **) | 
| 11519 | 1133 | |
| 70948 
5ed8c7e826a2
proper order of variables, independently of varify/unvarify state -- relevant for export of locale conclusions;
 wenzelm parents: 
70916diff
changeset | 1134 | val add_type_variables = (fold_types o fold_atyps) (insert (op =)); | 
| 
5ed8c7e826a2
proper order of variables, independently of varify/unvarify state -- relevant for export of locale conclusions;
 wenzelm parents: 
70916diff
changeset | 1135 | fun type_variables_of t = rev (add_type_variables t []); | 
| 70810 | 1136 | |
| 70948 
5ed8c7e826a2
proper order of variables, independently of varify/unvarify state -- relevant for export of locale conclusions;
 wenzelm parents: 
70916diff
changeset | 1137 | val add_variables = fold_aterms (fn a => (is_Var a orelse is_Free a) ? insert (op =) a); | 
| 
5ed8c7e826a2
proper order of variables, independently of varify/unvarify state -- relevant for export of locale conclusions;
 wenzelm parents: 
70916diff
changeset | 1138 | fun variables_of t = rev (add_variables t []); | 
| 11519 | 1139 | |
| 1140 | fun test_args _ [] = true | |
| 1141 | | test_args is (Bound i :: ts) = | |
| 17492 | 1142 | not (member (op =) is i) andalso test_args (i :: is) ts | 
| 11519 | 1143 | | test_args _ _ = false; | 
| 1144 | ||
| 1145 | fun is_fun (Type ("fun", _)) = true
 | |
| 1146 | | is_fun (TVar _) = true | |
| 1147 | | is_fun _ = false; | |
| 1148 | ||
| 74235 | 1149 | fun vars_of t = map Var (build_rev (Term.add_vars t)); | 
| 70948 
5ed8c7e826a2
proper order of variables, independently of varify/unvarify state -- relevant for export of locale conclusions;
 wenzelm parents: 
70916diff
changeset | 1150 | |
| 11519 | 1151 | fun add_funvars Ts (vs, t) = | 
| 1152 | if is_fun (fastype_of1 (Ts, t)) then | |
| 33042 | 1153 | union (op =) vs (map_filter (fn Var (ixn, T) => | 
| 33037 
b22e44496dc2
replaced old_style infixes eq_set, subset, union, inter and variants by generic versions
 haftmann parents: 
32810diff
changeset | 1154 | if is_fun T then SOME ixn else NONE | _ => NONE) (vars_of t)) | 
| 11519 | 1155 | else vs; | 
| 1156 | ||
| 56245 | 1157 | fun add_npvars q p Ts (vs, Const ("Pure.imp", _) $ t $ u) =
 | 
| 11519 | 1158 | add_npvars q p Ts (add_npvars q (not p) Ts (vs, t), u) | 
| 56245 | 1159 |   | add_npvars q p Ts (vs, Const ("Pure.all", Type (_, [Type (_, [T, _]), _])) $ t) =
 | 
| 11519 | 1160 |       add_npvars q p Ts (vs, if p andalso q then betapply (t, Var (("",0), T)) else t)
 | 
| 12041 | 1161 | | add_npvars q p Ts (vs, Abs (_, T, t)) = add_npvars q p (T::Ts) (vs, t) | 
| 1162 | | add_npvars _ _ Ts (vs, t) = add_npvars' Ts (vs, t) | |
| 64566 | 1163 | and add_npvars' Ts (vs, t) = | 
| 1164 | (case strip_comb t of | |
| 11519 | 1165 | (Var (ixn, _), ts) => if test_args [] ts then vs | 
| 17314 | 1166 | else Library.foldl (add_npvars' Ts) | 
| 1167 | (AList.update (op =) (ixn, | |
| 1168 | Library.foldl (add_funvars Ts) ((these ooo AList.lookup) (op =) vs ixn, ts)) vs, ts) | |
| 15570 | 1169 | | (Abs (_, T, u), ts) => Library.foldl (add_npvars' (T::Ts)) (vs, u :: ts) | 
| 1170 | | (_, ts) => Library.foldl (add_npvars' Ts) (vs, ts)); | |
| 11519 | 1171 | |
| 56245 | 1172 | fun prop_vars (Const ("Pure.imp", _) $ P $ Q) = union (op =) (prop_vars P) (prop_vars Q)
 | 
| 1173 |   | prop_vars (Const ("Pure.all", _) $ Abs (_, _, t)) = prop_vars t
 | |
| 64566 | 1174 | | prop_vars t = (case strip_comb t of (Var (ixn, _), _) => [ixn] | _ => []); | 
| 11519 | 1175 | |
| 1176 | fun is_proj t = | |
| 1177 | let | |
| 64566 | 1178 | fun is_p i t = | 
| 1179 | (case strip_comb t of | |
| 63857 | 1180 | (Bound _, []) => false | 
| 11519 | 1181 | | (Bound j, ts) => j >= i orelse exists (is_p i) ts | 
| 1182 | | (Abs (_, _, u), _) => is_p (i+1) u | |
| 1183 | | (_, ts) => exists (is_p i) ts) | |
| 64566 | 1184 | in | 
| 1185 | (case strip_abs_body t of | |
| 1186 | Bound _ => true | |
| 1187 | | t' => is_p 0 t') | |
| 11519 | 1188 | end; | 
| 1189 | ||
| 70416 | 1190 | fun prop_args prop = | 
| 1191 | let | |
| 1192 | val needed_vars = | |
| 1193 | union (op =) (Library.foldl (uncurry (union (op =))) | |
| 1194 | ([], map (uncurry (insert (op =))) (add_npvars true true [] ([], prop)))) | |
| 1195 | (prop_vars prop); | |
| 70948 
5ed8c7e826a2
proper order of variables, independently of varify/unvarify state -- relevant for export of locale conclusions;
 wenzelm parents: 
70916diff
changeset | 1196 | in | 
| 
5ed8c7e826a2
proper order of variables, independently of varify/unvarify state -- relevant for export of locale conclusions;
 wenzelm parents: 
70916diff
changeset | 1197 | variables_of prop |> map | 
| 
5ed8c7e826a2
proper order of variables, independently of varify/unvarify state -- relevant for export of locale conclusions;
 wenzelm parents: 
70916diff
changeset | 1198 | (fn var as Var (ixn, _) => if member (op =) needed_vars ixn then SOME var else NONE | 
| 
5ed8c7e826a2
proper order of variables, independently of varify/unvarify state -- relevant for export of locale conclusions;
 wenzelm parents: 
70916diff
changeset | 1199 | | free => SOME free) | 
| 
5ed8c7e826a2
proper order of variables, independently of varify/unvarify state -- relevant for export of locale conclusions;
 wenzelm parents: 
70916diff
changeset | 1200 | end; | 
| 11519 | 1201 | |
| 70835 
2d991e01a671
proper treatment of axm_proof/oracle_proof like a closed proof constant, e.g. relevant for proof reconstruction of List.list.full_exhaustive_list.simps;
 wenzelm parents: 
70834diff
changeset | 1202 | fun const_proof mk name prop = | 
| 
2d991e01a671
proper treatment of axm_proof/oracle_proof like a closed proof constant, e.g. relevant for proof reconstruction of List.list.full_exhaustive_list.simps;
 wenzelm parents: 
70834diff
changeset | 1203 | let | 
| 
2d991e01a671
proper treatment of axm_proof/oracle_proof like a closed proof constant, e.g. relevant for proof reconstruction of List.list.full_exhaustive_list.simps;
 wenzelm parents: 
70834diff
changeset | 1204 | val args = prop_args prop; | 
| 77869 | 1205 |     val ({outer_constraints, ...}, prop1) = Logic.unconstrainT [] prop;
 | 
| 70835 
2d991e01a671
proper treatment of axm_proof/oracle_proof like a closed proof constant, e.g. relevant for proof reconstruction of List.list.full_exhaustive_list.simps;
 wenzelm parents: 
70834diff
changeset | 1206 | val head = mk (name, prop1, NONE); | 
| 71777 
3875815f5967
clarified signature: avoid clash with Isabelle/Scala Term.OFCLASS on case-insensible file-system;
 wenzelm parents: 
71533diff
changeset | 1207 | in proof_combP (proof_combt' (head, args), map PClass outer_constraints) end; | 
| 17017 | 1208 | |
| 79410 | 1209 | val axiom_proof = const_proof PAxm; | 
| 70835 
2d991e01a671
proper treatment of axm_proof/oracle_proof like a closed proof constant, e.g. relevant for proof reconstruction of List.list.full_exhaustive_list.simps;
 wenzelm parents: 
70834diff
changeset | 1210 | val oracle_proof = const_proof Oracle; | 
| 11519 | 1211 | |
| 63623 | 1212 | val shrink_proof = | 
| 17492 | 1213 | let | 
| 1214 | fun shrink ls lev (prf as Abst (a, T, body)) = | |
| 1215 | let val (b, is, ch, body') = shrink ls (lev+1) body | |
| 51100 
18daa3380ff7
discontinued home-made sharing for proof terms -- leave memory management to the Poly/ML RTS;
 wenzelm parents: 
51047diff
changeset | 1216 | in (b, is, ch, if ch then Abst (a, T, body') else prf) end | 
| 17492 | 1217 | | shrink ls lev (prf as AbsP (a, t, body)) = | 
| 1218 | 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 | 1219 | in (b orelse member (op =) is 0, map_filter (fn 0 => NONE | i => SOME (i-1)) is, | 
| 51100 
18daa3380ff7
discontinued home-made sharing for proof terms -- leave memory management to the Poly/ML RTS;
 wenzelm parents: 
51047diff
changeset | 1220 | ch, if ch then AbsP (a, t, body') else prf) | 
| 17492 | 1221 | end | 
| 1222 | | shrink ls lev prf = | |
| 1223 | let val (is, ch, _, prf') = shrink' ls lev [] [] prf | |
| 1224 | in (false, is, ch, prf') end | |
| 1225 | and shrink' ls lev ts prfs (prf as prf1 %% prf2) = | |
| 1226 | let | |
| 1227 | val p as (_, is', ch', prf') = shrink ls lev prf2; | |
| 1228 | val (is, ch, ts', prf'') = shrink' ls lev ts (p::prfs) prf1 | |
| 33042 | 1229 | in (union (op =) is is', ch orelse ch', ts', | 
| 17492 | 1230 | if ch orelse ch' then prf'' %% prf' else prf) | 
| 1231 | end | |
| 1232 | | shrink' ls lev ts prfs (prf as prf1 % t) = | |
| 1233 | let val (is, ch, (ch', t')::ts', prf') = shrink' ls lev (t::ts) prfs prf1 | |
| 1234 | in (is, ch orelse ch', ts', | |
| 51100 
18daa3380ff7
discontinued home-made sharing for proof terms -- leave memory management to the Poly/ML RTS;
 wenzelm parents: 
51047diff
changeset | 1235 | if ch orelse ch' then prf' % t' else prf) end | 
| 17492 | 1236 | | shrink' ls lev ts prfs (prf as PBound i) = | 
| 30146 | 1237 | (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 | 1238 | orelse has_duplicates (op =) | 
| 
042608ffa2ec
subsituted gen_duplicates / has_duplicates for duplicates whenever appropriate
 haftmann parents: 
18485diff
changeset | 1239 | (Library.foldl (fn (js, SOME (Bound j)) => j :: js | (js, _) => js) ([], ts)) | 
| 17492 | 1240 | orelse exists #1 prfs then [i] else [], false, map (pair false) ts, prf) | 
| 63857 | 1241 | | shrink' _ _ ts _ (Hyp t) = ([], false, map (pair false) ts, Hyp t) | 
| 1242 | | shrink' _ _ ts _ (prf as MinProof) = ([], false, map (pair false) ts, prf) | |
| 71777 
3875815f5967
clarified signature: avoid clash with Isabelle/Scala Term.OFCLASS on case-insensible file-system;
 wenzelm parents: 
71533diff
changeset | 1243 | | shrink' _ _ ts _ (prf as PClass _) = ([], false, map (pair false) ts, prf) | 
| 63857 | 1244 | | shrink' _ _ ts prfs prf = | 
| 17492 | 1245 | let | 
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 1246 | val prop = | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 1247 | (case prf of | 
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 1248 | PAxm (_, prop, _) => prop | 
| 70834 | 1249 | | Oracle (_, prop, _) => prop | 
| 70493 | 1250 |               | PThm ({prop, ...}, _) => prop
 | 
| 36879 
201a4afd8533
raise Fail uniformly for proofterm errors, which appear to be rather low-level;
 wenzelm parents: 
36878diff
changeset | 1251 | | _ => raise Fail "shrink: proof not in normal form"); | 
| 17492 | 1252 | val vs = vars_of prop; | 
| 19012 | 1253 | val (ts', ts'') = chop (length vs) ts; | 
| 33957 | 1254 | val insts = take (length ts') (map (fst o dest_Var) vs) ~~ ts'; | 
| 17492 | 1255 | val nvs = Library.foldl (fn (ixns', (ixn, ixns)) => | 
| 64566 | 1256 | insert (op =) ixn | 
| 1257 | (case AList.lookup (op =) insts ixn of | |
| 33042 | 1258 | SOME (SOME t) => if is_proj t then union (op =) ixns ixns' else ixns' | 
| 1259 | | _ => union (op =) ixns ixns')) | |
| 17492 | 1260 | (needed prop ts'' prfs, add_npvars false true [] ([], prop)); | 
| 1261 | val insts' = map | |
| 1262 | (fn (ixn, x as SOME _) => if member (op =) nvs ixn then (false, x) else (true, NONE) | |
| 1263 | | (_, x) => (false, x)) insts | |
| 1264 | in ([], false, insts' @ map (pair false) ts'', prf) end | |
| 56245 | 1265 |     and needed (Const ("Pure.imp", _) $ t $ u) ts ((b, _, _, _)::prfs) =
 | 
| 33042 | 1266 | union (op =) (if b then map (fst o dest_Var) (vars_of t) else []) (needed u ts prfs) | 
| 17492 | 1267 | | needed (Var (ixn, _)) (_::_) _ = [ixn] | 
| 1268 | | needed _ _ _ = []; | |
| 63623 | 1269 | in fn prf => #4 (shrink [] 0 prf) end; | 
| 11519 | 1270 | |
| 1271 | ||
| 70397 | 1272 | |
| 70420 | 1273 | (** axioms for equality **) | 
| 1274 | ||
| 79122 | 1275 | local val thy = Sign.local_path (Context.the_global_context ()) in | 
| 1276 | ||
| 70420 | 1277 | val [reflexive_axm, symmetric_axm, transitive_axm, equal_intr_axm, | 
| 1278 | equal_elim_axm, abstract_rule_axm, combination_axm] = | |
| 79122 | 1279 | map (fn (b, t) => PAxm (Sign.full_name thy b, Logic.varify_global t, NONE)) | 
| 1280 | Theory.equality_axioms; | |
| 1281 | ||
| 1282 | end; | |
| 70420 | 1283 | |
| 70814 | 1284 | val reflexive_proof = reflexive_axm % NONE; | 
| 1285 | ||
| 1286 | val is_reflexive_proof = fn PAxm ("Pure.reflexive", _, _) % _ => true | _ => false;
 | |
| 70420 | 1287 | |
| 70814 | 1288 | fun symmetric_proof prf = | 
| 1289 | if is_reflexive_proof prf then prf | |
| 1290 | else symmetric_axm % NONE % NONE %% prf; | |
| 70420 | 1291 | |
| 70814 | 1292 | fun transitive_proof U u prf1 prf2 = | 
| 1293 | if is_reflexive_proof prf1 then prf2 | |
| 1294 | else if is_reflexive_proof prf2 then prf1 | |
| 1295 | else if U = propT then transitive_axm % NONE % SOME (remove_types u) % NONE %% prf1 %% prf2 | |
| 1296 | else transitive_axm % NONE % NONE % NONE %% prf1 %% prf2; | |
| 70420 | 1297 | |
| 70814 | 1298 | fun equal_intr_proof A B prf1 prf2 = | 
| 1299 | equal_intr_axm %> remove_types A %> remove_types B %% prf1 %% prf2; | |
| 1300 | ||
| 1301 | fun equal_elim_proof A B prf1 prf2 = | |
| 1302 | equal_elim_axm %> remove_types A %> remove_types B %% prf1 %% prf2; | |
| 1303 | ||
| 1304 | fun abstract_rule_proof (a, x) prf = | |
| 1305 | abstract_rule_axm % NONE % NONE %% forall_intr_proof (a, x) NONE prf; | |
| 70420 | 1306 | |
| 1307 | fun check_comb (PAxm ("Pure.combination", _, _) % f % _ % _ % _ %% prf %% _) =
 | |
| 1308 | is_some f orelse check_comb prf | |
| 1309 |   | check_comb (PAxm ("Pure.transitive", _, _) % _ % _ % _ %% prf1 %% prf2) =
 | |
| 1310 | check_comb prf1 andalso check_comb prf2 | |
| 1311 |   | check_comb (PAxm ("Pure.symmetric", _, _) % _ % _ %% prf) = check_comb prf
 | |
| 1312 | | check_comb _ = false; | |
| 1313 | ||
| 70908 | 1314 | fun combination_proof f g t u prf1 prf2 = | 
| 70420 | 1315 | let | 
| 79123 | 1316 | val f' = Envir.beta_norm f; | 
| 1317 | val g' = Envir.beta_norm g; | |
| 1318 | val ax = | |
| 1319 | if check_comb prf1 then combination_axm % NONE % NONE | |
| 1320 | else if is_reflexive_proof prf1 then combination_axm %> remove_types f' % NONE | |
| 1321 | else combination_axm %> remove_types f' %> remove_types g' | |
| 1322 | val t' = | |
| 79441 | 1323 | (case Term.head_of f' of | 
| 70888 
9ff9559f1ee2
more informative combination_proof, e.g. relevant for proper type inference in HOL.Product_Type (with export_proofs);
 wenzelm parents: 
70887diff
changeset | 1324 | Abs _ => SOME (remove_types t) | 
| 
9ff9559f1ee2
more informative combination_proof, e.g. relevant for proper type inference in HOL.Product_Type (with export_proofs);
 wenzelm parents: 
70887diff
changeset | 1325 | | Var _ => SOME (remove_types t) | 
| 79123 | 1326 | | _ => NONE); | 
| 1327 | val u' = | |
| 79441 | 1328 | (case Term.head_of g' of | 
| 70888 
9ff9559f1ee2
more informative combination_proof, e.g. relevant for proper type inference in HOL.Product_Type (with export_proofs);
 wenzelm parents: 
70887diff
changeset | 1329 | Abs _ => SOME (remove_types u) | 
| 
9ff9559f1ee2
more informative combination_proof, e.g. relevant for proper type inference in HOL.Product_Type (with export_proofs);
 wenzelm parents: 
70887diff
changeset | 1330 | | Var _ => SOME (remove_types u) | 
| 79123 | 1331 | | _ => NONE); | 
| 1332 | in ax % t' % u' %% prf1 %% prf2 end; | |
| 70420 | 1333 | |
| 1334 | ||
| 1335 | ||
| 70399 | 1336 | (** rewriting on proof terms **) | 
| 1337 | ||
| 1338 | (* simple first order matching functions for terms and proofs (see pattern.ML) *) | |
| 11519 | 1339 | |
| 1340 | exception PMatch; | |
| 1341 | ||
| 33317 | 1342 | fun flt (i: int) = filter (fn n => n < i); | 
| 12279 | 1343 | |
| 37231 
e5419ecf92b7
- outer_constraints with original variable names, to ensure that argsP is consistent with args
 berghofe parents: 
36883diff
changeset | 1344 | fun fomatch Ts tymatch j instsp p = | 
| 11519 | 1345 | let | 
| 1346 | fun mtch (instsp as (tyinsts, insts)) = fn | |
| 1347 | (Var (ixn, T), t) => | |
| 12279 | 1348 | if j>0 andalso not (null (flt j (loose_bnos t))) | 
| 1349 | then raise PMatch | |
| 1350 | else (tymatch (tyinsts, fn () => (T, fastype_of1 (Ts, t))), | |
| 1351 | (ixn, t) :: insts) | |
| 11519 | 1352 | | (Free (a, T), Free (b, U)) => | 
| 20147 | 1353 | if a=b then (tymatch (tyinsts, K (T, U)), insts) else raise PMatch | 
| 11519 | 1354 | | (Const (a, T), Const (b, U)) => | 
| 20147 | 1355 | if a=b then (tymatch (tyinsts, K (T, U)), insts) else raise PMatch | 
| 11519 | 1356 | | (f $ t, g $ u) => mtch (mtch instsp (f, g)) (t, u) | 
| 12279 | 1357 | | (Bound i, Bound j) => if i=j then instsp else raise PMatch | 
| 11519 | 1358 | | _ => raise PMatch | 
| 59058 
a78612c67ec0
renamed "pairself" to "apply2", in accordance to @{apply 2};
 wenzelm parents: 
56245diff
changeset | 1359 | in mtch instsp (apply2 Envir.beta_eta_contract p) end; | 
| 11519 | 1360 | |
| 12279 | 1361 | fun match_proof Ts tymatch = | 
| 11519 | 1362 | let | 
| 15531 | 1363 | fun optmatch _ inst (NONE, _) = inst | 
| 1364 | | optmatch _ _ (SOME _, NONE) = raise PMatch | |
| 1365 | | optmatch mtch inst (SOME x, SOME y) = mtch inst (x, y) | |
| 12279 | 1366 | |
| 1367 | fun matcht Ts j (pinst, tinst) (t, u) = | |
| 1368 | (pinst, fomatch Ts tymatch j tinst (t, Envir.beta_norm u)); | |
| 1369 | fun matchT (pinst, (tyinsts, insts)) p = | |
| 1370 | (pinst, (tymatch (tyinsts, K p), insts)); | |
| 15570 | 1371 | fun matchTs inst (Ts, Us) = Library.foldl (uncurry matchT) (inst, Ts ~~ Us); | 
| 12279 | 1372 | |
| 1373 | fun mtch Ts i j (pinst, tinst) (Hyp (Var (ixn, _)), prf) = | |
| 1374 | if i = 0 andalso j = 0 then ((ixn, prf) :: pinst, tinst) | |
| 64566 | 1375 | else | 
| 1376 | (case apfst (flt i) (apsnd (flt j) (prf_add_loose_bnos 0 0 prf ([], []))) of | |
| 79175 
04dfecb9343a
misc tuning and clarification, following Term.incr_bv / Term.incr_boundvars;
 wenzelm parents: 
79174diff
changeset | 1377 | ([], []) => ((ixn, incr_boundvars (~i) (~j) prf) :: pinst, tinst) | 
| 64566 | 1378 | | ([], _) => | 
| 79175 
04dfecb9343a
misc tuning and clarification, following Term.incr_bv / Term.incr_boundvars;
 wenzelm parents: 
79174diff
changeset | 1379 | if j = 0 then ((ixn, incr_boundvars (~i) (~j) prf) :: pinst, tinst) | 
| 64566 | 1380 | else raise PMatch | 
| 12279 | 1381 | | _ => raise PMatch) | 
| 1382 | | mtch Ts i j inst (prf1 % opt1, prf2 % opt2) = | |
| 1383 | optmatch (matcht Ts j) (mtch Ts i j inst (prf1, prf2)) (opt1, opt2) | |
| 1384 | | mtch Ts i j inst (prf1 %% prf2, prf1' %% prf2') = | |
| 1385 | mtch Ts i j (mtch Ts i j inst (prf1, prf1')) (prf2, prf2') | |
| 1386 | | mtch Ts i j inst (Abst (_, opT, prf1), Abst (_, opU, prf2)) = | |
| 18485 | 1387 | mtch (the_default dummyT opU :: Ts) i (j+1) | 
| 12279 | 1388 | (optmatch matchT inst (opT, opU)) (prf1, prf2) | 
| 1389 | | mtch Ts i j inst (prf1, Abst (_, opU, prf2)) = | |
| 18485 | 1390 | mtch (the_default dummyT opU :: Ts) i (j+1) inst | 
| 79175 
04dfecb9343a
misc tuning and clarification, following Term.incr_bv / Term.incr_boundvars;
 wenzelm parents: 
79174diff
changeset | 1391 | (incr_boundvars 0 1 prf1 %> Bound 0, prf2) | 
| 12279 | 1392 | | mtch Ts i j inst (AbsP (_, opt, prf1), AbsP (_, opu, prf2)) = | 
| 1393 | mtch Ts (i+1) j (optmatch (matcht Ts j) inst (opt, opu)) (prf1, prf2) | |
| 1394 | | mtch Ts i j inst (prf1, AbsP (_, _, prf2)) = | |
| 79175 
04dfecb9343a
misc tuning and clarification, following Term.incr_bv / Term.incr_boundvars;
 wenzelm parents: 
79174diff
changeset | 1395 | mtch Ts (i+1) j inst (incr_boundvars 1 0 prf1 %% PBound 0, prf2) | 
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 1396 | | 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 | 1397 | 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 | 1398 | else raise PMatch | 
| 71777 
3875815f5967
clarified signature: avoid clash with Isabelle/Scala Term.OFCLASS on case-insensible file-system;
 wenzelm parents: 
71533diff
changeset | 1399 | | mtch Ts i j inst (PClass (T1, c1), PClass (T2, c2)) = | 
| 31903 | 1400 | if c1 = c2 then matchT inst (T1, T2) | 
| 1401 | else raise PMatch | |
| 70412 
64ead6de6212
defer rew_proof on unnamed PThm node as open_proof operation: significant performance improvement;
 wenzelm parents: 
70409diff
changeset | 1402 | | mtch Ts i j inst | 
| 80295 
8a9588ffc133
more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
 wenzelm parents: 
80288diff
changeset | 1403 |             (PThm ({thm_name = name1, prop = prop1, types = types1, ...}, _),
 | 
| 
8a9588ffc133
more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
 wenzelm parents: 
80288diff
changeset | 1404 |               PThm ({thm_name = name2, prop = prop2, types = types2, ...}, _)) =
 | 
| 70493 | 1405 | if name1 = name2 andalso prop1 = prop2 | 
| 1406 | then optmatch matchTs inst (types1, types2) | |
| 11519 | 1407 | else raise PMatch | 
| 12279 | 1408 | | mtch _ _ _ inst (PBound i, PBound j) = if i = j then inst else raise PMatch | 
| 1409 | | mtch _ _ _ _ _ = raise PMatch | |
| 1410 | in mtch Ts 0 0 end; | |
| 11519 | 1411 | |
| 1412 | fun prf_subst (pinst, (tyinsts, insts)) = | |
| 1413 | let | |
| 32049 | 1414 | val substT = Envir.subst_type_same tyinsts; | 
| 1415 | val substTs = Same.map substT; | |
| 11519 | 1416 | |
| 32049 | 1417 | fun subst' lev (Var (xi, _)) = | 
| 1418 | (case AList.lookup (op =) insts xi of | |
| 1419 | NONE => raise Same.SAME | |
| 79175 
04dfecb9343a
misc tuning and clarification, following Term.incr_bv / Term.incr_boundvars;
 wenzelm parents: 
79174diff
changeset | 1420 | | SOME u => Term.incr_boundvars lev u) | 
| 32049 | 1421 | | subst' _ (Const (s, T)) = Const (s, substT T) | 
| 1422 | | subst' _ (Free (s, T)) = Free (s, substT T) | |
| 1423 | | subst' lev (Abs (a, T, body)) = | |
| 1424 | (Abs (a, substT T, Same.commit (subst' (lev + 1)) body) | |
| 1425 | handle Same.SAME => Abs (a, T, subst' (lev + 1) body)) | |
| 1426 | | subst' lev (f $ t) = | |
| 1427 | (subst' lev f $ Same.commit (subst' lev) t | |
| 1428 | handle Same.SAME => f $ subst' lev t) | |
| 1429 | | subst' _ _ = raise Same.SAME; | |
| 11519 | 1430 | |
| 1431 | fun subst plev tlev (AbsP (a, t, body)) = | |
| 32049 | 1432 | (AbsP (a, Same.map_option (subst' tlev) t, Same.commit (subst (plev + 1) tlev) body) | 
| 1433 | handle Same.SAME => AbsP (a, t, subst (plev + 1) tlev body)) | |
| 11519 | 1434 | | subst plev tlev (Abst (a, T, body)) = | 
| 32049 | 1435 | (Abst (a, Same.map_option substT T, Same.commit (subst plev (tlev + 1)) body) | 
| 1436 | handle Same.SAME => Abst (a, T, subst plev (tlev + 1) body)) | |
| 1437 | | subst plev tlev (prf %% prf') = | |
| 1438 | (subst plev tlev prf %% Same.commit (subst plev tlev) prf' | |
| 1439 | handle Same.SAME => prf %% subst plev tlev prf') | |
| 1440 | | subst plev tlev (prf % t) = | |
| 1441 | (subst plev tlev prf % Same.commit (Same.map_option (subst' tlev)) t | |
| 1442 | handle Same.SAME => prf % Same.map_option (subst' tlev) t) | |
| 1443 | | subst plev tlev (Hyp (Var (xi, _))) = | |
| 1444 | (case AList.lookup (op =) pinst xi of | |
| 1445 | NONE => raise Same.SAME | |
| 79175 
04dfecb9343a
misc tuning and clarification, following Term.incr_bv / Term.incr_boundvars;
 wenzelm parents: 
79174diff
changeset | 1446 | | SOME prf' => incr_boundvars plev tlev prf') | 
| 32049 | 1447 | | subst _ _ (PAxm (id, prop, Ts)) = PAxm (id, prop, Same.map_option substTs Ts) | 
| 71777 
3875815f5967
clarified signature: avoid clash with Isabelle/Scala Term.OFCLASS on case-insensible file-system;
 wenzelm parents: 
71533diff
changeset | 1448 | | subst _ _ (PClass (T, c)) = PClass (substT T, c) | 
| 32049 | 1449 | | subst _ _ (Oracle (id, prop, Ts)) = Oracle (id, prop, Same.map_option substTs Ts) | 
| 80295 
8a9588ffc133
more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
 wenzelm parents: 
80288diff
changeset | 1450 |       | subst _ _ (PThm ({serial = i, pos = p, theory_name, thm_name, prop, types}, thm_body)) =
 | 
| 
8a9588ffc133
more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
 wenzelm parents: 
80288diff
changeset | 1451 | PThm (thm_header i p theory_name thm_name prop (Same.map_option substTs types), thm_body) | 
| 32049 | 1452 | | subst _ _ _ = raise Same.SAME; | 
| 1453 | in fn t => subst 0 0 t handle Same.SAME => t end; | |
| 11519 | 1454 | |
| 21646 
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
 wenzelm parents: 
20853diff
changeset | 1455 | (*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 | 1456 | Terms must be NORMAL. Treats all Vars as distinct. *) | 
| 79112 | 1457 | fun could_unify (prf1, prf2) = | 
| 12871 
21486a0557d1
Added function could_unify to speed up rewriting of proof terms.
 berghofe parents: 
12868diff
changeset | 1458 | let | 
| 
21486a0557d1
Added function could_unify to speed up rewriting of proof terms.
 berghofe parents: 
12868diff
changeset | 1459 | fun matchrands (prf1 %% prf2) (prf1' %% prf2') = | 
| 79112 | 1460 | could_unify (prf2, prf2') andalso matchrands prf1 prf1' | 
| 15531 | 1461 | | matchrands (prf % SOME t) (prf' % SOME t') = | 
| 12871 
21486a0557d1
Added function could_unify to speed up rewriting of proof terms.
 berghofe parents: 
12868diff
changeset | 1462 | 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 | 1463 | | matchrands (prf % _) (prf' % _) = matchrands prf prf' | 
| 
21486a0557d1
Added function could_unify to speed up rewriting of proof terms.
 berghofe parents: 
12868diff
changeset | 1464 | | matchrands _ _ = true | 
| 79441 | 1465 | in case (any_head_of prf1, any_head_of prf2) of | 
| 12871 
21486a0557d1
Added function could_unify to speed up rewriting of proof terms.
 berghofe parents: 
12868diff
changeset | 1466 | (_, Hyp (Var _)) => true | 
| 
21486a0557d1
Added function could_unify to speed up rewriting of proof terms.
 berghofe parents: 
12868diff
changeset | 1467 | | (Hyp (Var _), _) => true | 
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 1468 | | (PAxm (a, _, _), PAxm (b, _, _)) => a = b andalso matchrands prf1 prf2 | 
| 71777 
3875815f5967
clarified signature: avoid clash with Isabelle/Scala Term.OFCLASS on case-insensible file-system;
 wenzelm parents: 
71533diff
changeset | 1469 | | (PClass (_, c), PClass (_, d)) => c = d andalso matchrands prf1 prf2 | 
| 80295 
8a9588ffc133
more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
 wenzelm parents: 
80288diff
changeset | 1470 |       | (PThm ({thm_name = a, prop = propa, ...}, _), PThm ({thm_name = b, prop = propb, ...}, _)) =>
 | 
| 12871 
21486a0557d1
Added function could_unify to speed up rewriting of proof terms.
 berghofe parents: 
12868diff
changeset | 1471 | 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 | 1472 | | (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 | 1473 | | (AbsP _, _) => true (*because of possible eta equality*) | 
| 
21486a0557d1
Added function could_unify to speed up rewriting of proof terms.
 berghofe parents: 
12868diff
changeset | 1474 | | (Abst _, _) => true | 
| 
21486a0557d1
Added function could_unify to speed up rewriting of proof terms.
 berghofe parents: 
12868diff
changeset | 1475 | | (_, AbsP _) => true | 
| 
21486a0557d1
Added function could_unify to speed up rewriting of proof terms.
 berghofe parents: 
12868diff
changeset | 1476 | | (_, Abst _) => true | 
| 
21486a0557d1
Added function could_unify to speed up rewriting of proof terms.
 berghofe parents: 
12868diff
changeset | 1477 | | _ => false | 
| 
21486a0557d1
Added function could_unify to speed up rewriting of proof terms.
 berghofe parents: 
12868diff
changeset | 1478 | end; | 
| 
21486a0557d1
Added function could_unify to speed up rewriting of proof terms.
 berghofe parents: 
12868diff
changeset | 1479 | |
| 28329 
e6a5fa9f1e41
added conditional add_oracles, keep oracles_of_proof private;
 wenzelm parents: 
28319diff
changeset | 1480 | |
| 70399 | 1481 | (* rewrite proof *) | 
| 11519 | 1482 | |
| 33722 
e588744f14da
generalized procs for rewrite_proof: allow skeleton;
 wenzelm parents: 
33522diff
changeset | 1483 | val no_skel = PBound 0; | 
| 
e588744f14da
generalized procs for rewrite_proof: allow skeleton;
 wenzelm parents: 
33522diff
changeset | 1484 | val normal_skel = Hyp (Var ((Name.uu, 0), propT)); | 
| 13102 
b6f8aae5f152
Added skeletons to speed up rewriting on proof terms.
 berghofe parents: 
12923diff
changeset | 1485 | |
| 12279 | 1486 | fun rewrite_prf tymatch (rules, procs) prf = | 
| 11519 | 1487 | let | 
| 79167 | 1488 | fun rew _ _ (Abst (_, _, body) % SOME t) = SOME (subst_bounds [t] body, no_skel) | 
| 1489 | | rew _ _ (AbsP (_, _, body) %% prf) = SOME (subst_pbounds [prf] body, no_skel) | |
| 37231 
e5419ecf92b7
- outer_constraints with original variable names, to ensure that argsP is consistent with args
 berghofe parents: 
36883diff
changeset | 1490 | | rew Ts hs prf = | 
| 
e5419ecf92b7
- outer_constraints with original variable names, to ensure that argsP is consistent with args
 berghofe parents: 
36883diff
changeset | 1491 | (case get_first (fn r => r Ts hs prf) procs of | 
| 33722 
e588744f14da
generalized procs for rewrite_proof: allow skeleton;
 wenzelm parents: 
33522diff
changeset | 1492 | NONE => get_first (fn (prf1, prf2) => SOME (prf_subst | 
| 
e588744f14da
generalized procs for rewrite_proof: allow skeleton;
 wenzelm parents: 
33522diff
changeset | 1493 | (match_proof Ts tymatch ([], (Vartab.empty, [])) (prf1, prf)) prf2, prf2) | 
| 79112 | 1494 | handle PMatch => NONE) (filter (fn (prf', _) => could_unify (prf, prf')) rules) | 
| 33722 
e588744f14da
generalized procs for rewrite_proof: allow skeleton;
 wenzelm parents: 
33522diff
changeset | 1495 | | some => some); | 
| 11519 | 1496 | |
| 37231 
e5419ecf92b7
- outer_constraints with original variable names, to ensure that argsP is consistent with args
 berghofe parents: 
36883diff
changeset | 1497 | fun rew0 Ts hs (prf as AbsP (_, _, prf' %% PBound 0)) = | 
| 
e5419ecf92b7
- outer_constraints with original variable names, to ensure that argsP is consistent with args
 berghofe parents: 
36883diff
changeset | 1498 | if prf_loose_Pbvar1 prf' 0 then rew Ts hs prf | 
| 11519 | 1499 | else | 
| 79175 
04dfecb9343a
misc tuning and clarification, following Term.incr_bv / Term.incr_boundvars;
 wenzelm parents: 
79174diff
changeset | 1500 | let val prf'' = incr_boundvars (~1) 0 prf' | 
| 37231 
e5419ecf92b7
- outer_constraints with original variable names, to ensure that argsP is consistent with args
 berghofe parents: 
36883diff
changeset | 1501 | in SOME (the_default (prf'', no_skel) (rew Ts hs prf'')) end | 
| 
e5419ecf92b7
- outer_constraints with original variable names, to ensure that argsP is consistent with args
 berghofe parents: 
36883diff
changeset | 1502 | | rew0 Ts hs (prf as Abst (_, _, prf' % SOME (Bound 0))) = | 
| 
e5419ecf92b7
- outer_constraints with original variable names, to ensure that argsP is consistent with args
 berghofe parents: 
36883diff
changeset | 1503 | if prf_loose_bvar1 prf' 0 then rew Ts hs prf | 
| 11519 | 1504 | else | 
| 79175 
04dfecb9343a
misc tuning and clarification, following Term.incr_bv / Term.incr_boundvars;
 wenzelm parents: 
79174diff
changeset | 1505 | let val prf'' = incr_boundvars 0 (~1) prf' | 
| 37231 
e5419ecf92b7
- outer_constraints with original variable names, to ensure that argsP is consistent with args
 berghofe parents: 
36883diff
changeset | 1506 | in SOME (the_default (prf'', no_skel) (rew Ts hs prf'')) end | 
| 
e5419ecf92b7
- outer_constraints with original variable names, to ensure that argsP is consistent with args
 berghofe parents: 
36883diff
changeset | 1507 | | rew0 Ts hs prf = rew Ts hs prf; | 
| 11519 | 1508 | |
| 37231 
e5419ecf92b7
- outer_constraints with original variable names, to ensure that argsP is consistent with args
 berghofe parents: 
36883diff
changeset | 1509 | fun rew1 _ _ (Hyp (Var _)) _ = NONE | 
| 64566 | 1510 | | rew1 Ts hs skel prf = | 
| 1511 | (case rew2 Ts hs skel prf of | |
| 1512 | SOME prf1 => | |
| 1513 | (case rew0 Ts hs prf1 of | |
| 1514 | SOME (prf2, skel') => SOME (the_default prf2 (rew1 Ts hs skel' prf2)) | |
| 1515 | | NONE => SOME prf1) | |
| 1516 | | NONE => | |
| 1517 | (case rew0 Ts hs prf of | |
| 1518 | SOME (prf1, skel') => SOME (the_default prf1 (rew1 Ts hs skel' prf1)) | |
| 1519 | | NONE => NONE)) | |
| 11519 | 1520 | |
| 64566 | 1521 | and rew2 Ts hs skel (prf % SOME t) = | 
| 1522 | (case prf of | |
| 11519 | 1523 | Abst (_, _, body) => | 
| 79167 | 1524 | let val prf' = subst_bounds [t] body | 
| 37231 
e5419ecf92b7
- outer_constraints with original variable names, to ensure that argsP is consistent with args
 berghofe parents: 
36883diff
changeset | 1525 | in SOME (the_default prf' (rew2 Ts hs no_skel prf')) end | 
| 64566 | 1526 | | _ => | 
| 1527 | (case rew1 Ts hs (case skel of skel' % _ => skel' | _ => no_skel) prf of | |
| 1528 | SOME prf' => SOME (prf' % SOME t) | |
| 1529 | | NONE => NONE)) | |
| 37231 
e5419ecf92b7
- outer_constraints with original variable names, to ensure that argsP is consistent with args
 berghofe parents: 
36883diff
changeset | 1530 | | rew2 Ts hs skel (prf % NONE) = Option.map (fn prf' => prf' % NONE) | 
| 
e5419ecf92b7
- outer_constraints with original variable names, to ensure that argsP is consistent with args
 berghofe parents: 
36883diff
changeset | 1531 | (rew1 Ts hs (case skel of skel' % _ => skel' | _ => no_skel) prf) | 
| 64566 | 1532 | | rew2 Ts hs skel (prf1 %% prf2) = | 
| 1533 | (case prf1 of | |
| 11519 | 1534 | AbsP (_, _, body) => | 
| 79167 | 1535 | let val prf' = subst_pbounds [prf2] body | 
| 37231 
e5419ecf92b7
- outer_constraints with original variable names, to ensure that argsP is consistent with args
 berghofe parents: 
36883diff
changeset | 1536 | in SOME (the_default prf' (rew2 Ts hs no_skel prf')) end | 
| 13102 
b6f8aae5f152
Added skeletons to speed up rewriting on proof terms.
 berghofe parents: 
12923diff
changeset | 1537 | | _ => | 
| 64566 | 1538 | let | 
| 1539 | val (skel1, skel2) = | |
| 1540 | (case skel of | |
| 1541 | skel1 %% skel2 => (skel1, skel2) | |
| 1542 | | _ => (no_skel, no_skel)) | |
| 1543 | in | |
| 1544 | (case rew1 Ts hs skel1 prf1 of | |
| 1545 | SOME prf1' => | |
| 1546 | (case rew1 Ts hs skel2 prf2 of | |
| 15531 | 1547 | SOME prf2' => SOME (prf1' %% prf2') | 
| 1548 | | NONE => SOME (prf1' %% prf2)) | |
| 64566 | 1549 | | NONE => | 
| 1550 | (case rew1 Ts hs skel2 prf2 of | |
| 15531 | 1551 | SOME prf2' => SOME (prf1 %% prf2') | 
| 64566 | 1552 | | NONE => NONE)) | 
| 13102 
b6f8aae5f152
Added skeletons to speed up rewriting on proof terms.
 berghofe parents: 
12923diff
changeset | 1553 | end) | 
| 64566 | 1554 | | rew2 Ts hs skel (Abst (s, T, prf)) = | 
| 1555 | (case rew1 (the_default dummyT T :: Ts) hs | |
| 33722 
e588744f14da
generalized procs for rewrite_proof: allow skeleton;
 wenzelm parents: 
33522diff
changeset | 1556 | (case skel of Abst (_, _, skel') => skel' | _ => no_skel) prf of | 
| 15531 | 1557 | SOME prf' => SOME (Abst (s, T, prf')) | 
| 1558 | | NONE => NONE) | |
| 64566 | 1559 | | rew2 Ts hs skel (AbsP (s, t, prf)) = | 
| 1560 | (case rew1 Ts (t :: hs) (case skel of AbsP (_, _, skel') => skel' | _ => no_skel) prf of | |
| 15531 | 1561 | SOME prf' => SOME (AbsP (s, t, prf')) | 
| 1562 | | NONE => NONE) | |
| 37231 
e5419ecf92b7
- outer_constraints with original variable names, to ensure that argsP is consistent with args
 berghofe parents: 
36883diff
changeset | 1563 | | rew2 _ _ _ _ = NONE; | 
| 11519 | 1564 | |
| 37231 
e5419ecf92b7
- outer_constraints with original variable names, to ensure that argsP is consistent with args
 berghofe parents: 
36883diff
changeset | 1565 | in the_default prf (rew1 [] [] no_skel prf) end; | 
| 11519 | 1566 | |
| 17203 | 1567 | fun rewrite_proof thy = rewrite_prf (fn (tyenv, f) => | 
| 1568 | Sign.typ_match thy (f ()) tyenv handle Type.TYPE_MATCH => raise PMatch); | |
| 11519 | 1569 | |
| 11715 
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
 berghofe parents: 
11652diff
changeset | 1570 | fun rewrite_proof_notypes rews = rewrite_prf fst rews; | 
| 11615 | 1571 | |
| 16940 | 1572 | |
| 70399 | 1573 | (* theory data *) | 
| 11519 | 1574 | |
| 37216 
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
 wenzelm parents: 
36883diff
changeset | 1575 | structure Data = Theory_Data | 
| 22846 | 1576 | ( | 
| 33722 
e588744f14da
generalized procs for rewrite_proof: allow skeleton;
 wenzelm parents: 
33522diff
changeset | 1577 | type T = | 
| 70848 | 1578 | ((stamp * (proof * proof)) list * | 
| 1579 | (stamp * (typ list -> term option list -> proof -> (proof * proof) option)) list) * | |
| 1580 | (theory -> proof -> proof) option; | |
| 11519 | 1581 | |
| 70848 | 1582 | val empty = (([], []), NONE); | 
| 1583 | fun merge (((rules1, procs1), preproc1), ((rules2, procs2), preproc2)) : T = | |
| 1584 | ((AList.merge (op =) (K true) (rules1, rules2), | |
| 1585 | AList.merge (op =) (K true) (procs1, procs2)), | |
| 1586 | merge_options (preproc1, preproc2)); | |
| 22846 | 1587 | ); | 
| 11519 | 1588 | |
| 70848 | 1589 | fun get_rew_data thy = | 
| 1590 | let val (rules, procs) = #1 (Data.get thy) | |
| 1591 | in (map #2 rules, map #2 procs) end; | |
| 1592 | ||
| 79225 
2cac47aec8bd
avoid accidental capture of theory value, and thus reduce heap size again (amending 5109e4b2a292);
 wenzelm parents: 
79223diff
changeset | 1593 | fun rew_proof thy = rewrite_prf fst (get_rew_data thy); | 
| 23780 
a0e7305dd0cb
Added function rew_proof (for pre-normalizing proofs).
 berghofe parents: 
23296diff
changeset | 1594 | |
| 70848 | 1595 | fun add_prf_rrule r = (Data.map o apfst o apfst) (cons (stamp (), r)); | 
| 1596 | fun add_prf_rproc p = (Data.map o apfst o apsnd) (cons (stamp (), p)); | |
| 1597 | ||
| 1598 | fun set_preproc f = (Data.map o apsnd) (K (SOME f)); | |
| 1599 | fun apply_preproc thy = (case #2 (Data.get thy) of NONE => I | SOME f => f thy); | |
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 1600 | |
| 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 1601 | |
| 70447 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1602 | |
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1603 | (** reconstruction of partial proof terms **) | 
| 70400 
65bbef66e2ec
clarified treatment of unnamed PThm nodes (from close_derivation): retain full proof, publish when named;
 wenzelm parents: 
70399diff
changeset | 1604 | |
| 70978 | 1605 | fun forall_intr_variables_term prop = fold_rev Logic.all (variables_of prop) prop; | 
| 1606 | fun forall_intr_variables prop prf = fold_rev forall_intr_proof' (variables_of prop) prf; | |
| 70400 
65bbef66e2ec
clarified treatment of unnamed PThm nodes (from close_derivation): retain full proof, publish when named;
 wenzelm parents: 
70399diff
changeset | 1607 | |
| 70978 | 1608 | local | 
| 70400 
65bbef66e2ec
clarified treatment of unnamed PThm nodes (from close_derivation): retain full proof, publish when named;
 wenzelm parents: 
70399diff
changeset | 1609 | |
| 70419 | 1610 | fun app_types shift prop Ts prf = | 
| 1611 | let | |
| 70810 | 1612 | val inst = type_variables_of prop ~~ Ts; | 
| 1613 | fun subst_same A = | |
| 1614 | (case AList.lookup (op =) inst A of SOME T => T | NONE => raise Same.SAME); | |
| 70807 
303721c3caa2
tuned app_types: more direct map_proof_types_same;
 wenzelm parents: 
70784diff
changeset | 1615 | val subst_type_same = | 
| 79409 | 1616 | Term.map_atyps_same | 
| 70810 | 1617 | (fn TVar ((a, i), S) => subst_same (TVar ((a, i - shift), S)) | A => subst_same A); | 
| 70807 
303721c3caa2
tuned app_types: more direct map_proof_types_same;
 wenzelm parents: 
70784diff
changeset | 1618 | in Same.commit (map_proof_types_same subst_type_same) prf end; | 
| 70419 | 1619 | |
| 80295 
8a9588ffc133
more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
 wenzelm parents: 
80288diff
changeset | 1620 | fun guess_name (PThm ({thm_name, ...}, _)) = thm_name
 | 
| 70447 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1621 | | guess_name (prf %% Hyp _) = guess_name prf | 
| 71777 
3875815f5967
clarified signature: avoid clash with Isabelle/Scala Term.OFCLASS on case-insensible file-system;
 wenzelm parents: 
71533diff
changeset | 1622 | | guess_name (prf %% PClass _) = guess_name prf | 
| 70447 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1623 | | guess_name (prf % NONE) = guess_name prf | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1624 | | guess_name (prf % SOME (Var _)) = guess_name prf | 
| 80295 
8a9588ffc133
more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
 wenzelm parents: 
80288diff
changeset | 1625 | | guess_name _ = Thm_Name.empty; | 
| 70447 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1626 | |
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1627 | |
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1628 | (* generate constraints for proof term *) | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1629 | |
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1630 | fun mk_var env Ts T = | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1631 | let val (env', v) = Envir.genvar "a" (env, rev Ts ---> T) | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1632 | in (list_comb (v, map Bound (length Ts - 1 downto 0)), env') end; | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1633 | |
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1634 | fun mk_tvar S (Envir.Envir {maxidx, tenv, tyenv}) =
 | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1635 |   (TVar (("'t", maxidx + 1), S),
 | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1636 |     Envir.Envir {maxidx = maxidx + 1, tenv = tenv, tyenv = tyenv});
 | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1637 | |
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1638 | val mk_abs = fold (fn T => fn u => Abs ("", T, u));
 | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1639 | |
| 70449 | 1640 | fun unifyT thy env T U = | 
| 70447 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1641 | let | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1642 |     val Envir.Envir {maxidx, tenv, tyenv} = env;
 | 
| 70449 | 1643 | val (tyenv', maxidx') = Sign.typ_unify thy (T, U) (tyenv, maxidx); | 
| 70447 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1644 |   in Envir.Envir {maxidx = maxidx', tenv = tenv, tyenv = tyenv'} end;
 | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1645 | |
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1646 | fun chaseT env (T as TVar v) = | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1647 | (case Type.lookup (Envir.type_env env) v of | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1648 | NONE => T | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1649 | | SOME T' => chaseT env T') | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1650 | | chaseT _ T = T; | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1651 | |
| 71531 | 1652 | fun infer_type thy (env as Envir.Envir {maxidx, tenv, tyenv}) _ vTs (t as Const (s, T)) =
 | 
| 1653 | if T = dummyT then | |
| 70449 | 1654 | (case Sign.const_type thy s of | 
| 70447 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1655 |           NONE => error ("reconstruct_proof: No such constant: " ^ quote s)
 | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1656 | | SOME T => | 
| 79411 | 1657 | let val T' = Term.strip_sortsT (Logic.incr_tvar (maxidx + 1) T) in | 
| 71531 | 1658 | (Const (s, T'), T', vTs, | 
| 1659 |                 Envir.Envir {maxidx = maxidx + 1, tenv = tenv, tyenv = tyenv})
 | |
| 70447 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1660 | end) | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1661 | else (t, T, vTs, env) | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1662 | | infer_type _ env _ vTs (t as Free (s, T)) = | 
| 71531 | 1663 | if T = dummyT then | 
| 1664 | (case Symtab.lookup vTs s of | |
| 70447 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1665 | NONE => | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1666 | let val (T, env') = mk_tvar [] env | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1667 | in (Free (s, T), T, Symtab.update_new (s, T) vTs, env') end | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1668 | | SOME T => (Free (s, T), T, vTs, env)) | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1669 | else (t, T, vTs, env) | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1670 | | infer_type _ _ _ _ (Var _) = error "reconstruct_proof: internal error" | 
| 70449 | 1671 | | infer_type thy env Ts vTs (Abs (s, T, t)) = | 
| 70447 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1672 | let | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1673 | val (T', env') = if T = dummyT then mk_tvar [] env else (T, env); | 
| 70449 | 1674 | val (t', U, vTs', env'') = infer_type thy env' (T' :: Ts) vTs t | 
| 70447 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1675 | in (Abs (s, T', t'), T' --> U, vTs', env'') end | 
| 70449 | 1676 | | infer_type thy env Ts vTs (t $ u) = | 
| 70447 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1677 | let | 
| 70449 | 1678 | val (t', T, vTs1, env1) = infer_type thy env Ts vTs t; | 
| 1679 | val (u', U, vTs2, env2) = infer_type thy env1 Ts vTs1 u; | |
| 71531 | 1680 | in | 
| 1681 | (case chaseT env2 T of | |
| 70449 | 1682 |           Type ("fun", [U', V]) => (t' $ u', V, vTs2, unifyT thy env2 U U')
 | 
| 70447 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1683 | | _ => | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1684 | let val (V, env3) = mk_tvar [] env2 | 
| 70449 | 1685 | in (t' $ u', V, vTs2, unifyT thy env3 T (U --> V)) end) | 
| 70447 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1686 | end | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1687 | | infer_type _ env Ts vTs (t as Bound i) = ((t, nth Ts i, vTs, env) | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1688 |       handle General.Subscript => error ("infer_type: bad variable index " ^ string_of_int i));
 | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1689 | |
| 70449 | 1690 | fun cantunify thy (t, u) = | 
| 70447 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1691 |   error ("Non-unifiable terms:\n" ^
 | 
| 70449 | 1692 | Syntax.string_of_term_global thy t ^ "\n\n" ^ Syntax.string_of_term_global thy u); | 
| 70447 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1693 | |
| 70449 | 1694 | fun decompose thy Ts (p as (t, u)) env = | 
| 70447 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1695 | let | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1696 | fun rigrig (a, T) (b, U) uT ts us = | 
| 70449 | 1697 | if a <> b then cantunify thy p | 
| 1698 | else apfst flat (fold_map (decompose thy Ts) (ts ~~ us) (uT env T U)) | |
| 70447 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1699 | in | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1700 | case apply2 (strip_comb o Envir.head_norm env) p of | 
| 70449 | 1701 | ((Const c, ts), (Const d, us)) => rigrig c d (unifyT thy) ts us | 
| 1702 | | ((Free c, ts), (Free d, us)) => rigrig c d (unifyT thy) ts us | |
| 70447 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1703 | | ((Bound i, ts), (Bound j, us)) => | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1704 | rigrig (i, dummyT) (j, dummyT) (K o K) ts us | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1705 | | ((Abs (_, T, t), []), (Abs (_, U, u), [])) => | 
| 70449 | 1706 | decompose thy (T::Ts) (t, u) (unifyT thy env T U) | 
| 70447 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1707 | | ((Abs (_, T, t), []), _) => | 
| 79175 
04dfecb9343a
misc tuning and clarification, following Term.incr_bv / Term.incr_boundvars;
 wenzelm parents: 
79174diff
changeset | 1708 | decompose thy (T::Ts) (t, Term.incr_boundvars 1 u $ Bound 0) env | 
| 70447 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1709 | | (_, (Abs (_, T, u), [])) => | 
| 79175 
04dfecb9343a
misc tuning and clarification, following Term.incr_bv / Term.incr_boundvars;
 wenzelm parents: 
79174diff
changeset | 1710 | decompose thy (T::Ts) (Term.incr_boundvars 1 t $ Bound 0, u) env | 
| 70447 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1711 | | _ => ([(mk_abs Ts t, mk_abs Ts u)], env) | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1712 | end; | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1713 | |
| 70449 | 1714 | fun make_constraints_cprf thy env cprf = | 
| 70447 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1715 | let | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1716 | fun add_cnstrt Ts prop prf cs env vTs (t, u) = | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1717 | let | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1718 | val t' = mk_abs Ts t; | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1719 | val u' = mk_abs Ts u | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1720 | in | 
| 70449 | 1721 | (prop, prf, cs, Pattern.unify (Context.Theory thy) (t', u') env, vTs) | 
| 1722 | handle Pattern.Pattern => | |
| 1723 | let val (cs', env') = decompose thy [] (t', u') env | |
| 70447 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1724 | in (prop, prf, cs @ cs', env', vTs) end | 
| 70449 | 1725 | | Pattern.Unif => cantunify thy (Envir.norm_term env t', Envir.norm_term env u') | 
| 70447 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1726 | end; | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1727 | |
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1728 | fun mk_cnstrts_atom env vTs prop opTs prf = | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1729 | let | 
| 70948 
5ed8c7e826a2
proper order of variables, independently of varify/unvarify state -- relevant for export of locale conclusions;
 wenzelm parents: 
70916diff
changeset | 1730 | val prop_types = type_variables_of prop; | 
| 70447 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1731 | val (Ts, env') = | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1732 | (case opTs of | 
| 70948 
5ed8c7e826a2
proper order of variables, independently of varify/unvarify state -- relevant for export of locale conclusions;
 wenzelm parents: 
70916diff
changeset | 1733 | NONE => fold_map (mk_tvar o Type.sort_of_atyp) prop_types env | 
| 70447 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1734 | | SOME Ts => (Ts, env)); | 
| 70948 
5ed8c7e826a2
proper order of variables, independently of varify/unvarify state -- relevant for export of locale conclusions;
 wenzelm parents: 
70916diff
changeset | 1735 | val prop' = subst_atomic_types (prop_types ~~ Ts) | 
| 70978 | 1736 | (forall_intr_variables_term prop) handle ListPair.UnequalLengths => | 
| 80299 
a397fd0c451a
more accurate output of Thm_Name.T wrt. facts name space;
 wenzelm parents: 
80295diff
changeset | 1737 |                 error ("Wrong number of type arguments for " ^ quote (Thm_Name.print (guess_name prf)))
 | 
| 70447 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1738 | in (prop', change_types (SOME Ts) prf, [], env', vTs) end; | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1739 | |
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1740 | fun head_norm (prop, prf, cnstrts, env, vTs) = | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1741 | (Envir.head_norm env prop, prf, cnstrts, env, vTs); | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1742 | |
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1743 | fun mk_cnstrts env _ Hs vTs (PBound i) = ((nth Hs i, PBound i, [], env, vTs) | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1744 |           handle General.Subscript => error ("mk_cnstrts: bad variable index " ^ string_of_int i))
 | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1745 | | mk_cnstrts env Ts Hs vTs (Abst (s, opT, cprf)) = | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1746 | let | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1747 | val (T, env') = | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1748 | (case opT of | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1749 | NONE => mk_tvar [] env | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1750 | | SOME T => (T, env)); | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1751 | val (t, prf, cnstrts, env'', vTs') = | 
| 79175 
04dfecb9343a
misc tuning and clarification, following Term.incr_bv / Term.incr_boundvars;
 wenzelm parents: 
79174diff
changeset | 1752 | mk_cnstrts env' (T::Ts) (map (Term.incr_boundvars 1) Hs) vTs cprf; | 
| 70447 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1753 | in | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1754 |             (Const ("Pure.all", (T --> propT) --> propT) $ Abs (s, T, t), Abst (s, SOME T, prf),
 | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1755 | cnstrts, env'', vTs') | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1756 | end | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1757 | | mk_cnstrts env Ts Hs vTs (AbsP (s, SOME t, cprf)) = | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1758 | let | 
| 70449 | 1759 | val (t', _, vTs', env') = infer_type thy env Ts vTs t; | 
| 70447 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1760 | val (u, prf, cnstrts, env'', vTs'') = mk_cnstrts env' Ts (t'::Hs) vTs' cprf; | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1761 | in (Logic.mk_implies (t', u), AbsP (s, SOME t', prf), cnstrts, env'', vTs'') | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1762 | end | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1763 | | mk_cnstrts env Ts Hs vTs (AbsP (s, NONE, cprf)) = | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1764 | let | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1765 | val (t, env') = mk_var env Ts propT; | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1766 | val (u, prf, cnstrts, env'', vTs') = mk_cnstrts env' Ts (t::Hs) vTs cprf; | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1767 | in (Logic.mk_implies (t, u), AbsP (s, SOME t, prf), cnstrts, env'', vTs') | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1768 | end | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1769 | | mk_cnstrts env Ts Hs vTs (cprf1 %% cprf2) = | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1770 | let val (u, prf2, cnstrts, env', vTs') = mk_cnstrts env Ts Hs vTs cprf2 | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1771 | in (case head_norm (mk_cnstrts env' Ts Hs vTs' cprf1) of | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1772 |               (Const ("Pure.imp", _) $ u' $ t', prf1, cnstrts', env'', vTs'') =>
 | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1773 | add_cnstrt Ts t' (prf1 %% prf2) (cnstrts' @ cnstrts) | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1774 | env'' vTs'' (u, u') | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1775 | | (t, prf1, cnstrts', env'', vTs'') => | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1776 | let val (v, env''') = mk_var env'' Ts propT | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1777 | in add_cnstrt Ts v (prf1 %% prf2) (cnstrts' @ cnstrts) | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1778 | env''' vTs'' (t, Logic.mk_implies (u, v)) | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1779 | end) | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1780 | end | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1781 | | mk_cnstrts env Ts Hs vTs (cprf % SOME t) = | 
| 70449 | 1782 | let val (t', U, vTs1, env1) = infer_type thy env Ts vTs t | 
| 70447 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1783 | in (case head_norm (mk_cnstrts env1 Ts Hs vTs1 cprf) of | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1784 |              (Const ("Pure.all", Type ("fun", [Type ("fun", [T, _]), _])) $ f,
 | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1785 | prf, cnstrts, env2, vTs2) => | 
| 70449 | 1786 | let val env3 = unifyT thy env2 T U | 
| 70447 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1787 | in (betapply (f, t'), prf % SOME t', cnstrts, env3, vTs2) | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1788 | end | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1789 | | (u, prf, cnstrts, env2, vTs2) => | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1790 | let val (v, env3) = mk_var env2 Ts (U --> propT); | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1791 | in | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1792 | add_cnstrt Ts (v $ t') (prf % SOME t') cnstrts env3 vTs2 | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1793 |                    (u, Const ("Pure.all", (U --> propT) --> propT) $ v)
 | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1794 | end) | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1795 | end | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1796 | | mk_cnstrts env Ts Hs vTs (cprf % NONE) = | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1797 | (case head_norm (mk_cnstrts env Ts Hs vTs cprf) of | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1798 |              (Const ("Pure.all", Type ("fun", [Type ("fun", [T, _]), _])) $ f,
 | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1799 | prf, cnstrts, env', vTs') => | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1800 | let val (t, env'') = mk_var env' Ts T | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1801 | in (betapply (f, t), prf % SOME t, cnstrts, env'', vTs') | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1802 | end | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1803 | | (u, prf, cnstrts, env', vTs') => | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1804 | let | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1805 | val (T, env1) = mk_tvar [] env'; | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1806 | val (v, env2) = mk_var env1 Ts (T --> propT); | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1807 | val (t, env3) = mk_var env2 Ts T | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1808 | in | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1809 | add_cnstrt Ts (v $ t) (prf % SOME t) cnstrts env3 vTs' | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1810 |                    (u, Const ("Pure.all", (T --> propT) --> propT) $ v)
 | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1811 | end) | 
| 70493 | 1812 |       | mk_cnstrts env _ _ vTs (prf as PThm ({prop, types = opTs, ...}, _)) =
 | 
| 70447 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1813 | mk_cnstrts_atom env vTs prop opTs prf | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1814 | | mk_cnstrts env _ _ vTs (prf as PAxm (_, prop, opTs)) = | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1815 | mk_cnstrts_atom env vTs prop opTs prf | 
| 79415 | 1816 | | mk_cnstrts env _ _ vTs (prf as PClass C) = | 
| 1817 | mk_cnstrts_atom env vTs (Logic.mk_of_class C) NONE prf | |
| 70447 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1818 | | mk_cnstrts env _ _ vTs (prf as Oracle (_, prop, opTs)) = | 
| 70834 | 1819 | mk_cnstrts_atom env vTs prop opTs prf | 
| 70447 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1820 | | mk_cnstrts env _ _ vTs (Hyp t) = (t, Hyp t, [], env, vTs) | 
| 70603 | 1821 | | mk_cnstrts _ _ _ _ MinProof = raise MIN_PROOF () | 
| 70447 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1822 | in mk_cnstrts env [] [] Symtab.empty cprf end; | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1823 | |
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1824 | |
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1825 | (* update list of free variables of constraints *) | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1826 | |
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1827 | fun upd_constrs env cs = | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1828 | let | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1829 | val tenv = Envir.term_env env; | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1830 | val tyenv = Envir.type_env env; | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1831 | val dom = [] | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1832 | |> Vartab.fold (cons o #1) tenv | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1833 | |> Vartab.fold (cons o #1) tyenv; | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1834 | val vran = [] | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1835 | |> Vartab.fold (Term.add_var_names o #2 o #2) tenv | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1836 | |> Vartab.fold (Term.add_tvar_namesT o #2 o #2) tyenv; | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1837 | fun check_cs [] = [] | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1838 | | check_cs ((u, p, vs) :: ps) = | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1839 | let val vs' = subtract (op =) dom vs in | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1840 | if vs = vs' then (u, p, vs) :: check_cs ps | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1841 | else (true, p, fold (insert op =) vs' vran) :: check_cs ps | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1842 | end; | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1843 | in check_cs cs end; | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1844 | |
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1845 | |
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1846 | (* solution of constraints *) | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1847 | |
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1848 | fun solve _ [] bigenv = bigenv | 
| 70449 | 1849 | | solve thy cs bigenv = | 
| 70447 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1850 | let | 
| 70449 | 1851 | fun search _ [] = | 
| 1852 |               error ("Unsolvable constraints:\n" ^
 | |
| 1853 | Pretty.string_of (Pretty.chunks (map (fn (_, p, _) => | |
| 76083 | 1854 | Pretty.item (Syntax.pretty_flexpair (Syntax.init_pretty_global thy) | 
| 76082 | 1855 | (apply2 (Envir.norm_term bigenv) p))) cs))) | 
| 70447 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1856 | | search env ((u, p as (t1, t2), vs)::ps) = | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1857 | if u then | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1858 | let | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1859 | val tn1 = Envir.norm_term bigenv t1; | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1860 | val tn2 = Envir.norm_term bigenv t2 | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1861 | in | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1862 | if Pattern.pattern tn1 andalso Pattern.pattern tn2 then | 
| 70449 | 1863 | (Pattern.unify (Context.Theory thy) (tn1, tn2) env, ps) | 
| 1864 | handle Pattern.Unif => cantunify thy (tn1, tn2) | |
| 70447 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1865 | else | 
| 70449 | 1866 | let val (cs', env') = decompose thy [] (tn1, tn2) env | 
| 70447 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1867 | in if cs' = [(tn1, tn2)] then | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1868 | apsnd (cons (false, (tn1, tn2), vs)) (search env ps) | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1869 | else search env' (map (fn q => (true, q, vs)) cs' @ ps) | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1870 | end | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1871 | end | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1872 | else apsnd (cons (false, p, vs)) (search env ps); | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1873 |         val Envir.Envir {maxidx, ...} = bigenv;
 | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1874 | val (env, cs') = search (Envir.empty maxidx) cs; | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1875 | in | 
| 70449 | 1876 | solve thy (upd_constrs env cs') (Envir.merge (bigenv, env)) | 
| 70447 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1877 | end; | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1878 | |
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1879 | in | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1880 | |
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1881 | |
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1882 | (* reconstruction of proofs *) | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1883 | |
| 70449 | 1884 | fun reconstruct_proof thy prop cprf = | 
| 70447 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1885 | let | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1886 | val (cprf' % SOME prop', thawf) = freeze_thaw_prf (cprf % SOME prop); | 
| 70449 | 1887 | val (t, prf, cs, env, _) = make_constraints_cprf thy | 
| 70447 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1888 | (Envir.empty (maxidx_proof cprf ~1)) cprf'; | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1889 | val cs' = | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1890 | map (apply2 (Envir.norm_term env)) ((t, prop') :: cs) | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1891 | |> map (fn p => (true, p, Term.add_var_names (#1 p) (Term.add_var_names (#2 p) []))); | 
| 71532 | 1892 | val env' = solve thy cs' env; | 
| 70603 | 1893 | in thawf (norm_proof env' prf) end handle MIN_PROOF () => MinProof; | 
| 70447 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1894 | |
| 70815 | 1895 | fun prop_of_atom prop Ts = | 
| 70978 | 1896 | subst_atomic_types (type_variables_of prop ~~ Ts) (forall_intr_variables_term prop); | 
| 70447 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1897 | |
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1898 | val head_norm = Envir.head_norm Envir.init; | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1899 | |
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1900 | fun prop_of0 Hs (PBound i) = nth Hs i | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1901 | | prop_of0 Hs (Abst (s, SOME T, prf)) = | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1902 | Logic.all_const T $ (Abs (s, T, prop_of0 Hs prf)) | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1903 | | prop_of0 Hs (AbsP (_, SOME t, prf)) = | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1904 | Logic.mk_implies (t, prop_of0 (t :: Hs) prf) | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1905 | | prop_of0 Hs (prf % SOME t) = (case head_norm (prop_of0 Hs prf) of | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1906 |       Const ("Pure.all", _) $ f => f $ t
 | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1907 | | _ => error "prop_of: all expected") | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1908 | | prop_of0 Hs (prf1 %% _) = (case head_norm (prop_of0 Hs prf1) of | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1909 |       Const ("Pure.imp", _) $ _ $ Q => Q
 | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1910 | | _ => error "prop_of: ==> expected") | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1911 | | prop_of0 _ (Hyp t) = t | 
| 70493 | 1912 |   | prop_of0 _ (PThm ({prop, types = SOME Ts, ...}, _)) = prop_of_atom prop Ts
 | 
| 70447 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1913 | | prop_of0 _ (PAxm (_, prop, SOME Ts)) = prop_of_atom prop Ts | 
| 79415 | 1914 | | prop_of0 _ (PClass C) = Logic.mk_of_class C | 
| 70834 | 1915 | | prop_of0 _ (Oracle (_, prop, SOME Ts)) = prop_of_atom prop Ts | 
| 70447 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1916 | | prop_of0 _ _ = error "prop_of: partial proof object"; | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1917 | |
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1918 | val prop_of' = Envir.beta_eta_contract oo prop_of0; | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1919 | val prop_of = prop_of' []; | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1920 | |
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1921 | |
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1922 | (* expand and reconstruct subproofs *) | 
| 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1923 | |
| 80295 
8a9588ffc133
more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
 wenzelm parents: 
80288diff
changeset | 1924 | fun expand_name_empty (header: thm_header) = | 
| 
8a9588ffc133
more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
 wenzelm parents: 
80288diff
changeset | 1925 | if Thm_Name.is_empty (#thm_name header) then SOME Thm_Name.empty else NONE; | 
| 70915 
bd4d37edfee4
clarified expand_proof/expand_name: allow more detailed control via thm_header;
 wenzelm parents: 
70909diff
changeset | 1926 | |
| 
bd4d37edfee4
clarified expand_proof/expand_name: allow more detailed control via thm_header;
 wenzelm parents: 
70909diff
changeset | 1927 | fun expand_proof thy expand_name prf = | 
| 70447 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1928 | let | 
| 70833 | 1929 | fun expand seen maxidx (AbsP (s, t, prf)) = | 
| 1930 | let val (seen', maxidx', prf') = expand seen maxidx prf | |
| 1931 | in (seen', maxidx', AbsP (s, t, prf')) end | |
| 1932 | | expand seen maxidx (Abst (s, T, prf)) = | |
| 1933 | let val (seen', maxidx', prf') = expand seen maxidx prf | |
| 1934 | in (seen', maxidx', Abst (s, T, prf')) end | |
| 1935 | | expand seen maxidx (prf1 %% prf2) = | |
| 70447 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1936 | let | 
| 70833 | 1937 | val (seen', maxidx', prf1') = expand seen maxidx prf1; | 
| 1938 | val (seen'', maxidx'', prf2') = expand seen' maxidx' prf2; | |
| 1939 | in (seen'', maxidx'', prf1' %% prf2') end | |
| 1940 | | expand seen maxidx (prf % t) = | |
| 1941 | let val (seen', maxidx', prf') = expand seen maxidx prf | |
| 1942 | in (seen', maxidx', prf' % t) end | |
| 70915 
bd4d37edfee4
clarified expand_proof/expand_name: allow more detailed control via thm_header;
 wenzelm parents: 
70909diff
changeset | 1943 | | expand seen maxidx (prf as PThm (header, thm_body)) = | 
| 80295 
8a9588ffc133
more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
 wenzelm parents: 
80288diff
changeset | 1944 |           let val {serial, pos, theory_name, thm_name, prop, types} = header in
 | 
| 70915 
bd4d37edfee4
clarified expand_proof/expand_name: allow more detailed control via thm_header;
 wenzelm parents: 
70909diff
changeset | 1945 | (case expand_name header of | 
| 80295 
8a9588ffc133
more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
 wenzelm parents: 
80288diff
changeset | 1946 | SOME thm_name' => | 
| 
8a9588ffc133
more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
 wenzelm parents: 
80288diff
changeset | 1947 | if #1 thm_name' = "" andalso is_some types then | 
| 70915 
bd4d37edfee4
clarified expand_proof/expand_name: allow more detailed control via thm_header;
 wenzelm parents: 
70909diff
changeset | 1948 | let | 
| 
bd4d37edfee4
clarified expand_proof/expand_name: allow more detailed control via thm_header;
 wenzelm parents: 
70909diff
changeset | 1949 | val (seen', maxidx', prf') = | 
| 
bd4d37edfee4
clarified expand_proof/expand_name: allow more detailed control via thm_header;
 wenzelm parents: 
70909diff
changeset | 1950 | (case Inttab.lookup seen serial of | 
| 
bd4d37edfee4
clarified expand_proof/expand_name: allow more detailed control via thm_header;
 wenzelm parents: 
70909diff
changeset | 1951 | NONE => | 
| 
bd4d37edfee4
clarified expand_proof/expand_name: allow more detailed control via thm_header;
 wenzelm parents: 
70909diff
changeset | 1952 | let | 
| 
bd4d37edfee4
clarified expand_proof/expand_name: allow more detailed control via thm_header;
 wenzelm parents: 
70909diff
changeset | 1953 | val prf1 = | 
| 
bd4d37edfee4
clarified expand_proof/expand_name: allow more detailed control via thm_header;
 wenzelm parents: 
70909diff
changeset | 1954 | thm_body_proof_open thm_body | 
| 
bd4d37edfee4
clarified expand_proof/expand_name: allow more detailed control via thm_header;
 wenzelm parents: 
70909diff
changeset | 1955 | |> reconstruct_proof thy prop | 
| 70978 | 1956 | |> forall_intr_variables prop; | 
| 70915 
bd4d37edfee4
clarified expand_proof/expand_name: allow more detailed control via thm_header;
 wenzelm parents: 
70909diff
changeset | 1957 | val (seen1, maxidx1, prf2) = expand_init seen prf1 | 
| 
bd4d37edfee4
clarified expand_proof/expand_name: allow more detailed control via thm_header;
 wenzelm parents: 
70909diff
changeset | 1958 | val seen2 = seen1 |> Inttab.update (serial, (maxidx1, prf2)); | 
| 
bd4d37edfee4
clarified expand_proof/expand_name: allow more detailed control via thm_header;
 wenzelm parents: 
70909diff
changeset | 1959 | in (seen2, maxidx1, prf2) end | 
| 
bd4d37edfee4
clarified expand_proof/expand_name: allow more detailed control via thm_header;
 wenzelm parents: 
70909diff
changeset | 1960 | | SOME (maxidx1, prf1) => (seen, maxidx1, prf1)); | 
| 
bd4d37edfee4
clarified expand_proof/expand_name: allow more detailed control via thm_header;
 wenzelm parents: 
70909diff
changeset | 1961 | val prf'' = prf' | 
| 
bd4d37edfee4
clarified expand_proof/expand_name: allow more detailed control via thm_header;
 wenzelm parents: 
70909diff
changeset | 1962 | |> incr_indexes (maxidx + 1) |> app_types (maxidx + 1) prop (the types); | 
| 
bd4d37edfee4
clarified expand_proof/expand_name: allow more detailed control via thm_header;
 wenzelm parents: 
70909diff
changeset | 1963 | in (seen', maxidx' + maxidx + 1, prf'') end | 
| 80295 
8a9588ffc133
more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
 wenzelm parents: 
80288diff
changeset | 1964 | else if thm_name' <> thm_name then | 
| 
8a9588ffc133
more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
 wenzelm parents: 
80288diff
changeset | 1965 | (seen, maxidx, | 
| 
8a9588ffc133
more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
 wenzelm parents: 
80288diff
changeset | 1966 | PThm (thm_header serial pos theory_name thm_name' prop types, thm_body)) | 
| 70915 
bd4d37edfee4
clarified expand_proof/expand_name: allow more detailed control via thm_header;
 wenzelm parents: 
70909diff
changeset | 1967 | else (seen, maxidx, prf) | 
| 
bd4d37edfee4
clarified expand_proof/expand_name: allow more detailed control via thm_header;
 wenzelm parents: 
70909diff
changeset | 1968 | | NONE => (seen, maxidx, prf)) | 
| 
bd4d37edfee4
clarified expand_proof/expand_name: allow more detailed control via thm_header;
 wenzelm parents: 
70909diff
changeset | 1969 | end | 
| 70833 | 1970 | | expand seen maxidx prf = (seen, maxidx, prf) | 
| 1971 | and expand_init seen prf = expand seen (maxidx_proof prf ~1) prf; | |
| 70447 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1972 | |
| 70915 
bd4d37edfee4
clarified expand_proof/expand_name: allow more detailed control via thm_header;
 wenzelm parents: 
70909diff
changeset | 1973 | in #3 (expand_init Inttab.empty prf) end; | 
| 70447 
755d58b48cec
clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
 wenzelm parents: 
70442diff
changeset | 1974 | |
| 70400 
65bbef66e2ec
clarified treatment of unnamed PThm nodes (from close_derivation): retain full proof, publish when named;
 wenzelm parents: 
70399diff
changeset | 1975 | end; | 
| 
65bbef66e2ec
clarified treatment of unnamed PThm nodes (from close_derivation): retain full proof, publish when named;
 wenzelm parents: 
70399diff
changeset | 1976 | |
| 
65bbef66e2ec
clarified treatment of unnamed PThm nodes (from close_derivation): retain full proof, publish when named;
 wenzelm parents: 
70399diff
changeset | 1977 | |
| 70397 | 1978 | |
| 1979 | (** promises **) | |
| 11519 | 1980 | |
| 33722 
e588744f14da
generalized procs for rewrite_proof: allow skeleton;
 wenzelm parents: 
33522diff
changeset | 1981 | fun fulfill_norm_proof thy ps body0 = | 
| 
e588744f14da
generalized procs for rewrite_proof: allow skeleton;
 wenzelm parents: 
33522diff
changeset | 1982 | let | 
| 71018 
d32ed8927a42
more robust expose_proofs corresponding to register_proofs/consolidate_theory;
 wenzelm parents: 
71010diff
changeset | 1983 | val _ = consolidate_bodies (map #2 ps @ [body0]); | 
| 79220 | 1984 |     val PBody {oracles = oracles0, thms = thms0, zboxes = zboxes0, zproof, proof = proof0} = body0;
 | 
| 44334 | 1985 | val oracles = | 
| 77867 | 1986 | unions_oracles | 
| 1987 |         (fold (fn (_, PBody {oracles, ...}) => not (null oracles) ? cons oracles) ps [oracles0]);
 | |
| 77865 | 1988 | val thms = | 
| 77866 | 1989 |       unions_thms (fold (fn (_, PBody {thms, ...}) => not (null thms) ? cons thms) ps [thms0]);
 | 
| 79279 | 1990 | val zboxes = | 
| 1991 | ZTerm.unions_zboxes | |
| 1992 |         (fold (fn (_, PBody {zboxes, ...}) => not (null zboxes) ? cons zboxes) ps [zboxes0]);
 | |
| 70398 | 1993 | val proof = rew_proof thy proof0; | 
| 79114 | 1994 | in | 
| 79220 | 1995 |     PBody {oracles = oracles, thms = thms, zboxes = zboxes, zproof = zproof, proof = proof}
 | 
| 79114 | 1996 | end; | 
| 28828 
c25dd83a6f9f
unified treatment of PAxm/Oracle/Promise in basic proof term operations;
 wenzelm parents: 
28815diff
changeset | 1997 | |
| 70395 
af88c05696bd
clarified postproc: apply shrink_proof last, e.g. relevant for export of full proof term;
 wenzelm parents: 
70394diff
changeset | 1998 | fun fulfill_proof_future thy promises (postproc: proof_body -> proof_body) body = | 
| 51047 
2ad5c46bcd04
avoid extra fork for fulfill_proof_future whenever possible -- without proof terms it merely doubles the number of proof tasks redundantly, by piggy-backing another 10 microseconds task;
 wenzelm parents: 
50763diff
changeset | 1999 | let | 
| 
2ad5c46bcd04
avoid extra fork for fulfill_proof_future whenever possible -- without proof terms it merely doubles the number of proof tasks redundantly, by piggy-backing another 10 microseconds task;
 wenzelm parents: 
50763diff
changeset | 2000 | fun fulfill () = | 
| 
2ad5c46bcd04
avoid extra fork for fulfill_proof_future whenever possible -- without proof terms it merely doubles the number of proof tasks redundantly, by piggy-backing another 10 microseconds task;
 wenzelm parents: 
50763diff
changeset | 2001 | postproc (fulfill_norm_proof thy (map (apsnd Future.join) promises) (Future.join body)); | 
| 
2ad5c46bcd04
avoid extra fork for fulfill_proof_future whenever possible -- without proof terms it merely doubles the number of proof tasks redundantly, by piggy-backing another 10 microseconds task;
 wenzelm parents: 
50763diff
changeset | 2002 | in | 
| 74159 | 2003 | if null promises then Future.map postproc body | 
| 51047 
2ad5c46bcd04
avoid extra fork for fulfill_proof_future whenever possible -- without proof terms it merely doubles the number of proof tasks redundantly, by piggy-backing another 10 microseconds task;
 wenzelm parents: 
50763diff
changeset | 2004 | else if Future.is_finished body andalso length promises = 1 then | 
| 
2ad5c46bcd04
avoid extra fork for fulfill_proof_future whenever possible -- without proof terms it merely doubles the number of proof tasks redundantly, by piggy-backing another 10 microseconds task;
 wenzelm parents: 
50763diff
changeset | 2005 | Future.map (fn _ => fulfill ()) (snd (hd promises)) | 
| 
2ad5c46bcd04
avoid extra fork for fulfill_proof_future whenever possible -- without proof terms it merely doubles the number of proof tasks redundantly, by piggy-backing another 10 microseconds task;
 wenzelm parents: 
50763diff
changeset | 2006 | else | 
| 
2ad5c46bcd04
avoid extra fork for fulfill_proof_future whenever possible -- without proof terms it merely doubles the number of proof tasks redundantly, by piggy-backing another 10 microseconds task;
 wenzelm parents: 
50763diff
changeset | 2007 | (singleton o Future.forks) | 
| 
2ad5c46bcd04
avoid extra fork for fulfill_proof_future whenever possible -- without proof terms it merely doubles the number of proof tasks redundantly, by piggy-backing another 10 microseconds task;
 wenzelm parents: 
50763diff
changeset | 2008 |         {name = "Proofterm.fulfill_proof_future", group = NONE,
 | 
| 70415 
3c20a86f14f1
finalize proofs earlier to reduce memory requirement;
 wenzelm parents: 
70413diff
changeset | 2009 | deps = Future.task_of body :: map (Future.task_of o snd) promises, pri = 1, | 
| 51047 
2ad5c46bcd04
avoid extra fork for fulfill_proof_future whenever possible -- without proof terms it merely doubles the number of proof tasks redundantly, by piggy-backing another 10 microseconds task;
 wenzelm parents: 
50763diff
changeset | 2010 | interrupts = true} | 
| 
2ad5c46bcd04
avoid extra fork for fulfill_proof_future whenever possible -- without proof terms it merely doubles the number of proof tasks redundantly, by piggy-backing another 10 microseconds task;
 wenzelm parents: 
50763diff
changeset | 2011 | fulfill | 
| 
2ad5c46bcd04
avoid extra fork for fulfill_proof_future whenever possible -- without proof terms it merely doubles the number of proof tasks redundantly, by piggy-backing another 10 microseconds task;
 wenzelm parents: 
50763diff
changeset | 2012 | end; | 
| 29642 | 2013 | |
| 28828 
c25dd83a6f9f
unified treatment of PAxm/Oracle/Promise in basic proof term operations;
 wenzelm parents: 
28815diff
changeset | 2014 | |
| 70397 | 2015 | |
| 2016 | (** theorems **) | |
| 11519 | 2017 | |
| 70529 | 2018 | (* standardization of variables for export: only frees and named bounds *) | 
| 2019 | ||
| 2020 | local | |
| 2021 | ||
| 70531 
2d2b5a8e8d59
clarified name context for abstractions -- in contrast to 367e60d9aa1b and Term.variant_frees (*as they are printed :-*);
 wenzelm parents: 
70530diff
changeset | 2022 | val declare_names_term = Term.declare_term_frees; | 
| 70529 | 2023 | val declare_names_term' = fn SOME t => declare_names_term t | NONE => I; | 
| 70843 
cc987440d776
more compact XML: separate environment for free variables;
 wenzelm parents: 
70839diff
changeset | 2024 | val declare_names_proof = fold_proof_terms declare_names_term; | 
| 70529 | 2025 | |
| 2026 | fun variant names bs x = | |
| 2027 | #1 (Name.variant x (fold Name.declare bs names)); | |
| 2028 | ||
| 2029 | fun variant_term bs (Abs (x, T, t)) = | |
| 2030 | let | |
| 2031 | val x' = variant (declare_names_term t Name.context) bs x; | |
| 2032 | val t' = variant_term (x' :: bs) t; | |
| 2033 | in Abs (x', T, t') end | |
| 2034 | | variant_term bs (t $ u) = variant_term bs t $ variant_term bs u | |
| 2035 | | variant_term _ t = t; | |
| 2036 | ||
| 2037 | fun variant_proof bs (Abst (x, T, prf)) = | |
| 2038 | let | |
| 2039 | val x' = variant (declare_names_proof prf Name.context) bs x; | |
| 2040 | val prf' = variant_proof (x' :: bs) prf; | |
| 2041 | in Abst (x', T, prf') end | |
| 2042 | | variant_proof bs (AbsP (x, t, prf)) = | |
| 2043 | let | |
| 2044 | val x' = variant (declare_names_term' t (declare_names_proof prf Name.context)) bs x; | |
| 2045 | val t' = Option.map (variant_term bs) t; | |
| 2046 | val prf' = variant_proof (x' :: bs) prf; | |
| 2047 | in AbsP (x', t', prf') end | |
| 2048 | | variant_proof bs (prf % t) = variant_proof bs prf % Option.map (variant_term bs) t | |
| 2049 | | variant_proof bs (prf1 %% prf2) = variant_proof bs prf1 %% variant_proof bs prf2 | |
| 2050 | | variant_proof bs (Hyp t) = Hyp (variant_term bs t) | |
| 2051 | | variant_proof _ prf = prf; | |
| 2052 | ||
| 70540 
04ef5ee3dd4d
more careful treatment of standard_vars: rename apart from existing frees and avoid approximative Name.declared, proper application of unvarifyT within terms of proof;
 wenzelm parents: 
70538diff
changeset | 2053 | val used_frees_type = fold_atyps (fn TFree (a, _) => Name.declare a | _ => I); | 
| 
04ef5ee3dd4d
more careful treatment of standard_vars: rename apart from existing frees and avoid approximative Name.declared, proper application of unvarifyT within terms of proof;
 wenzelm parents: 
70538diff
changeset | 2054 | fun used_frees_term t = fold_types used_frees_type t #> Term.declare_term_frees t; | 
| 70843 
cc987440d776
more compact XML: separate environment for free variables;
 wenzelm parents: 
70839diff
changeset | 2055 | val used_frees_proof = fold_proof_terms_types used_frees_term used_frees_type; | 
| 70540 
04ef5ee3dd4d
more careful treatment of standard_vars: rename apart from existing frees and avoid approximative Name.declared, proper application of unvarifyT within terms of proof;
 wenzelm parents: 
70538diff
changeset | 2056 | |
| 
04ef5ee3dd4d
more careful treatment of standard_vars: rename apart from existing frees and avoid approximative Name.declared, proper application of unvarifyT within terms of proof;
 wenzelm parents: 
70538diff
changeset | 2057 | val unvarifyT = Term.map_atyps (fn TVar ((a, _), S) => TFree (a, S) | T => T); | 
| 
04ef5ee3dd4d
more careful treatment of standard_vars: rename apart from existing frees and avoid approximative Name.declared, proper application of unvarifyT within terms of proof;
 wenzelm parents: 
70538diff
changeset | 2058 | val unvarify = Term.map_aterms (fn Var ((x, _), T) => Free (x, T) | t => t) #> map_types unvarifyT; | 
| 70541 
f3fbc7f3559d
more careful treatment of hidden type variable names: smash before zero_var_indexes to get standard enumeration;
 wenzelm parents: 
70540diff
changeset | 2059 | val unvarify_proof = map_proof_terms unvarify unvarifyT; | 
| 
f3fbc7f3559d
more careful treatment of hidden type variable names: smash before zero_var_indexes to get standard enumeration;
 wenzelm parents: 
70540diff
changeset | 2060 | |
| 
f3fbc7f3559d
more careful treatment of hidden type variable names: smash before zero_var_indexes to get standard enumeration;
 wenzelm parents: 
70540diff
changeset | 2061 | fun hidden_types prop proof = | 
| 
f3fbc7f3559d
more careful treatment of hidden type variable names: smash before zero_var_indexes to get standard enumeration;
 wenzelm parents: 
70540diff
changeset | 2062 | let | 
| 
f3fbc7f3559d
more careful treatment of hidden type variable names: smash before zero_var_indexes to get standard enumeration;
 wenzelm parents: 
70540diff
changeset | 2063 | val visible = (fold_types o fold_atyps) (insert (op =)) prop []; | 
| 
f3fbc7f3559d
more careful treatment of hidden type variable names: smash before zero_var_indexes to get standard enumeration;
 wenzelm parents: 
70540diff
changeset | 2064 | val add_hiddenT = fold_atyps (fn T => not (member (op =) visible T) ? insert (op =) T); | 
| 70843 
cc987440d776
more compact XML: separate environment for free variables;
 wenzelm parents: 
70839diff
changeset | 2065 | in rev (fold_proof_terms_types (fold_types add_hiddenT) add_hiddenT proof []) end; | 
| 70541 
f3fbc7f3559d
more careful treatment of hidden type variable names: smash before zero_var_indexes to get standard enumeration;
 wenzelm parents: 
70540diff
changeset | 2066 | |
| 
f3fbc7f3559d
more careful treatment of hidden type variable names: smash before zero_var_indexes to get standard enumeration;
 wenzelm parents: 
70540diff
changeset | 2067 | fun standard_hidden_types term proof = | 
| 
f3fbc7f3559d
more careful treatment of hidden type variable names: smash before zero_var_indexes to get standard enumeration;
 wenzelm parents: 
70540diff
changeset | 2068 | let | 
| 
f3fbc7f3559d
more careful treatment of hidden type variable names: smash before zero_var_indexes to get standard enumeration;
 wenzelm parents: 
70540diff
changeset | 2069 | val hidden = hidden_types term proof; | 
| 
f3fbc7f3559d
more careful treatment of hidden type variable names: smash before zero_var_indexes to get standard enumeration;
 wenzelm parents: 
70540diff
changeset | 2070 | val idx = Term.maxidx_term term (maxidx_proof proof ~1) + 1; | 
| 71533 
d7175626d61e
proper grounding of free types produced by reconstruct_proof/infer_type, e.g. relevant for Lattices_Big.semilattice_set.infinite;
 wenzelm parents: 
71532diff
changeset | 2071 | fun smash T = | 
| 
d7175626d61e
proper grounding of free types produced by reconstruct_proof/infer_type, e.g. relevant for Lattices_Big.semilattice_set.infinite;
 wenzelm parents: 
71532diff
changeset | 2072 | if member (op =) hidden T then | 
| 
d7175626d61e
proper grounding of free types produced by reconstruct_proof/infer_type, e.g. relevant for Lattices_Big.semilattice_set.infinite;
 wenzelm parents: 
71532diff
changeset | 2073 | (case Type.sort_of_atyp T of | 
| 
d7175626d61e
proper grounding of free types produced by reconstruct_proof/infer_type, e.g. relevant for Lattices_Big.semilattice_set.infinite;
 wenzelm parents: 
71532diff
changeset | 2074 | [] => dummyT | 
| 
d7175626d61e
proper grounding of free types produced by reconstruct_proof/infer_type, e.g. relevant for Lattices_Big.semilattice_set.infinite;
 wenzelm parents: 
71532diff
changeset | 2075 |         | S => TVar (("'", idx), S))
 | 
| 
d7175626d61e
proper grounding of free types produced by reconstruct_proof/infer_type, e.g. relevant for Lattices_Big.semilattice_set.infinite;
 wenzelm parents: 
71532diff
changeset | 2076 | else T; | 
| 70541 
f3fbc7f3559d
more careful treatment of hidden type variable names: smash before zero_var_indexes to get standard enumeration;
 wenzelm parents: 
70540diff
changeset | 2077 | val smashT = map_atyps smash; | 
| 
f3fbc7f3559d
more careful treatment of hidden type variable names: smash before zero_var_indexes to get standard enumeration;
 wenzelm parents: 
70540diff
changeset | 2078 | in map_proof_terms (map_types smashT) smashT proof end; | 
| 70540 
04ef5ee3dd4d
more careful treatment of standard_vars: rename apart from existing frees and avoid approximative Name.declared, proper application of unvarifyT within terms of proof;
 wenzelm parents: 
70538diff
changeset | 2079 | |
| 70898 
c13d9d3ee128
turn hidden terms into dummy, e.g. relevant for boundary cases of reconstruct_proof;
 wenzelm parents: 
70895diff
changeset | 2080 | fun standard_hidden_terms term proof = | 
| 
c13d9d3ee128
turn hidden terms into dummy, e.g. relevant for boundary cases of reconstruct_proof;
 wenzelm parents: 
70895diff
changeset | 2081 | let | 
| 71532 | 2082 | fun add_unless excluded x = | 
| 2083 | ((is_Free x orelse is_Var x) andalso not (member (op =) excluded x)) ? insert (op =) x; | |
| 2084 | val visible = fold_aterms (add_unless []) term []; | |
| 2085 | val hidden = fold_proof_terms (fold_aterms (add_unless visible)) proof []; | |
| 70898 
c13d9d3ee128
turn hidden terms into dummy, e.g. relevant for boundary cases of reconstruct_proof;
 wenzelm parents: 
70895diff
changeset | 2086 | val dummy_term = Term.map_aterms (fn x => | 
| 
c13d9d3ee128
turn hidden terms into dummy, e.g. relevant for boundary cases of reconstruct_proof;
 wenzelm parents: 
70895diff
changeset | 2087 | if member (op =) hidden x then Term.dummy_pattern (Term.fastype_of x) else x); | 
| 
c13d9d3ee128
turn hidden terms into dummy, e.g. relevant for boundary cases of reconstruct_proof;
 wenzelm parents: 
70895diff
changeset | 2088 | in proof |> not (null hidden) ? map_proof_terms dummy_term I end; | 
| 
c13d9d3ee128
turn hidden terms into dummy, e.g. relevant for boundary cases of reconstruct_proof;
 wenzelm parents: 
70895diff
changeset | 2089 | |
| 70529 | 2090 | in | 
| 2091 | ||
| 70541 
f3fbc7f3559d
more careful treatment of hidden type variable names: smash before zero_var_indexes to get standard enumeration;
 wenzelm parents: 
70540diff
changeset | 2092 | fun standard_vars used (term, opt_proof) = | 
| 70529 | 2093 | let | 
| 70898 
c13d9d3ee128
turn hidden terms into dummy, e.g. relevant for boundary cases of reconstruct_proof;
 wenzelm parents: 
70895diff
changeset | 2094 | val proofs = opt_proof | 
| 
c13d9d3ee128
turn hidden terms into dummy, e.g. relevant for boundary cases of reconstruct_proof;
 wenzelm parents: 
70895diff
changeset | 2095 | |> Option.map (standard_hidden_types term #> standard_hidden_terms term) |> the_list; | 
| 70843 
cc987440d776
more compact XML: separate environment for free variables;
 wenzelm parents: 
70839diff
changeset | 2096 | val proof_terms = rev (fold (fold_proof_terms_types cons (cons o Logic.mk_type)) proofs []); | 
| 70541 
f3fbc7f3559d
more careful treatment of hidden type variable names: smash before zero_var_indexes to get standard enumeration;
 wenzelm parents: 
70540diff
changeset | 2097 | val used_frees = used | 
| 
f3fbc7f3559d
more careful treatment of hidden type variable names: smash before zero_var_indexes to get standard enumeration;
 wenzelm parents: 
70540diff
changeset | 2098 | |> used_frees_term term | 
| 70540 
04ef5ee3dd4d
more careful treatment of standard_vars: rename apart from existing frees and avoid approximative Name.declared, proper application of unvarifyT within terms of proof;
 wenzelm parents: 
70538diff
changeset | 2099 | |> fold used_frees_proof proofs; | 
| 70541 
f3fbc7f3559d
more careful treatment of hidden type variable names: smash before zero_var_indexes to get standard enumeration;
 wenzelm parents: 
70540diff
changeset | 2100 | val inst = Term_Subst.zero_var_indexes_inst used_frees (term :: proof_terms); | 
| 
f3fbc7f3559d
more careful treatment of hidden type variable names: smash before zero_var_indexes to get standard enumeration;
 wenzelm parents: 
70540diff
changeset | 2101 | val term' = term |> Term_Subst.instantiate inst |> unvarify |> variant_term []; | 
| 
f3fbc7f3559d
more careful treatment of hidden type variable names: smash before zero_var_indexes to get standard enumeration;
 wenzelm parents: 
70540diff
changeset | 2102 | val proofs' = proofs |> map (instantiate inst #> unvarify_proof #> variant_proof []); | 
| 
f3fbc7f3559d
more careful treatment of hidden type variable names: smash before zero_var_indexes to get standard enumeration;
 wenzelm parents: 
70540diff
changeset | 2103 | in (term', try hd proofs') end; | 
| 70529 | 2104 | |
| 70541 
f3fbc7f3559d
more careful treatment of hidden type variable names: smash before zero_var_indexes to get standard enumeration;
 wenzelm parents: 
70540diff
changeset | 2105 | fun standard_vars_term used t = #1 (standard_vars used (t, NONE)); | 
| 70529 | 2106 | |
| 70843 
cc987440d776
more compact XML: separate environment for free variables;
 wenzelm parents: 
70839diff
changeset | 2107 | val add_standard_vars_term = fold_aterms | 
| 
cc987440d776
more compact XML: separate environment for free variables;
 wenzelm parents: 
70839diff
changeset | 2108 | (fn Free (x, T) => | 
| 
cc987440d776
more compact XML: separate environment for free variables;
 wenzelm parents: 
70839diff
changeset | 2109 | (fn env => | 
| 
cc987440d776
more compact XML: separate environment for free variables;
 wenzelm parents: 
70839diff
changeset | 2110 | (case AList.lookup (op =) env x of | 
| 
cc987440d776
more compact XML: separate environment for free variables;
 wenzelm parents: 
70839diff
changeset | 2111 | NONE => (x, T) :: env | 
| 
cc987440d776
more compact XML: separate environment for free variables;
 wenzelm parents: 
70839diff
changeset | 2112 | | SOME T' => | 
| 
cc987440d776
more compact XML: separate environment for free variables;
 wenzelm parents: 
70839diff
changeset | 2113 | if T = T' then env | 
| 
cc987440d776
more compact XML: separate environment for free variables;
 wenzelm parents: 
70839diff
changeset | 2114 |           else raise TYPE ("standard_vars_env: type conflict for variable " ^ quote x, [T, T'], [])))
 | 
| 
cc987440d776
more compact XML: separate environment for free variables;
 wenzelm parents: 
70839diff
changeset | 2115 | | _ => I); | 
| 
cc987440d776
more compact XML: separate environment for free variables;
 wenzelm parents: 
70839diff
changeset | 2116 | |
| 
cc987440d776
more compact XML: separate environment for free variables;
 wenzelm parents: 
70839diff
changeset | 2117 | val add_standard_vars = fold_proof_terms add_standard_vars_term; | 
| 
cc987440d776
more compact XML: separate environment for free variables;
 wenzelm parents: 
70839diff
changeset | 2118 | |
| 70529 | 2119 | end; | 
| 2120 | ||
| 2121 | ||
| 2122 | (* PThm nodes *) | |
| 2123 | ||
| 71022 
6504ea98623c
uniform "prune_proofs" for Thm_Node / PThm, but it is in conflict with export_proofs of re-used nodes;
 wenzelm parents: 
71018diff
changeset | 2124 | fun prune_body body = | 
| 
6504ea98623c
uniform "prune_proofs" for Thm_Node / PThm, but it is in conflict with export_proofs of re-used nodes;
 wenzelm parents: 
71018diff
changeset | 2125 | if Options.default_bool "prune_proofs" | 
| 79333 
56b604882d0b
more thorough treatment of zproof vs. proof: avoid accidental storage of large structures;
 wenzelm parents: 
79332diff
changeset | 2126 | then Future.map no_proof body | 
| 71022 
6504ea98623c
uniform "prune_proofs" for Thm_Node / PThm, but it is in conflict with export_proofs of re-used nodes;
 wenzelm parents: 
71018diff
changeset | 2127 | else body; | 
| 
6504ea98623c
uniform "prune_proofs" for Thm_Node / PThm, but it is in conflict with export_proofs of re-used nodes;
 wenzelm parents: 
71018diff
changeset | 2128 | |
| 70604 | 2129 | fun export_enabled () = Options.default_bool "export_proofs"; | 
| 70983 | 2130 | fun export_standard_enabled () = Options.default_bool "export_standard_proofs"; | 
| 70604 | 2131 | |
| 70984 | 2132 | fun export_proof_boxes_required thy = | 
| 77890 | 2133 | Context.theory_long_name thy = Context.PureN orelse | 
| 70984 | 2134 | (export_enabled () andalso not (export_standard_enabled ())); | 
| 2135 | ||
| 71018 
d32ed8927a42
more robust expose_proofs corresponding to register_proofs/consolidate_theory;
 wenzelm parents: 
71010diff
changeset | 2136 | fun export_proof_boxes bodies = | 
| 70909 | 2137 | let | 
| 71018 
d32ed8927a42
more robust expose_proofs corresponding to register_proofs/consolidate_theory;
 wenzelm parents: 
71010diff
changeset | 2138 | fun export_thm (i, thm_node) boxes = | 
| 
d32ed8927a42
more robust expose_proofs corresponding to register_proofs/consolidate_theory;
 wenzelm parents: 
71010diff
changeset | 2139 | if Inttab.defined boxes i then boxes | 
| 
d32ed8927a42
more robust expose_proofs corresponding to register_proofs/consolidate_theory;
 wenzelm parents: 
71010diff
changeset | 2140 | else | 
| 
d32ed8927a42
more robust expose_proofs corresponding to register_proofs/consolidate_theory;
 wenzelm parents: 
71010diff
changeset | 2141 | boxes | 
| 
d32ed8927a42
more robust expose_proofs corresponding to register_proofs/consolidate_theory;
 wenzelm parents: 
71010diff
changeset | 2142 | |> Inttab.update (i, thm_node_export thm_node) | 
| 77866 | 2143 | |> fold export_thm (thm_node_thms thm_node); | 
| 71018 
d32ed8927a42
more robust expose_proofs corresponding to register_proofs/consolidate_theory;
 wenzelm parents: 
71010diff
changeset | 2144 | |
| 77866 | 2145 |     fun export_body (PBody {thms, ...}) = fold export_thm thms;
 | 
| 71018 
d32ed8927a42
more robust expose_proofs corresponding to register_proofs/consolidate_theory;
 wenzelm parents: 
71010diff
changeset | 2146 | |
| 74232 | 2147 | val exports = Inttab.build (fold export_body bodies) |> Inttab.dest; | 
| 71018 
d32ed8927a42
more robust expose_proofs corresponding to register_proofs/consolidate_theory;
 wenzelm parents: 
71010diff
changeset | 2148 | in List.app (Lazy.force o #2) exports end; | 
| 70909 | 2149 | |
| 70416 | 2150 | local | 
| 2151 | ||
| 80288 
bc48bc7d0801
clarified signature: more explicit preprocessing;
 wenzelm parents: 
80287diff
changeset | 2152 | fun export_proof thy i prop prf = | 
| 70451 
550a5a822edb
clarified export: retain proof boxes as local definitions -- more scalable;
 wenzelm parents: 
70449diff
changeset | 2153 | let | 
| 70877 | 2154 | val (prop', SOME prf') = (prop, SOME prf) |> standard_vars Name.context; | 
| 70881 | 2155 | val args = [] |> add_standard_vars_term prop' |> add_standard_vars prf' |> rev; | 
| 2156 | val typargs = [] |> Term.add_tfrees prop' |> fold_proof_terms Term.add_tfrees prf' |> rev; | |
| 2157 | ||
| 2158 | val consts = Sign.consts_of thy; | |
| 70916 
4c15217d6266
clarified signature: name of standard_proof is authentic, otherwise empty;
 wenzelm parents: 
70915diff
changeset | 2159 | val xml = (typargs, (args, (prop', no_thm_names prf'))) |> | 
| 70881 | 2160 | let | 
| 2161 | open XML.Encode Term_XML.Encode; | |
| 2162 | val encode_vars = list (pair string typ); | |
| 2163 | val encode_term = encode_standard_term consts; | |
| 2164 | val encode_proof = encode_standard_proof consts; | |
| 2165 | in pair (list (pair string sort)) (pair encode_vars (pair encode_term encode_proof)) end; | |
| 70500 
5d540dbbe5ba
export each PThm node separately: slightly more scalable;
 wenzelm parents: 
70497diff
changeset | 2166 | in | 
| 80287 
a3a1ec0c47ab
clarified signature: separate formal context from exported theory_name;
 wenzelm parents: 
80239diff
changeset | 2167 | Export.export_params (Context.Theory thy) | 
| 
a3a1ec0c47ab
clarified signature: separate formal context from exported theory_name;
 wenzelm parents: 
80239diff
changeset | 2168 |      {theory_name = Context.theory_long_name thy,
 | 
| 70500 
5d540dbbe5ba
export each PThm node separately: slightly more scalable;
 wenzelm parents: 
70497diff
changeset | 2169 | binding = Path.binding0 (Path.make ["proofs", string_of_int i]), | 
| 
5d540dbbe5ba
export each PThm node separately: slightly more scalable;
 wenzelm parents: 
70497diff
changeset | 2170 | executable = false, | 
| 
5d540dbbe5ba
export each PThm node separately: slightly more scalable;
 wenzelm parents: 
70497diff
changeset | 2171 | compress = true, | 
| 70991 
f9f7c34b7dd4
more scalable protocol_message: use XML.body directly (Output.output hook is not required);
 wenzelm parents: 
70990diff
changeset | 2172 | strict = false} xml | 
| 70500 
5d540dbbe5ba
export each PThm node separately: slightly more scalable;
 wenzelm parents: 
70497diff
changeset | 2173 | end; | 
| 
5d540dbbe5ba
export each PThm node separately: slightly more scalable;
 wenzelm parents: 
70497diff
changeset | 2174 | |
| 79425 | 2175 | fun prepare_thm_proof unconstrain thy sorts_proof | 
| 79423 | 2176 | (name, pos) shyps hyps concl promises | 
| 2177 |     (PBody {oracles = oracles0, thms = thms0, zboxes = zboxes0, zproof = zproof0, proof = proof0}) =
 | |
| 11519 | 2178 | let | 
| 80295 
8a9588ffc133
more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
 wenzelm parents: 
80288diff
changeset | 2179 | val named = not (Thm_Name.is_empty name); | 
| 70422 | 2180 | |
| 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 | 2181 | val prop = Logic.list_implies (hyps, concl); | 
| 70416 | 2182 | val args = prop_args prop; | 
| 28803 
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
 wenzelm parents: 
28329diff
changeset | 2183 | |
| 79407 | 2184 |     val (ucontext as {typ_operation, ...}, prop1) = Logic.unconstrainT shyps prop;
 | 
| 36882 
f33760bb8ca0
conditionally unconstrain thm proofs -- loosely based on the version by krauss/schropp;
 wenzelm parents: 
36880diff
changeset | 2185 | |
| 79219 
8b371e684acf
clarified signature: more explicit get_proofs_level with bounds check;
 wenzelm parents: 
79217diff
changeset | 2186 | val proofs = get_proofs_level (); | 
| 79422 | 2187 | val (zproof1, zboxes1) = | 
| 79425 | 2188 | if zproof_enabled proofs then | 
| 2189 |         ZTerm.add_box_proof {unconstrain = unconstrain} thy hyps concl zproof0 zboxes0
 | |
| 79422 | 2190 | else (ZDummy, []); | 
| 79267 | 2191 | val proof1 = | 
| 79423 | 2192 | if proof_enabled proofs then fold_rev implies_intr_proof hyps proof0 | 
| 79265 | 2193 | else MinProof; | 
| 70400 
65bbef66e2ec
clarified treatment of unnamed PThm nodes (from close_derivation): retain full proof, publish when named;
 wenzelm parents: 
70399diff
changeset | 2194 | |
| 70396 | 2195 | fun new_prf () = | 
| 2196 | let | |
| 70577 
ed651a58afe4
back to uniform serial (reverting 913b4afb6ac2): this allows to treat derivation id like name space entity id;
 wenzelm parents: 
70573diff
changeset | 2197 | val i = serial (); | 
| 79405 | 2198 | val unconstrainT = unconstrainT_proof (Sign.classes_of thy) sorts_proof ucontext; | 
| 79220 | 2199 | val postproc = map_proof_of (unconstrainT #> named ? rew_proof thy); | 
| 79267 | 2200 | val body1 = | 
| 79423 | 2201 |           {oracles = oracles0, thms = thms0, zboxes = [], zproof = ZDummy, proof = proof1};
 | 
| 79265 | 2202 | in (i, fulfill_proof_future thy promises postproc (Future.value (PBody body1))) end; | 
| 70395 
af88c05696bd
clarified postproc: apply shrink_proof last, e.g. relevant for export of full proof term;
 wenzelm parents: 
70394diff
changeset | 2203 | |
| 36880 
49d3cc859a12
avoid redundant rebinding of name/prop -- probably introduced accidentally in 80bb72a0f577;
 wenzelm parents: 
36879diff
changeset | 2204 | val (i, body') = | 
| 71022 
6504ea98623c
uniform "prune_proofs" for Thm_Node / PThm, but it is in conflict with export_proofs of re-used nodes;
 wenzelm parents: 
71018diff
changeset | 2205 | (*somewhat non-deterministic proof boxes!*) | 
| 
6504ea98623c
uniform "prune_proofs" for Thm_Node / PThm, but it is in conflict with export_proofs of re-used nodes;
 wenzelm parents: 
71018diff
changeset | 2206 | if export_enabled () then new_prf () | 
| 
6504ea98623c
uniform "prune_proofs" for Thm_Node / PThm, but it is in conflict with export_proofs of re-used nodes;
 wenzelm parents: 
71018diff
changeset | 2207 | else | 
| 79441 | 2208 | (case strip_combt (proof_head_of proof0) of | 
| 80295 
8a9588ffc133
more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
 wenzelm parents: 
80288diff
changeset | 2209 |           (PThm ({serial = ser, thm_name = a, prop = prop', types = NONE, ...}, thm_body'), args') =>
 | 
| 
8a9588ffc133
more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
 wenzelm parents: 
80288diff
changeset | 2210 | if (#1 a = "" orelse a = name) andalso prop' = prop1 andalso args' = args then | 
| 71022 
6504ea98623c
uniform "prune_proofs" for Thm_Node / PThm, but it is in conflict with export_proofs of re-used nodes;
 wenzelm parents: 
71018diff
changeset | 2211 | let | 
| 
6504ea98623c
uniform "prune_proofs" for Thm_Node / PThm, but it is in conflict with export_proofs of re-used nodes;
 wenzelm parents: 
71018diff
changeset | 2212 |                 val Thm_Body {body = body', ...} = thm_body';
 | 
| 80295 
8a9588ffc133
more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
 wenzelm parents: 
80288diff
changeset | 2213 | val i = if #1 a = "" andalso named then serial () else ser; | 
| 79220 | 2214 | in (i, body' |> ser <> i ? Future.map (map_proof_of (rew_proof thy))) end | 
| 71022 
6504ea98623c
uniform "prune_proofs" for Thm_Node / PThm, but it is in conflict with export_proofs of re-used nodes;
 wenzelm parents: 
71018diff
changeset | 2215 | else new_prf () | 
| 
6504ea98623c
uniform "prune_proofs" for Thm_Node / PThm, but it is in conflict with export_proofs of re-used nodes;
 wenzelm parents: 
71018diff
changeset | 2216 | | _ => new_prf ()); | 
| 70416 | 2217 | |
| 79333 
56b604882d0b
more thorough treatment of zproof vs. proof: avoid accidental storage of large structures;
 wenzelm parents: 
79332diff
changeset | 2218 | val exp_proof = Future.map proof_of body'; | 
| 71018 
d32ed8927a42
more robust expose_proofs corresponding to register_proofs/consolidate_theory;
 wenzelm parents: 
71010diff
changeset | 2219 | val open_proof = not named ? rew_proof thy; | 
| 80288 
bc48bc7d0801
clarified signature: more explicit preprocessing;
 wenzelm parents: 
80287diff
changeset | 2220 | fun export_body () = | 
| 
bc48bc7d0801
clarified signature: more explicit preprocessing;
 wenzelm parents: 
80287diff
changeset | 2221 | Future.join exp_proof | 
| 
bc48bc7d0801
clarified signature: more explicit preprocessing;
 wenzelm parents: 
80287diff
changeset | 2222 | |> open_proof | 
| 
bc48bc7d0801
clarified signature: more explicit preprocessing;
 wenzelm parents: 
80287diff
changeset | 2223 | |> reconstruct_proof thy prop1 | 
| 
bc48bc7d0801
clarified signature: more explicit preprocessing;
 wenzelm parents: 
80287diff
changeset | 2224 | |> apply_preproc thy | 
| 
bc48bc7d0801
clarified signature: more explicit preprocessing;
 wenzelm parents: 
80287diff
changeset | 2225 | |> export_proof thy i prop1; | 
| 71018 
d32ed8927a42
more robust expose_proofs corresponding to register_proofs/consolidate_theory;
 wenzelm parents: 
71010diff
changeset | 2226 | |
| 
d32ed8927a42
more robust expose_proofs corresponding to register_proofs/consolidate_theory;
 wenzelm parents: 
71010diff
changeset | 2227 | val export = | 
| 
d32ed8927a42
more robust expose_proofs corresponding to register_proofs/consolidate_theory;
 wenzelm parents: 
71010diff
changeset | 2228 | if export_enabled () then | 
| 70889 
62b3acc801ec
more robust: avoid looping Lazy.force due to misinterpreted interrupt;
 wenzelm parents: 
70888diff
changeset | 2229 | Lazy.lazy (fn () => | 
| 78759 | 2230 | (case Exn.capture_body export_body of | 
| 2231 | Exn.Res res => res | |
| 2232 | | Exn.Exn exn => | |
| 78764 
a3dcae9a2ebe
distinguish proper interrupts from Poly/ML RTS breakdown;
 wenzelm parents: 
78759diff
changeset | 2233 | if Exn.is_interrupt_breakdown exn then | 
| 
a3dcae9a2ebe
distinguish proper interrupts from Poly/ML RTS breakdown;
 wenzelm parents: 
78759diff
changeset | 2234 |                 raise Fail ("Resource problems while exporting proof " ^ string_of_int i)
 | 
| 78759 | 2235 | else Exn.reraise exn)) | 
| 71018 
d32ed8927a42
more robust expose_proofs corresponding to register_proofs/consolidate_theory;
 wenzelm parents: 
71010diff
changeset | 2236 | else no_export; | 
| 70502 
b053c9ed0b0a
more careful export of unnamed proof boxes: avoid duplicates via memoing;
 wenzelm parents: 
70501diff
changeset | 2237 | |
| 71022 
6504ea98623c
uniform "prune_proofs" for Thm_Node / PThm, but it is in conflict with export_proofs of re-used nodes;
 wenzelm parents: 
71018diff
changeset | 2238 | val thm_body = prune_body body'; | 
| 70595 
2ae7e33c950f
clarified thm_id vs. thm_node/thm: retain theory_name;
 wenzelm parents: 
70593diff
changeset | 2239 | val theory_name = Context.theory_long_name thy; | 
| 71022 
6504ea98623c
uniform "prune_proofs" for Thm_Node / PThm, but it is in conflict with export_proofs of re-used nodes;
 wenzelm parents: 
71018diff
changeset | 2240 | val thm = (i, make_thm_node theory_name name prop1 thm_body export); | 
| 70423 | 2241 | |
| 70595 
2ae7e33c950f
clarified thm_id vs. thm_node/thm: retain theory_name;
 wenzelm parents: 
70593diff
changeset | 2242 | val header = thm_header i ([pos, Position.thread_data ()]) theory_name name prop1 NONE; | 
| 71022 
6504ea98623c
uniform "prune_proofs" for Thm_Node / PThm, but it is in conflict with export_proofs of re-used nodes;
 wenzelm parents: 
71018diff
changeset | 2243 |     val head = PThm (header, Thm_Body {open_proof = open_proof, body = thm_body});
 | 
| 79424 | 2244 | val argst = | 
| 70439 | 2245 | if unconstrain then | 
| 79424 | 2246 | (Same.commit o Same.map o Same.map_option o Term.map_types_same) | 
| 2247 |           (typ_operation {strip_sorts = true}) args
 | |
| 2248 | else args; | |
| 2249 | val argsP = | |
| 2250 | if unconstrain then [] | |
| 2251 | else map PClass (#outer_constraints ucontext) @ map Hyp hyps; | |
| 2252 | val proof2 = proof_combP (proof_combt' (head, argst), argsP); | |
| 2253 | ||
| 79425 | 2254 |     val body2 = {oracles = [], thms = [thm], zboxes = zboxes1, zproof = zproof1, proof = proof2};
 | 
| 79332 | 2255 | in (prop1, PBody body2) end; | 
| 36883 
4ed0d72def50
added Proofterm.unconstrain_thm_proof for Thm.unconstrainT -- loosely based on the version by krauss/schropp;
 wenzelm parents: 
36882diff
changeset | 2256 | |
| 70422 | 2257 | in | 
| 2258 | ||
| 79425 | 2259 | fun thm_proof thy sorts_proof name shyps hyps concl promises = | 
| 2260 | prepare_thm_proof false thy sorts_proof name shyps hyps concl promises #> #2; | |
| 36883 
4ed0d72def50
added Proofterm.unconstrain_thm_proof for Thm.unconstrainT -- loosely based on the version by krauss/schropp;
 wenzelm parents: 
36882diff
changeset | 2261 | |
| 79425 | 2262 | fun unconstrain_thm_proof thy sorts_proof shyps concl promises body = | 
| 80295 
8a9588ffc133
more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
 wenzelm parents: 
80288diff
changeset | 2263 | prepare_thm_proof true thy sorts_proof Thm_Name.none | 
| 70494 | 2264 | shyps [] concl promises body; | 
| 36883 
4ed0d72def50
added Proofterm.unconstrain_thm_proof for Thm.unconstrainT -- loosely based on the version by krauss/schropp;
 wenzelm parents: 
36882diff
changeset | 2265 | |
| 70422 | 2266 | end; | 
| 2267 | ||
| 11519 | 2268 | |
| 70892 
aadb5c23af24
clarified proof_boxes (requires prune_proofs=false);
 wenzelm parents: 
70889diff
changeset | 2269 | (* PThm identity *) | 
| 70416 | 2270 | |
| 70551 
9e87e978be5e
clarified identity of PThm nodes: do not reuse old id after renaming -- enforce uniqueness of substructures;
 wenzelm parents: 
70541diff
changeset | 2271 | fun get_identity shyps hyps prop prf = | 
| 70436 | 2272 | let val (_, prop) = Logic.unconstrainT shyps (Logic.list_implies (hyps, prop)) in | 
| 79441 | 2273 | (case term_head_of (proof_head_of prf) of | 
| 80295 
8a9588ffc133
more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
 wenzelm parents: 
80288diff
changeset | 2274 |       PThm ({serial, theory_name, thm_name, prop = prop', ...}, _) =>
 | 
| 70551 
9e87e978be5e
clarified identity of PThm nodes: do not reuse old id after renaming -- enforce uniqueness of substructures;
 wenzelm parents: 
70541diff
changeset | 2275 | if prop = prop' | 
| 80295 
8a9588ffc133
more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
 wenzelm parents: 
80288diff
changeset | 2276 |         then SOME {serial = serial, theory_name = theory_name, thm_name = thm_name} else NONE
 | 
| 70551 
9e87e978be5e
clarified identity of PThm nodes: do not reuse old id after renaming -- enforce uniqueness of substructures;
 wenzelm parents: 
70541diff
changeset | 2277 | | _ => NONE) | 
| 36877 
7699f7fafde7
added Proofterm.get_name variants according to krauss/schropp;
 wenzelm parents: 
36742diff
changeset | 2278 | end; | 
| 
7699f7fafde7
added Proofterm.get_name variants according to krauss/schropp;
 wenzelm parents: 
36742diff
changeset | 2279 | |
| 70554 | 2280 | fun get_approximative_name shyps hyps prop prf = | 
| 80295 
8a9588ffc133
more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
 wenzelm parents: 
80288diff
changeset | 2281 | Option.map #thm_name (get_identity shyps hyps prop prf) |> the_default Thm_Name.empty; | 
| 70551 
9e87e978be5e
clarified identity of PThm nodes: do not reuse old id after renaming -- enforce uniqueness of substructures;
 wenzelm parents: 
70541diff
changeset | 2282 | |
| 70554 | 2283 | |
| 70892 
aadb5c23af24
clarified proof_boxes (requires prune_proofs=false);
 wenzelm parents: 
70889diff
changeset | 2284 | (* thm_id *) | 
| 
aadb5c23af24
clarified proof_boxes (requires prune_proofs=false);
 wenzelm parents: 
70889diff
changeset | 2285 | |
| 70577 
ed651a58afe4
back to uniform serial (reverting 913b4afb6ac2): this allows to treat derivation id like name space entity id;
 wenzelm parents: 
70573diff
changeset | 2286 | type thm_id = {serial: serial, theory_name: string};
 | 
| 70554 | 2287 | |
| 70892 
aadb5c23af24
clarified proof_boxes (requires prune_proofs=false);
 wenzelm parents: 
70889diff
changeset | 2288 | fun make_thm_id (serial, theory_name) : thm_id = | 
| 
aadb5c23af24
clarified proof_boxes (requires prune_proofs=false);
 wenzelm parents: 
70889diff
changeset | 2289 |   {serial = serial, theory_name = theory_name};
 | 
| 
aadb5c23af24
clarified proof_boxes (requires prune_proofs=false);
 wenzelm parents: 
70889diff
changeset | 2290 | |
| 70915 
bd4d37edfee4
clarified expand_proof/expand_name: allow more detailed control via thm_header;
 wenzelm parents: 
70909diff
changeset | 2291 | fun thm_header_id ({serial, theory_name, ...}: thm_header) =
 | 
| 
bd4d37edfee4
clarified expand_proof/expand_name: allow more detailed control via thm_header;
 wenzelm parents: 
70909diff
changeset | 2292 | make_thm_id (serial, theory_name); | 
| 
bd4d37edfee4
clarified expand_proof/expand_name: allow more detailed control via thm_header;
 wenzelm parents: 
70909diff
changeset | 2293 | |
| 70595 
2ae7e33c950f
clarified thm_id vs. thm_node/thm: retain theory_name;
 wenzelm parents: 
70593diff
changeset | 2294 | fun thm_id (serial, thm_node) : thm_id = | 
| 70892 
aadb5c23af24
clarified proof_boxes (requires prune_proofs=false);
 wenzelm parents: 
70889diff
changeset | 2295 | make_thm_id (serial, thm_node_theory_name thm_node); | 
| 70595 
2ae7e33c950f
clarified thm_id vs. thm_node/thm: retain theory_name;
 wenzelm parents: 
70593diff
changeset | 2296 | |
| 70554 | 2297 | fun get_id shyps hyps prop prf : thm_id option = | 
| 70551 
9e87e978be5e
clarified identity of PThm nodes: do not reuse old id after renaming -- enforce uniqueness of substructures;
 wenzelm parents: 
70541diff
changeset | 2298 | (case get_identity shyps hyps prop prf of | 
| 
9e87e978be5e
clarified identity of PThm nodes: do not reuse old id after renaming -- enforce uniqueness of substructures;
 wenzelm parents: 
70541diff
changeset | 2299 | NONE => NONE | 
| 80295 
8a9588ffc133
more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
 wenzelm parents: 
80288diff
changeset | 2300 |   | SOME {serial, theory_name, thm_name, ...} =>
 | 
| 
8a9588ffc133
more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
 wenzelm parents: 
80288diff
changeset | 2301 | if Thm_Name.is_empty thm_name then NONE else SOME (make_thm_id (serial, theory_name))); | 
| 70551 
9e87e978be5e
clarified identity of PThm nodes: do not reuse old id after renaming -- enforce uniqueness of substructures;
 wenzelm parents: 
70541diff
changeset | 2302 | |
| 70979 | 2303 | fun this_id NONE _ = false | 
| 2304 | | this_id (SOME (thm_id: thm_id)) (thm_id': thm_id) = #serial thm_id = #serial thm_id'; | |
| 2305 | ||
| 70976 
d86798eddc14
more accurate proof_boxes -- from actual proof body;
 wenzelm parents: 
70948diff
changeset | 2306 | |
| 
d86798eddc14
more accurate proof_boxes -- from actual proof body;
 wenzelm parents: 
70948diff
changeset | 2307 | (* proof boxes: intermediate PThm nodes *) | 
| 
d86798eddc14
more accurate proof_boxes -- from actual proof body;
 wenzelm parents: 
70948diff
changeset | 2308 | |
| 
d86798eddc14
more accurate proof_boxes -- from actual proof body;
 wenzelm parents: 
70948diff
changeset | 2309 | fun proof_boxes {included, excluded} proofs =
 | 
| 
d86798eddc14
more accurate proof_boxes -- from actual proof body;
 wenzelm parents: 
70948diff
changeset | 2310 | let | 
| 
d86798eddc14
more accurate proof_boxes -- from actual proof body;
 wenzelm parents: 
70948diff
changeset | 2311 | fun boxes_of (Abst (_, _, prf)) = boxes_of prf | 
| 
d86798eddc14
more accurate proof_boxes -- from actual proof body;
 wenzelm parents: 
70948diff
changeset | 2312 | | boxes_of (AbsP (_, _, prf)) = boxes_of prf | 
| 
d86798eddc14
more accurate proof_boxes -- from actual proof body;
 wenzelm parents: 
70948diff
changeset | 2313 | | boxes_of (prf % _) = boxes_of prf | 
| 
d86798eddc14
more accurate proof_boxes -- from actual proof body;
 wenzelm parents: 
70948diff
changeset | 2314 | | boxes_of (prf1 %% prf2) = boxes_of prf1 #> boxes_of prf2 | 
| 
d86798eddc14
more accurate proof_boxes -- from actual proof body;
 wenzelm parents: 
70948diff
changeset | 2315 |       | boxes_of (PThm (header as {serial = i, ...}, thm_body)) =
 | 
| 
d86798eddc14
more accurate proof_boxes -- from actual proof body;
 wenzelm parents: 
70948diff
changeset | 2316 | (fn boxes => | 
| 
d86798eddc14
more accurate proof_boxes -- from actual proof body;
 wenzelm parents: 
70948diff
changeset | 2317 | let val thm_id = thm_header_id header in | 
| 
d86798eddc14
more accurate proof_boxes -- from actual proof body;
 wenzelm parents: 
70948diff
changeset | 2318 | if Inttab.defined boxes i orelse (excluded thm_id andalso not (included thm_id)) | 
| 
d86798eddc14
more accurate proof_boxes -- from actual proof body;
 wenzelm parents: 
70948diff
changeset | 2319 | then boxes | 
| 
d86798eddc14
more accurate proof_boxes -- from actual proof body;
 wenzelm parents: 
70948diff
changeset | 2320 | else | 
| 
d86798eddc14
more accurate proof_boxes -- from actual proof body;
 wenzelm parents: 
70948diff
changeset | 2321 | let | 
| 
d86798eddc14
more accurate proof_boxes -- from actual proof body;
 wenzelm parents: 
70948diff
changeset | 2322 | val prf' = thm_body_proof_open thm_body; | 
| 
d86798eddc14
more accurate proof_boxes -- from actual proof body;
 wenzelm parents: 
70948diff
changeset | 2323 | val boxes' = Inttab.update (i, (header, prf')) boxes; | 
| 
d86798eddc14
more accurate proof_boxes -- from actual proof body;
 wenzelm parents: 
70948diff
changeset | 2324 | in boxes_of prf' boxes' end | 
| 
d86798eddc14
more accurate proof_boxes -- from actual proof body;
 wenzelm parents: 
70948diff
changeset | 2325 | end) | 
| 
d86798eddc14
more accurate proof_boxes -- from actual proof body;
 wenzelm parents: 
70948diff
changeset | 2326 | | boxes_of MinProof = raise MIN_PROOF () | 
| 
d86798eddc14
more accurate proof_boxes -- from actual proof body;
 wenzelm parents: 
70948diff
changeset | 2327 | | boxes_of _ = I; | 
| 74232 | 2328 | in Inttab.fold_rev (cons o #2) (Inttab.build (fold boxes_of proofs)) [] end; | 
| 70976 
d86798eddc14
more accurate proof_boxes -- from actual proof body;
 wenzelm parents: 
70948diff
changeset | 2329 | |
| 11519 | 2330 | end; | 
| 2331 | ||
| 70578 | 2332 | structure Basic_Proofterm = | 
| 2333 | struct | |
| 2334 | datatype proof = datatype Proofterm.proof | |
| 2335 | datatype proof_body = datatype Proofterm.proof_body | |
| 2336 | val op %> = Proofterm.%> | |
| 2337 | end; | |
| 2338 | ||
| 32094 
89b9210c7506
prefer simultaneous join -- for improved scheduling;
 wenzelm parents: 
32057diff
changeset | 2339 | open Basic_Proofterm; |