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