author | wenzelm |
Mon, 29 Jul 2019 15:10:30 +0200 | |
changeset 70439 | 145fb19d906d |
parent 70437 | fdbb0c2e0162 |
child 70440 | 03cfef16ddb4 |
permissions | -rw-r--r-- |
11519 | 1 |
(* Title: Pure/proofterm.ML |
11540 | 2 |
Author: Stefan Berghofer, TU Muenchen |
11519 | 3 |
|
11540 | 4 |
LF style proof terms. |
11519 | 5 |
*) |
6 |
||
11615 | 7 |
infix 8 % %% %>; |
11519 | 8 |
|
9 |
signature BASIC_PROOFTERM = |
|
10 |
sig |
|
64573 | 11 |
type thm_node |
70413 | 12 |
type proof_serial = int |
11519 | 13 |
datatype proof = |
28803
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents:
28329
diff
changeset
|
14 |
MinProof |
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents:
28329
diff
changeset
|
15 |
| PBound of int |
11519 | 16 |
| Abst of string * typ option * proof |
17 |
| AbsP of string * term option * proof |
|
63857 | 18 |
| % of proof * term option |
19 |
| %% of proof * proof |
|
11519 | 20 |
| Hyp of term |
21 |
| PAxm of string * term * typ list option |
|
31943
5e960a0780a2
renamed inclass/Inclass to of_class/OfClass, in accordance to of_sort;
wenzelm
parents:
31903
diff
changeset
|
22 |
| OfClass of typ * class |
11519 | 23 |
| Oracle of string * term * typ list option |
70413 | 24 |
| PThm of proof_serial * ((string * term * typ list option * (proof -> proof)) * proof_body future) |
28803
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents:
28329
diff
changeset
|
25 |
and proof_body = PBody of |
39687 | 26 |
{oracles: (string * term) Ord_List.T, |
70413 | 27 |
thms: (proof_serial * thm_node) Ord_List.T, |
28803
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents:
28329
diff
changeset
|
28 |
proof: proof} |
11615 | 29 |
val %> : proof * term -> proof |
11519 | 30 |
end; |
31 |
||
32 |
signature PROOFTERM = |
|
33 |
sig |
|
34 |
include BASIC_PROOFTERM |
|
65446 | 35 |
val proofs: int Unsynchronized.ref |
70413 | 36 |
type pthm = proof_serial * thm_node |
28815 | 37 |
type oracle = string * term |
32094
89b9210c7506
prefer simultaneous join -- for improved scheduling;
wenzelm
parents:
32057
diff
changeset
|
38 |
val proof_of: proof_body -> proof |
70396 | 39 |
val map_proof_of: (proof -> proof) -> proof_body -> proof_body |
64573 | 40 |
val thm_node_name: thm_node -> string |
41 |
val thm_node_prop: thm_node -> term |
|
42 |
val thm_node_body: thm_node -> proof_body future |
|
29635
31d14e9fa0da
proof_body: turned lazy into future -- ensures that body is fulfilled eventually, without explicit force;
wenzelm
parents:
29270
diff
changeset
|
43 |
val join_proof: proof_body future -> proof |
30711 | 44 |
val fold_proof_atoms: bool -> (proof -> 'a -> 'a) -> proof list -> 'a -> 'a |
70413 | 45 |
val fold_body_thms: |
46 |
({serial: proof_serial, name: string, prop: term, body: proof_body} -> 'a -> 'a) -> |
|
64572 | 47 |
proof_body list -> 'a -> 'a |
66168 | 48 |
val consolidate: proof_body list -> unit |
50126
3dec88149176
theorem status about oracles/futures is no longer printed by default;
wenzelm
parents:
45156
diff
changeset
|
49 |
val peek_status: proof_body list -> {failed: bool, oracle: bool, unfinished: bool} |
28803
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents:
28329
diff
changeset
|
50 |
|
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents:
28329
diff
changeset
|
51 |
val oracle_ord: oracle * oracle -> order |
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents:
28329
diff
changeset
|
52 |
val thm_ord: pthm * pthm -> order |
44334 | 53 |
val unions_oracles: oracle Ord_List.T list -> oracle Ord_List.T |
54 |
val unions_thms: pthm Ord_List.T list -> pthm Ord_List.T |
|
39687 | 55 |
val all_oracles_of: proof_body -> oracle Ord_List.T |
30716
2ee706293eb5
removed misleading make_proof_body, make_oracles, make_thms, which essentially assume a *full* proof;
wenzelm
parents:
30712
diff
changeset
|
56 |
val approximate_proof_body: proof -> proof_body |
52424
77075c576d4c
support for XML data representation of proof terms;
wenzelm
parents:
51700
diff
changeset
|
57 |
val no_proof_body: proof_body |
77075c576d4c
support for XML data representation of proof terms;
wenzelm
parents:
51700
diff
changeset
|
58 |
val no_thm_proofs: proof -> proof |
77075c576d4c
support for XML data representation of proof terms;
wenzelm
parents:
51700
diff
changeset
|
59 |
|
77075c576d4c
support for XML data representation of proof terms;
wenzelm
parents:
51700
diff
changeset
|
60 |
val encode: proof XML.Encode.T |
77075c576d4c
support for XML data representation of proof terms;
wenzelm
parents:
51700
diff
changeset
|
61 |
val encode_body: proof_body XML.Encode.T |
77075c576d4c
support for XML data representation of proof terms;
wenzelm
parents:
51700
diff
changeset
|
62 |
val decode: proof XML.Decode.T |
77075c576d4c
support for XML data representation of proof terms;
wenzelm
parents:
51700
diff
changeset
|
63 |
val decode_body: proof_body XML.Decode.T |
28803
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents:
28329
diff
changeset
|
64 |
|
70397 | 65 |
(*primitive operations*) |
52487
48bc24467008
backout dedd7952a62c: static "proofs" value within theory prevents later inferencing with different configuration;
wenzelm
parents:
52470
diff
changeset
|
66 |
val proofs_enabled: unit -> bool |
64568
a504a3dec35a
more careful derivation_closed / close_derivation;
wenzelm
parents:
64566
diff
changeset
|
67 |
val atomic_proof: proof -> bool |
a504a3dec35a
more careful derivation_closed / close_derivation;
wenzelm
parents:
64566
diff
changeset
|
68 |
val compact_proof: proof -> bool |
28803
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents:
28329
diff
changeset
|
69 |
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
|
70 |
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
|
71 |
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
|
72 |
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
|
73 |
val strip_combP: proof -> proof * proof list |
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents:
28329
diff
changeset
|
74 |
val strip_thm: 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
|
75 |
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
|
76 |
-> (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
|
77 |
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
|
78 |
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
|
79 |
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
|
80 |
val map_proof_types: (typ -> typ) -> proof -> proof |
28803
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents:
28329
diff
changeset
|
81 |
val fold_proof_terms: (term -> 'a -> 'a) -> (typ -> 'a -> 'a) -> proof -> 'a -> 'a |
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents:
28329
diff
changeset
|
82 |
val maxidx_proof: proof -> int -> int |
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents:
28329
diff
changeset
|
83 |
val size_of_proof: proof -> int |
70417 | 84 |
val change_types: typ list option -> proof -> proof |
28803
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents:
28329
diff
changeset
|
85 |
val prf_abstract_over: term -> proof -> proof |
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents:
28329
diff
changeset
|
86 |
val prf_incr_bv: int -> int -> int -> int -> proof -> proof |
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents:
28329
diff
changeset
|
87 |
val incr_pboundvars: int -> int -> proof -> proof |
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents:
28329
diff
changeset
|
88 |
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
|
89 |
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
|
90 |
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
|
91 |
val norm_proof: Envir.env -> proof -> proof |
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents:
28329
diff
changeset
|
92 |
val norm_proof': Envir.env -> proof -> proof |
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents:
28329
diff
changeset
|
93 |
val prf_subst_bounds: term list -> proof -> proof |
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents:
28329
diff
changeset
|
94 |
val prf_subst_pbounds: proof list -> proof -> proof |
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents:
28329
diff
changeset
|
95 |
val freeze_thaw_prf: proof -> proof * (proof -> proof) |
70388
e31271559de8
global declaration of abstract syntax for proof terms, with qualified names;
wenzelm
parents:
68068
diff
changeset
|
96 |
val proofT: typ |
e31271559de8
global declaration of abstract syntax for proof terms, with qualified names;
wenzelm
parents:
68068
diff
changeset
|
97 |
val term_of_proof: proof -> term |
11519 | 98 |
|
70397 | 99 |
(*proof terms for specific inference rules*) |
28803
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents:
28329
diff
changeset
|
100 |
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
|
101 |
val implies_intr_proof': term -> proof -> proof |
28803
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents:
28329
diff
changeset
|
102 |
val forall_intr_proof: term -> string -> proof -> proof |
37231
e5419ecf92b7
- outer_constraints with original variable names, to ensure that argsP is consistent with args
berghofe
parents:
36883
diff
changeset
|
103 |
val forall_intr_proof': term -> proof -> proof |
28803
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents:
28329
diff
changeset
|
104 |
val varify_proof: term -> (string * sort) list -> proof -> proof |
36619
deadcd0ec431
renamed Proofterm.freezeT to Proofterm.legacy_freezeT (cf. 88756a5a92fc);
wenzelm
parents:
35851
diff
changeset
|
105 |
val legacy_freezeT: term -> proof -> proof |
28803
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents:
28329
diff
changeset
|
106 |
val rotate_proof: term list -> term -> int -> proof -> proof |
36742 | 107 |
val permute_prems_proof: term list -> int -> int -> proof -> proof |
19908 | 108 |
val generalize: string list * string list -> int -> proof -> proof |
28803
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents:
28329
diff
changeset
|
109 |
val instantiate: ((indexname * sort) * typ) list * ((indexname * typ) * term) list |
16880 | 110 |
-> proof -> proof |
28803
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents:
28329
diff
changeset
|
111 |
val lift_proof: term -> int -> term -> proof -> proof |
32027 | 112 |
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
|
113 |
val assumption_proof: term list -> term -> int -> proof -> proof |
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents:
28329
diff
changeset
|
114 |
val bicompose_proof: bool -> term list -> term list -> term list -> term option -> |
23296
25f28f9c28a3
Adapted Proofterm.bicompose_proof to Larry's changes in
berghofe
parents:
23178
diff
changeset
|
115 |
int -> int -> proof -> proof -> proof |
28803
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents:
28329
diff
changeset
|
116 |
val equality_axms: (string * term) list |
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents:
28329
diff
changeset
|
117 |
val reflexive_axm: proof |
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents:
28329
diff
changeset
|
118 |
val symmetric_axm: proof |
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents:
28329
diff
changeset
|
119 |
val transitive_axm: proof |
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents:
28329
diff
changeset
|
120 |
val equal_intr_axm: proof |
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents:
28329
diff
changeset
|
121 |
val equal_elim_axm: proof |
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents:
28329
diff
changeset
|
122 |
val abstract_rule_axm: proof |
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents:
28329
diff
changeset
|
123 |
val combination_axm: proof |
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents:
28329
diff
changeset
|
124 |
val reflexive: proof |
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents:
28329
diff
changeset
|
125 |
val symmetric: proof -> proof |
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents:
28329
diff
changeset
|
126 |
val transitive: term -> typ -> proof -> proof -> proof |
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents:
28329
diff
changeset
|
127 |
val abstract_rule: term -> string -> proof -> proof |
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents:
28329
diff
changeset
|
128 |
val combination: term -> term -> term -> term -> typ -> proof -> proof -> proof |
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents:
28329
diff
changeset
|
129 |
val equal_intr: term -> term -> proof -> proof -> proof |
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents:
28329
diff
changeset
|
130 |
val equal_elim: term -> term -> proof -> proof -> proof |
36621
2fd4e2c76636
proof terms for strip_shyps, based on the version by krauss/schropp with some notable differences:
wenzelm
parents:
36620
diff
changeset
|
131 |
val strip_shyps_proof: Sorts.algebra -> (typ * sort) list -> (typ * sort) list -> |
2fd4e2c76636
proof terms for strip_shyps, based on the version by krauss/schropp with some notable differences:
wenzelm
parents:
36620
diff
changeset
|
132 |
sort list -> proof -> proof |
36740 | 133 |
val classrel_proof: theory -> class * class -> proof |
134 |
val arity_proof: theory -> string * sort list * class -> proof |
|
36741
d65ed9d7275e
added of_sort_proof according to krauss/schropp, with slightly more direct canonical_instance;
wenzelm
parents:
36740
diff
changeset
|
135 |
val of_sort_proof: theory -> (typ * class -> proof) -> typ * sort -> proof list |
36740 | 136 |
val install_axclass_proofs: |
137 |
{classrel_proof: theory -> class * class -> proof, |
|
62897
8093203f0b89
prefer regular context update, to allow continuous editing of Pure;
wenzelm
parents:
62538
diff
changeset
|
138 |
arity_proof: theory -> string * sort list * class -> proof} -> theory -> theory |
28803
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents:
28329
diff
changeset
|
139 |
val axm_proof: string -> term -> proof |
52487
48bc24467008
backout dedd7952a62c: static "proofs" value within theory prevents later inferencing with different configuration;
wenzelm
parents:
52470
diff
changeset
|
140 |
val oracle_proof: string -> term -> oracle * proof |
63623 | 141 |
val shrink_proof: proof -> proof |
11519 | 142 |
|
70397 | 143 |
(*rewriting on proof terms*) |
28803
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents:
28329
diff
changeset
|
144 |
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
|
145 |
val add_prf_rproc: (typ list -> term option list -> proof -> (proof * proof) option) -> theory -> theory |
33722
e588744f14da
generalized procs for rewrite_proof: allow skeleton;
wenzelm
parents:
33522
diff
changeset
|
146 |
val no_skel: proof |
e588744f14da
generalized procs for rewrite_proof: allow skeleton;
wenzelm
parents:
33522
diff
changeset
|
147 |
val normal_skel: proof |
28803
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents:
28329
diff
changeset
|
148 |
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
|
149 |
(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
|
150 |
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
|
151 |
(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
|
152 |
val rew_proof: theory -> proof -> proof |
36877
7699f7fafde7
added Proofterm.get_name variants according to krauss/schropp;
wenzelm
parents:
36742
diff
changeset
|
153 |
|
70400
65bbef66e2ec
clarified treatment of unnamed PThm nodes (from close_derivation): retain full proof, publish when named;
wenzelm
parents:
70399
diff
changeset
|
154 |
val forall_intr_vfs: term -> term |
65bbef66e2ec
clarified treatment of unnamed PThm nodes (from close_derivation): retain full proof, publish when named;
wenzelm
parents:
70399
diff
changeset
|
155 |
val forall_intr_vfs_prf: term -> proof -> proof |
70419 | 156 |
val app_types: int -> term -> typ list -> proof -> proof |
70405 | 157 |
val clean_proof: theory -> proof -> proof |
70400
65bbef66e2ec
clarified treatment of unnamed PThm nodes (from close_derivation): retain full proof, publish when named;
wenzelm
parents:
70399
diff
changeset
|
158 |
|
70413 | 159 |
val proof_serial: unit -> proof_serial |
36877
7699f7fafde7
added Proofterm.get_name variants according to krauss/schropp;
wenzelm
parents:
36742
diff
changeset
|
160 |
val fulfill_norm_proof: theory -> (serial * proof_body) list -> proof_body -> proof_body |
36882
f33760bb8ca0
conditionally unconstrain thm proofs -- loosely based on the version by krauss/schropp;
wenzelm
parents:
36880
diff
changeset
|
161 |
val thm_proof: theory -> string -> sort list -> term list -> term -> |
36877
7699f7fafde7
added Proofterm.get_name variants according to krauss/schropp;
wenzelm
parents:
36742
diff
changeset
|
162 |
(serial * proof_body future) list -> proof_body -> pthm * proof |
36883
4ed0d72def50
added Proofterm.unconstrain_thm_proof for Thm.unconstrainT -- loosely based on the version by krauss/schropp;
wenzelm
parents:
36882
diff
changeset
|
163 |
val unconstrain_thm_proof: theory -> sort list -> term -> |
4ed0d72def50
added Proofterm.unconstrain_thm_proof for Thm.unconstrainT -- loosely based on the version by krauss/schropp;
wenzelm
parents:
36882
diff
changeset
|
164 |
(serial * proof_body future) list -> proof_body -> pthm * proof |
37297 | 165 |
val get_name: sort list -> term list -> term -> proof -> string |
36877
7699f7fafde7
added Proofterm.get_name variants according to krauss/schropp;
wenzelm
parents:
36742
diff
changeset
|
166 |
val guess_name: proof -> string |
11519 | 167 |
end |
168 |
||
169 |
structure Proofterm : PROOFTERM = |
|
170 |
struct |
|
171 |
||
70397 | 172 |
(** datatype proof **) |
28803
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents:
28329
diff
changeset
|
173 |
|
70413 | 174 |
type proof_serial = int; |
175 |
||
11519 | 176 |
datatype proof = |
28803
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents:
28329
diff
changeset
|
177 |
MinProof |
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents:
28329
diff
changeset
|
178 |
| PBound of int |
11519 | 179 |
| Abst of string * typ option * proof |
180 |
| AbsP of string * term option * proof |
|
12497 | 181 |
| op % of proof * term option |
182 |
| op %% of proof * proof |
|
11519 | 183 |
| Hyp of term |
184 |
| PAxm of string * term * typ list option |
|
31943
5e960a0780a2
renamed inclass/Inclass to of_class/OfClass, in accordance to of_sort;
wenzelm
parents:
31903
diff
changeset
|
185 |
| OfClass of typ * class |
11519 | 186 |
| Oracle of string * term * typ list option |
70413 | 187 |
| PThm of proof_serial * ((string * term * typ list option * (proof -> proof)) * proof_body future) |
28803
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents:
28329
diff
changeset
|
188 |
and proof_body = PBody of |
39687 | 189 |
{oracles: (string * term) Ord_List.T, |
70413 | 190 |
thms: (proof_serial * thm_node) Ord_List.T, |
64573 | 191 |
proof: proof} |
64574
1134e4d5e5b7
consolidate nested thms with persistent result, for improved performance;
wenzelm
parents:
64573
diff
changeset
|
192 |
and thm_node = |
1134e4d5e5b7
consolidate nested thms with persistent result, for improved performance;
wenzelm
parents:
64573
diff
changeset
|
193 |
Thm_Node of {name: string, prop: term, body: proof_body future, consolidate: unit lazy}; |
11519 | 194 |
|
28815 | 195 |
type oracle = string * term; |
70413 | 196 |
type pthm = proof_serial * thm_node; |
28815 | 197 |
|
28803
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents:
28329
diff
changeset
|
198 |
fun proof_of (PBody {proof, ...}) = proof; |
32094
89b9210c7506
prefer simultaneous join -- for improved scheduling;
wenzelm
parents:
32057
diff
changeset
|
199 |
val join_proof = Future.join #> proof_of; |
17017 | 200 |
|
70396 | 201 |
fun map_proof_of f (PBody {oracles, thms, proof}) = |
202 |
PBody {oracles = oracles, thms = thms, proof = f proof}; |
|
203 |
||
64574
1134e4d5e5b7
consolidate nested thms with persistent result, for improved performance;
wenzelm
parents:
64573
diff
changeset
|
204 |
fun rep_thm_node (Thm_Node args) = args; |
1134e4d5e5b7
consolidate nested thms with persistent result, for improved performance;
wenzelm
parents:
64573
diff
changeset
|
205 |
val thm_node_name = #name o rep_thm_node; |
1134e4d5e5b7
consolidate nested thms with persistent result, for improved performance;
wenzelm
parents:
64573
diff
changeset
|
206 |
val thm_node_prop = #prop o rep_thm_node; |
1134e4d5e5b7
consolidate nested thms with persistent result, for improved performance;
wenzelm
parents:
64573
diff
changeset
|
207 |
val thm_node_body = #body o rep_thm_node; |
1134e4d5e5b7
consolidate nested thms with persistent result, for improved performance;
wenzelm
parents:
64573
diff
changeset
|
208 |
val thm_node_consolidate = #consolidate o rep_thm_node; |
64573 | 209 |
|
210 |
fun join_thms (thms: pthm list) = |
|
64574
1134e4d5e5b7
consolidate nested thms with persistent result, for improved performance;
wenzelm
parents:
64573
diff
changeset
|
211 |
Future.joins (map (thm_node_body o #2) thms); |
1134e4d5e5b7
consolidate nested thms with persistent result, for improved performance;
wenzelm
parents:
64573
diff
changeset
|
212 |
|
66168 | 213 |
val consolidate = |
214 |
maps (fn PBody {thms, ...} => map (thm_node_consolidate o #2) thms) |
|
67669 | 215 |
#> Lazy.consolidate #> map Lazy.force #> ignore; |
64574
1134e4d5e5b7
consolidate nested thms with persistent result, for improved performance;
wenzelm
parents:
64573
diff
changeset
|
216 |
|
1134e4d5e5b7
consolidate nested thms with persistent result, for improved performance;
wenzelm
parents:
64573
diff
changeset
|
217 |
fun make_thm_node name prop body = |
1134e4d5e5b7
consolidate nested thms with persistent result, for improved performance;
wenzelm
parents:
64573
diff
changeset
|
218 |
Thm_Node {name = name, prop = prop, body = body, |
1134e4d5e5b7
consolidate nested thms with persistent result, for improved performance;
wenzelm
parents:
64573
diff
changeset
|
219 |
consolidate = |
66167 | 220 |
Lazy.lazy_name "Proofterm.make_thm_node" (fn () => |
64574
1134e4d5e5b7
consolidate nested thms with persistent result, for improved performance;
wenzelm
parents:
64573
diff
changeset
|
221 |
let val PBody {thms, ...} = Future.join body |
66168 | 222 |
in consolidate (join_thms thms) end)}; |
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
|
223 |
|
17017 | 224 |
|
70397 | 225 |
(* proof atoms *) |
28803
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents:
28329
diff
changeset
|
226 |
|
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents:
28329
diff
changeset
|
227 |
fun fold_proof_atoms all f = |
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents:
28329
diff
changeset
|
228 |
let |
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents:
28329
diff
changeset
|
229 |
fun app (Abst (_, _, prf)) = app prf |
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents:
28329
diff
changeset
|
230 |
| app (AbsP (_, _, prf)) = app prf |
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents:
28329
diff
changeset
|
231 |
| app (prf % _) = app prf |
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents:
28329
diff
changeset
|
232 |
| app (prf1 %% prf2) = app prf1 #> app prf2 |
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents:
28329
diff
changeset
|
233 |
| app (prf as PThm (i, (_, body))) = (fn (x, seen) => |
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents:
28329
diff
changeset
|
234 |
if Inttab.defined seen i then (x, seen) |
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents:
28329
diff
changeset
|
235 |
else |
28815 | 236 |
let val (x', seen') = |
29635
31d14e9fa0da
proof_body: turned lazy into future -- ensures that body is fulfilled eventually, without explicit force;
wenzelm
parents:
29270
diff
changeset
|
237 |
(if all then app (join_proof body) else I) (x, Inttab.update (i, ()) seen) |
28815 | 238 |
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
|
239 |
| app prf = (fn (x, seen) => (f prf x, seen)); |
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents:
28329
diff
changeset
|
240 |
in fn prfs => fn x => #1 (fold app prfs (x, Inttab.empty)) end; |
19357
dade85a75c9f
Added alternative version of thms_of_proof that does not recursively
berghofe
parents:
19304
diff
changeset
|
241 |
|
30711 | 242 |
fun fold_body_thms f = |
243 |
let |
|
32726 | 244 |
fun app (PBody {thms, ...}) = |
64574
1134e4d5e5b7
consolidate nested thms with persistent result, for improved performance;
wenzelm
parents:
64573
diff
changeset
|
245 |
tap join_thms thms |> fold (fn (i, thm_node) => fn (x, seen) => |
32726 | 246 |
if Inttab.defined seen i then (x, seen) |
32094
89b9210c7506
prefer simultaneous join -- for improved scheduling;
wenzelm
parents:
32057
diff
changeset
|
247 |
else |
89b9210c7506
prefer simultaneous join -- for improved scheduling;
wenzelm
parents:
32057
diff
changeset
|
248 |
let |
64574
1134e4d5e5b7
consolidate nested thms with persistent result, for improved performance;
wenzelm
parents:
64573
diff
changeset
|
249 |
val name = thm_node_name thm_node; |
1134e4d5e5b7
consolidate nested thms with persistent result, for improved performance;
wenzelm
parents:
64573
diff
changeset
|
250 |
val prop = thm_node_prop thm_node; |
1134e4d5e5b7
consolidate nested thms with persistent result, for improved performance;
wenzelm
parents:
64573
diff
changeset
|
251 |
val body = Future.join (thm_node_body thm_node); |
1134e4d5e5b7
consolidate nested thms with persistent result, for improved performance;
wenzelm
parents:
64573
diff
changeset
|
252 |
val (x', seen') = app body (x, Inttab.update (i, ()) seen); |
1134e4d5e5b7
consolidate nested thms with persistent result, for improved performance;
wenzelm
parents:
64573
diff
changeset
|
253 |
in (f {serial = i, name = name, prop = prop, body = body} x', seen') end); |
32726 | 254 |
in fn bodies => fn x => #1 (fold app bodies (x, Inttab.empty)) end; |
30711 | 255 |
|
50126
3dec88149176
theorem status about oracles/futures is no longer printed by default;
wenzelm
parents:
45156
diff
changeset
|
256 |
fun peek_status bodies = |
30711 | 257 |
let |
258 |
fun status (PBody {oracles, thms, ...}) x = |
|
259 |
let |
|
260 |
val ((oracle, unfinished, failed), seen) = |
|
64574
1134e4d5e5b7
consolidate nested thms with persistent result, for improved performance;
wenzelm
parents:
64573
diff
changeset
|
261 |
(thms, x) |-> fold (fn (i, thm_node) => fn (st, seen) => |
30711 | 262 |
if Inttab.defined seen i then (st, seen) |
263 |
else |
|
264 |
let val seen' = Inttab.update (i, ()) seen in |
|
64574
1134e4d5e5b7
consolidate nested thms with persistent result, for improved performance;
wenzelm
parents:
64573
diff
changeset
|
265 |
(case Future.peek (thm_node_body thm_node) of |
43761
e72ba84ae58f
tuned signature -- corresponding to Scala version;
wenzelm
parents:
43329
diff
changeset
|
266 |
SOME (Exn.Res body') => status body' (st, seen') |
30711 | 267 |
| SOME (Exn.Exn _) => |
268 |
let val (oracle, unfinished, _) = st |
|
269 |
in ((oracle, unfinished, true), seen') end |
|
270 |
| NONE => |
|
271 |
let val (oracle, _, failed) = st |
|
272 |
in ((oracle, true, failed), seen') end) |
|
273 |
end); |
|
274 |
in ((oracle orelse not (null oracles), unfinished, failed), seen) end; |
|
32057 | 275 |
val (oracle, unfinished, failed) = |
276 |
#1 (fold status bodies ((false, false, false), Inttab.empty)); |
|
30711 | 277 |
in {oracle = oracle, unfinished = unfinished, failed = failed} end; |
278 |
||
28803
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents:
28329
diff
changeset
|
279 |
|
28815 | 280 |
(* proof body *) |
28803
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents:
28329
diff
changeset
|
281 |
|
35408 | 282 |
val oracle_ord = prod_ord fast_string_ord Term_Ord.fast_term_ord; |
64573 | 283 |
fun thm_ord ((i, _): pthm, (j, _): pthm) = int_ord (j, i); |
28803
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents:
28329
diff
changeset
|
284 |
|
44334 | 285 |
val unions_oracles = Ord_List.unions oracle_ord; |
286 |
val unions_thms = Ord_List.unions thm_ord; |
|
30716
2ee706293eb5
removed misleading make_proof_body, make_oracles, make_thms, which essentially assume a *full* proof;
wenzelm
parents:
30712
diff
changeset
|
287 |
|
2ee706293eb5
removed misleading make_proof_body, make_oracles, make_thms, which essentially assume a *full* proof;
wenzelm
parents:
30712
diff
changeset
|
288 |
val all_oracles_of = |
2ee706293eb5
removed misleading make_proof_body, make_oracles, make_thms, which essentially assume a *full* proof;
wenzelm
parents:
30712
diff
changeset
|
289 |
let |
32057 | 290 |
fun collect (PBody {oracles, thms, ...}) = |
64574
1134e4d5e5b7
consolidate nested thms with persistent result, for improved performance;
wenzelm
parents:
64573
diff
changeset
|
291 |
tap join_thms thms |> fold (fn (i, thm_node) => fn (x, seen) => |
32057 | 292 |
if Inttab.defined seen i then (x, seen) |
293 |
else |
|
294 |
let |
|
64574
1134e4d5e5b7
consolidate nested thms with persistent result, for improved performance;
wenzelm
parents:
64573
diff
changeset
|
295 |
val body = Future.join (thm_node_body thm_node); |
1134e4d5e5b7
consolidate nested thms with persistent result, for improved performance;
wenzelm
parents:
64573
diff
changeset
|
296 |
val (x', seen') = collect body (x, Inttab.update (i, ()) seen); |
44334 | 297 |
in (if null oracles then x' else oracles :: x', seen') end); |
298 |
in fn body => unions_oracles (#1 (collect body ([], Inttab.empty))) end; |
|
30716
2ee706293eb5
removed misleading make_proof_body, make_oracles, make_thms, which essentially assume a *full* proof;
wenzelm
parents:
30712
diff
changeset
|
299 |
|
2ee706293eb5
removed misleading make_proof_body, make_oracles, make_thms, which essentially assume a *full* proof;
wenzelm
parents:
30712
diff
changeset
|
300 |
fun approximate_proof_body prf = |
28803
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents:
28329
diff
changeset
|
301 |
let |
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents:
28329
diff
changeset
|
302 |
val (oracles, thms) = fold_proof_atoms false |
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents:
28329
diff
changeset
|
303 |
(fn Oracle (s, prop, _) => apfst (cons (s, prop)) |
70412
64ead6de6212
defer rew_proof on unnamed PThm node as open_proof operation: significant performance improvement;
wenzelm
parents:
70409
diff
changeset
|
304 |
| PThm (i, ((name, prop, _, _), body)) => apsnd (cons (i, make_thm_node name prop body)) |
28803
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents:
28329
diff
changeset
|
305 |
| _ => I) [prf] ([], []); |
30716
2ee706293eb5
removed misleading make_proof_body, make_oracles, make_thms, which essentially assume a *full* proof;
wenzelm
parents:
30712
diff
changeset
|
306 |
in |
2ee706293eb5
removed misleading make_proof_body, make_oracles, make_thms, which essentially assume a *full* proof;
wenzelm
parents:
30712
diff
changeset
|
307 |
PBody |
39687 | 308 |
{oracles = Ord_List.make oracle_ord oracles, |
309 |
thms = Ord_List.make thm_ord thms, |
|
30716
2ee706293eb5
removed misleading make_proof_body, make_oracles, make_thms, which essentially assume a *full* proof;
wenzelm
parents:
30712
diff
changeset
|
310 |
proof = prf} |
2ee706293eb5
removed misleading make_proof_body, make_oracles, make_thms, which essentially assume a *full* proof;
wenzelm
parents:
30712
diff
changeset
|
311 |
end; |
11519 | 312 |
|
52424
77075c576d4c
support for XML data representation of proof terms;
wenzelm
parents:
51700
diff
changeset
|
313 |
val no_proof_body = PBody {oracles = [], thms = [], proof = MinProof}; |
77075c576d4c
support for XML data representation of proof terms;
wenzelm
parents:
51700
diff
changeset
|
314 |
val no_body = Future.value no_proof_body; |
77075c576d4c
support for XML data representation of proof terms;
wenzelm
parents:
51700
diff
changeset
|
315 |
|
77075c576d4c
support for XML data representation of proof terms;
wenzelm
parents:
51700
diff
changeset
|
316 |
fun no_thm_proofs (PThm (i, (a, _))) = PThm (i, (a, no_body)) |
77075c576d4c
support for XML data representation of proof terms;
wenzelm
parents:
51700
diff
changeset
|
317 |
| no_thm_proofs (Abst (x, T, prf)) = Abst (x, T, no_thm_proofs prf) |
77075c576d4c
support for XML data representation of proof terms;
wenzelm
parents:
51700
diff
changeset
|
318 |
| 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
|
319 |
| no_thm_proofs (prf % t) = no_thm_proofs prf % t |
77075c576d4c
support for XML data representation of proof terms;
wenzelm
parents:
51700
diff
changeset
|
320 |
| no_thm_proofs (prf1 %% prf2) = no_thm_proofs prf1 %% no_thm_proofs prf2 |
77075c576d4c
support for XML data representation of proof terms;
wenzelm
parents:
51700
diff
changeset
|
321 |
| no_thm_proofs a = a; |
77075c576d4c
support for XML data representation of proof terms;
wenzelm
parents:
51700
diff
changeset
|
322 |
|
77075c576d4c
support for XML data representation of proof terms;
wenzelm
parents:
51700
diff
changeset
|
323 |
|
70397 | 324 |
|
325 |
(** XML data representation **) |
|
52424
77075c576d4c
support for XML data representation of proof terms;
wenzelm
parents:
51700
diff
changeset
|
326 |
|
77075c576d4c
support for XML data representation of proof terms;
wenzelm
parents:
51700
diff
changeset
|
327 |
(* encode *) |
77075c576d4c
support for XML data representation of proof terms;
wenzelm
parents:
51700
diff
changeset
|
328 |
|
77075c576d4c
support for XML data representation of proof terms;
wenzelm
parents:
51700
diff
changeset
|
329 |
local |
77075c576d4c
support for XML data representation of proof terms;
wenzelm
parents:
51700
diff
changeset
|
330 |
|
77075c576d4c
support for XML data representation of proof terms;
wenzelm
parents:
51700
diff
changeset
|
331 |
open XML.Encode Term_XML.Encode; |
77075c576d4c
support for XML data representation of proof terms;
wenzelm
parents:
51700
diff
changeset
|
332 |
|
77075c576d4c
support for XML data representation of proof terms;
wenzelm
parents:
51700
diff
changeset
|
333 |
fun proof prf = prf |> variant |
77075c576d4c
support for XML data representation of proof terms;
wenzelm
parents:
51700
diff
changeset
|
334 |
[fn MinProof => ([], []), |
77075c576d4c
support for XML data representation of proof terms;
wenzelm
parents:
51700
diff
changeset
|
335 |
fn PBound a => ([int_atom a], []), |
77075c576d4c
support for XML data representation of proof terms;
wenzelm
parents:
51700
diff
changeset
|
336 |
fn Abst (a, b, c) => ([a], pair (option typ) proof (b, c)), |
77075c576d4c
support for XML data representation of proof terms;
wenzelm
parents:
51700
diff
changeset
|
337 |
fn AbsP (a, b, c) => ([a], pair (option term) proof (b, c)), |
77075c576d4c
support for XML data representation of proof terms;
wenzelm
parents:
51700
diff
changeset
|
338 |
fn a % b => ([], pair proof (option term) (a, b)), |
77075c576d4c
support for XML data representation of proof terms;
wenzelm
parents:
51700
diff
changeset
|
339 |
fn a %% b => ([], pair proof proof (a, b)), |
77075c576d4c
support for XML data representation of proof terms;
wenzelm
parents:
51700
diff
changeset
|
340 |
fn Hyp a => ([], term a), |
77075c576d4c
support for XML data representation of proof terms;
wenzelm
parents:
51700
diff
changeset
|
341 |
fn PAxm (a, b, c) => ([a], pair term (option (list typ)) (b, c)), |
77075c576d4c
support for XML data representation of proof terms;
wenzelm
parents:
51700
diff
changeset
|
342 |
fn OfClass (a, b) => ([b], typ a), |
77075c576d4c
support for XML data representation of proof terms;
wenzelm
parents:
51700
diff
changeset
|
343 |
fn Oracle (a, b, c) => ([a], pair term (option (list typ)) (b, c)), |
70412
64ead6de6212
defer rew_proof on unnamed PThm node as open_proof operation: significant performance improvement;
wenzelm
parents:
70409
diff
changeset
|
344 |
fn PThm (a, ((b, c, d, open_proof), body)) => |
64ead6de6212
defer rew_proof on unnamed PThm node as open_proof operation: significant performance improvement;
wenzelm
parents:
70409
diff
changeset
|
345 |
([int_atom a, b], triple term (option (list typ)) proof_body |
64ead6de6212
defer rew_proof on unnamed PThm node as open_proof operation: significant performance improvement;
wenzelm
parents:
70409
diff
changeset
|
346 |
(c, d, map_proof_of open_proof (Future.join body)))] |
52424
77075c576d4c
support for XML data representation of proof terms;
wenzelm
parents:
51700
diff
changeset
|
347 |
and proof_body (PBody {oracles, thms, proof = prf}) = |
77075c576d4c
support for XML data representation of proof terms;
wenzelm
parents:
51700
diff
changeset
|
348 |
triple (list (pair string term)) (list pthm) proof (oracles, thms, prf) |
64574
1134e4d5e5b7
consolidate nested thms with persistent result, for improved performance;
wenzelm
parents:
64573
diff
changeset
|
349 |
and pthm (a, thm_node) = |
1134e4d5e5b7
consolidate nested thms with persistent result, for improved performance;
wenzelm
parents:
64573
diff
changeset
|
350 |
pair int (triple string term proof_body) |
1134e4d5e5b7
consolidate nested thms with persistent result, for improved performance;
wenzelm
parents:
64573
diff
changeset
|
351 |
(a, (thm_node_name thm_node, thm_node_prop thm_node, Future.join (thm_node_body thm_node))); |
52424
77075c576d4c
support for XML data representation of proof terms;
wenzelm
parents:
51700
diff
changeset
|
352 |
|
77075c576d4c
support for XML data representation of proof terms;
wenzelm
parents:
51700
diff
changeset
|
353 |
in |
77075c576d4c
support for XML data representation of proof terms;
wenzelm
parents:
51700
diff
changeset
|
354 |
|
77075c576d4c
support for XML data representation of proof terms;
wenzelm
parents:
51700
diff
changeset
|
355 |
val encode = proof; |
77075c576d4c
support for XML data representation of proof terms;
wenzelm
parents:
51700
diff
changeset
|
356 |
val encode_body = proof_body; |
77075c576d4c
support for XML data representation of proof terms;
wenzelm
parents:
51700
diff
changeset
|
357 |
|
77075c576d4c
support for XML data representation of proof terms;
wenzelm
parents:
51700
diff
changeset
|
358 |
end; |
77075c576d4c
support for XML data representation of proof terms;
wenzelm
parents:
51700
diff
changeset
|
359 |
|
77075c576d4c
support for XML data representation of proof terms;
wenzelm
parents:
51700
diff
changeset
|
360 |
|
77075c576d4c
support for XML data representation of proof terms;
wenzelm
parents:
51700
diff
changeset
|
361 |
(* decode *) |
77075c576d4c
support for XML data representation of proof terms;
wenzelm
parents:
51700
diff
changeset
|
362 |
|
77075c576d4c
support for XML data representation of proof terms;
wenzelm
parents:
51700
diff
changeset
|
363 |
local |
77075c576d4c
support for XML data representation of proof terms;
wenzelm
parents:
51700
diff
changeset
|
364 |
|
77075c576d4c
support for XML data representation of proof terms;
wenzelm
parents:
51700
diff
changeset
|
365 |
open XML.Decode Term_XML.Decode; |
77075c576d4c
support for XML data representation of proof terms;
wenzelm
parents:
51700
diff
changeset
|
366 |
|
77075c576d4c
support for XML data representation of proof terms;
wenzelm
parents:
51700
diff
changeset
|
367 |
fun proof prf = prf |> variant |
77075c576d4c
support for XML data representation of proof terms;
wenzelm
parents:
51700
diff
changeset
|
368 |
[fn ([], []) => MinProof, |
77075c576d4c
support for XML data representation of proof terms;
wenzelm
parents:
51700
diff
changeset
|
369 |
fn ([a], []) => PBound (int_atom a), |
77075c576d4c
support for XML data representation of proof terms;
wenzelm
parents:
51700
diff
changeset
|
370 |
fn ([a], b) => let val (c, d) = pair (option typ) proof b in Abst (a, c, d) end, |
77075c576d4c
support for XML data representation of proof terms;
wenzelm
parents:
51700
diff
changeset
|
371 |
fn ([a], b) => let val (c, d) = pair (option term) proof b in AbsP (a, c, d) end, |
77075c576d4c
support for XML data representation of proof terms;
wenzelm
parents:
51700
diff
changeset
|
372 |
fn ([], a) => op % (pair proof (option term) a), |
77075c576d4c
support for XML data representation of proof terms;
wenzelm
parents:
51700
diff
changeset
|
373 |
fn ([], a) => op %% (pair proof proof a), |
77075c576d4c
support for XML data representation of proof terms;
wenzelm
parents:
51700
diff
changeset
|
374 |
fn ([], a) => Hyp (term a), |
77075c576d4c
support for XML data representation of proof terms;
wenzelm
parents:
51700
diff
changeset
|
375 |
fn ([a], b) => let val (c, d) = pair term (option (list typ)) b in PAxm (a, c, d) end, |
77075c576d4c
support for XML data representation of proof terms;
wenzelm
parents:
51700
diff
changeset
|
376 |
fn ([b], a) => OfClass (typ a, b), |
77075c576d4c
support for XML data representation of proof terms;
wenzelm
parents:
51700
diff
changeset
|
377 |
fn ([a], b) => let val (c, d) = pair term (option (list typ)) b in Oracle (a, c, d) end, |
77075c576d4c
support for XML data representation of proof terms;
wenzelm
parents:
51700
diff
changeset
|
378 |
fn ([a, b], c) => |
77075c576d4c
support for XML data representation of proof terms;
wenzelm
parents:
51700
diff
changeset
|
379 |
let val (d, e, f) = triple term (option (list typ)) proof_body c |
70412
64ead6de6212
defer rew_proof on unnamed PThm node as open_proof operation: significant performance improvement;
wenzelm
parents:
70409
diff
changeset
|
380 |
in PThm (int_atom a, ((b, d, e, I), Future.value f)) end] |
52424
77075c576d4c
support for XML data representation of proof terms;
wenzelm
parents:
51700
diff
changeset
|
381 |
and proof_body x = |
77075c576d4c
support for XML data representation of proof terms;
wenzelm
parents:
51700
diff
changeset
|
382 |
let val (a, b, c) = triple (list (pair string term)) (list pthm) proof x |
77075c576d4c
support for XML data representation of proof terms;
wenzelm
parents:
51700
diff
changeset
|
383 |
in PBody {oracles = a, thms = b, proof = c} end |
77075c576d4c
support for XML data representation of proof terms;
wenzelm
parents:
51700
diff
changeset
|
384 |
and pthm x = |
77075c576d4c
support for XML data representation of proof terms;
wenzelm
parents:
51700
diff
changeset
|
385 |
let val (a, (b, c, d)) = pair int (triple string term proof_body) x |
64574
1134e4d5e5b7
consolidate nested thms with persistent result, for improved performance;
wenzelm
parents:
64573
diff
changeset
|
386 |
in (a, make_thm_node b c (Future.value d)) end; |
52424
77075c576d4c
support for XML data representation of proof terms;
wenzelm
parents:
51700
diff
changeset
|
387 |
|
77075c576d4c
support for XML data representation of proof terms;
wenzelm
parents:
51700
diff
changeset
|
388 |
in |
77075c576d4c
support for XML data representation of proof terms;
wenzelm
parents:
51700
diff
changeset
|
389 |
|
77075c576d4c
support for XML data representation of proof terms;
wenzelm
parents:
51700
diff
changeset
|
390 |
val decode = proof; |
77075c576d4c
support for XML data representation of proof terms;
wenzelm
parents:
51700
diff
changeset
|
391 |
val decode_body = proof_body; |
77075c576d4c
support for XML data representation of proof terms;
wenzelm
parents:
51700
diff
changeset
|
392 |
|
77075c576d4c
support for XML data representation of proof terms;
wenzelm
parents:
51700
diff
changeset
|
393 |
end; |
77075c576d4c
support for XML data representation of proof terms;
wenzelm
parents:
51700
diff
changeset
|
394 |
|
28803
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents:
28329
diff
changeset
|
395 |
|
70397 | 396 |
(** proof objects with different levels of detail **) |
11519 | 397 |
|
64568
a504a3dec35a
more careful derivation_closed / close_derivation;
wenzelm
parents:
64566
diff
changeset
|
398 |
fun atomic_proof prf = |
a504a3dec35a
more careful derivation_closed / close_derivation;
wenzelm
parents:
64566
diff
changeset
|
399 |
(case prf of |
a504a3dec35a
more careful derivation_closed / close_derivation;
wenzelm
parents:
64566
diff
changeset
|
400 |
Abst _ => false |
a504a3dec35a
more careful derivation_closed / close_derivation;
wenzelm
parents:
64566
diff
changeset
|
401 |
| AbsP _ => false |
a504a3dec35a
more careful derivation_closed / close_derivation;
wenzelm
parents:
64566
diff
changeset
|
402 |
| op % _ => false |
a504a3dec35a
more careful derivation_closed / close_derivation;
wenzelm
parents:
64566
diff
changeset
|
403 |
| op %% _ => false |
70402
29d81b53c40b
treat MinProof like Promise before 725438ceae7c, e.g. relevant for performance of session Corec (due to Thm.derivation_closed/close_derivation);
wenzelm
parents:
70400
diff
changeset
|
404 |
| MinProof => false |
64568
a504a3dec35a
more careful derivation_closed / close_derivation;
wenzelm
parents:
64566
diff
changeset
|
405 |
| _ => true); |
a504a3dec35a
more careful derivation_closed / close_derivation;
wenzelm
parents:
64566
diff
changeset
|
406 |
|
a504a3dec35a
more careful derivation_closed / close_derivation;
wenzelm
parents:
64566
diff
changeset
|
407 |
fun compact_proof (prf % _) = compact_proof prf |
a504a3dec35a
more careful derivation_closed / close_derivation;
wenzelm
parents:
64566
diff
changeset
|
408 |
| compact_proof (prf1 %% prf2) = atomic_proof prf2 andalso compact_proof prf1 |
a504a3dec35a
more careful derivation_closed / close_derivation;
wenzelm
parents:
64566
diff
changeset
|
409 |
| compact_proof prf = atomic_proof prf; |
a504a3dec35a
more careful derivation_closed / close_derivation;
wenzelm
parents:
64566
diff
changeset
|
410 |
|
15531 | 411 |
fun (prf %> t) = prf % SOME t; |
11519 | 412 |
|
15570 | 413 |
val proof_combt = Library.foldl (op %>); |
414 |
val proof_combt' = Library.foldl (op %); |
|
415 |
val proof_combP = Library.foldl (op %%); |
|
11519 | 416 |
|
21646
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
wenzelm
parents:
20853
diff
changeset
|
417 |
fun strip_combt prf = |
11615 | 418 |
let fun stripc (prf % t, ts) = stripc (prf, t::ts) |
21646
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
wenzelm
parents:
20853
diff
changeset
|
419 |
| stripc x = x |
11519 | 420 |
in stripc (prf, []) end; |
421 |
||
21646
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
wenzelm
parents:
20853
diff
changeset
|
422 |
fun strip_combP prf = |
11615 | 423 |
let fun stripc (prf %% prf', prfs) = stripc (prf, prf'::prfs) |
11519 | 424 |
| stripc x = x |
425 |
in stripc (prf, []) end; |
|
426 |
||
28803
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents:
28329
diff
changeset
|
427 |
fun strip_thm (body as PBody {proof, ...}) = |
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents:
28329
diff
changeset
|
428 |
(case strip_combt (fst (strip_combP proof)) of |
29635
31d14e9fa0da
proof_body: turned lazy into future -- ensures that body is fulfilled eventually, without explicit force;
wenzelm
parents:
29270
diff
changeset
|
429 |
(PThm (_, (_, body')), _) => Future.join body' |
28803
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents:
28329
diff
changeset
|
430 |
| _ => body); |
11519 | 431 |
|
63857 | 432 |
val mk_Abst = fold_rev (fn (s, _: typ) => fn prf => Abst (s, NONE, prf)); |
15531 | 433 |
fun mk_AbsP (i, prf) = funpow i (fn prf => AbsP ("H", NONE, prf)) prf; |
11519 | 434 |
|
36620
e6bb250402b5
simplified/unified fundamental operations on types/terms/proofterms -- prefer Same.operation over "option" variant;
wenzelm
parents:
36619
diff
changeset
|
435 |
fun map_proof_same term typ ofclass = |
20000 | 436 |
let |
32024 | 437 |
val typs = Same.map typ; |
20000 | 438 |
|
32024 | 439 |
fun proof (Abst (s, T, prf)) = |
440 |
(Abst (s, Same.map_option typ T, Same.commit proof prf) |
|
441 |
handle Same.SAME => Abst (s, T, proof prf)) |
|
442 |
| proof (AbsP (s, t, prf)) = |
|
443 |
(AbsP (s, Same.map_option term t, Same.commit proof prf) |
|
444 |
handle Same.SAME => AbsP (s, t, proof prf)) |
|
445 |
| proof (prf % t) = |
|
446 |
(proof prf % Same.commit (Same.map_option term) t |
|
447 |
handle Same.SAME => prf % Same.map_option term t) |
|
448 |
| proof (prf1 %% prf2) = |
|
449 |
(proof prf1 %% Same.commit proof prf2 |
|
450 |
handle Same.SAME => prf1 %% proof prf2) |
|
451 |
| proof (PAxm (a, prop, SOME Ts)) = PAxm (a, prop, SOME (typs Ts)) |
|
36620
e6bb250402b5
simplified/unified fundamental operations on types/terms/proofterms -- prefer Same.operation over "option" variant;
wenzelm
parents:
36619
diff
changeset
|
452 |
| proof (OfClass T_c) = ofclass T_c |
32024 | 453 |
| proof (Oracle (a, prop, SOME Ts)) = Oracle (a, prop, SOME (typs Ts)) |
70412
64ead6de6212
defer rew_proof on unnamed PThm node as open_proof operation: significant performance improvement;
wenzelm
parents:
70409
diff
changeset
|
454 |
| proof (PThm (i, ((a, prop, SOME Ts, open_proof), body))) = |
64ead6de6212
defer rew_proof on unnamed PThm node as open_proof operation: significant performance improvement;
wenzelm
parents:
70409
diff
changeset
|
455 |
PThm (i, ((a, prop, SOME (typs Ts), open_proof), body)) |
32024 | 456 |
| 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
|
457 |
in proof end; |
e6bb250402b5
simplified/unified fundamental operations on types/terms/proofterms -- prefer Same.operation over "option" variant;
wenzelm
parents:
36619
diff
changeset
|
458 |
|
e6bb250402b5
simplified/unified fundamental operations on types/terms/proofterms -- prefer Same.operation over "option" variant;
wenzelm
parents:
36619
diff
changeset
|
459 |
fun map_proof_terms_same term typ = map_proof_same term typ (fn (T, c) => OfClass (typ T, c)); |
e6bb250402b5
simplified/unified fundamental operations on types/terms/proofterms -- prefer Same.operation over "option" variant;
wenzelm
parents:
36619
diff
changeset
|
460 |
fun map_proof_types_same typ = map_proof_terms_same (Term_Subst.map_types_same typ) typ; |
20000 | 461 |
|
22662 | 462 |
fun same eq f x = |
11715
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents:
11652
diff
changeset
|
463 |
let val x' = f x |
32019 | 464 |
in if eq (x, x') then raise Same.SAME else x' end; |
11715
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents:
11652
diff
changeset
|
465 |
|
36620
e6bb250402b5
simplified/unified fundamental operations on types/terms/proofterms -- prefer Same.operation over "option" variant;
wenzelm
parents:
36619
diff
changeset
|
466 |
fun map_proof_terms f g = Same.commit (map_proof_terms_same (same (op =) f) (same (op =) g)); |
e6bb250402b5
simplified/unified fundamental operations on types/terms/proofterms -- prefer Same.operation over "option" variant;
wenzelm
parents:
36619
diff
changeset
|
467 |
fun map_proof_types f = Same.commit (map_proof_types_same (same (op =) f)); |
11519 | 468 |
|
20147 | 469 |
fun fold_proof_terms f g (Abst (_, SOME T, prf)) = g T #> fold_proof_terms f g prf |
470 |
| fold_proof_terms f g (Abst (_, NONE, prf)) = fold_proof_terms f g prf |
|
471 |
| fold_proof_terms f g (AbsP (_, SOME t, prf)) = f t #> fold_proof_terms f g prf |
|
472 |
| fold_proof_terms f g (AbsP (_, NONE, prf)) = fold_proof_terms f g prf |
|
473 |
| fold_proof_terms f g (prf % SOME t) = fold_proof_terms f g prf #> f t |
|
474 |
| fold_proof_terms f g (prf % NONE) = fold_proof_terms f g prf |
|
475 |
| fold_proof_terms f g (prf1 %% prf2) = |
|
476 |
fold_proof_terms f g prf1 #> fold_proof_terms f g prf2 |
|
20159 | 477 |
| fold_proof_terms _ g (PAxm (_, _, SOME Ts)) = fold g Ts |
31943
5e960a0780a2
renamed inclass/Inclass to of_class/OfClass, in accordance to of_sort;
wenzelm
parents:
31903
diff
changeset
|
478 |
| fold_proof_terms _ g (OfClass (T, _)) = g T |
28828
c25dd83a6f9f
unified treatment of PAxm/Oracle/Promise in basic proof term operations;
wenzelm
parents:
28815
diff
changeset
|
479 |
| fold_proof_terms _ g (Oracle (_, _, SOME Ts)) = fold g Ts |
70412
64ead6de6212
defer rew_proof on unnamed PThm node as open_proof operation: significant performance improvement;
wenzelm
parents:
70409
diff
changeset
|
480 |
| fold_proof_terms _ g (PThm (_, ((_, _, SOME Ts, _), _))) = fold g Ts |
20147 | 481 |
| fold_proof_terms _ _ _ = I; |
11519 | 482 |
|
20300 | 483 |
fun maxidx_proof prf = fold_proof_terms Term.maxidx_term Term.maxidx_typ prf; |
12868 | 484 |
|
13744 | 485 |
fun size_of_proof (Abst (_, _, prf)) = 1 + size_of_proof prf |
63857 | 486 |
| size_of_proof (AbsP (_, _, prf)) = 1 + size_of_proof prf |
28803
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents:
28329
diff
changeset
|
487 |
| size_of_proof (prf % _) = 1 + size_of_proof prf |
13744 | 488 |
| size_of_proof (prf1 %% prf2) = size_of_proof prf1 + size_of_proof prf2 |
489 |
| size_of_proof _ = 1; |
|
490 |
||
70417 | 491 |
fun change_types types (PAxm (name, prop, _)) = PAxm (name, prop, types) |
492 |
| change_types (SOME [T]) (OfClass (_, c)) = OfClass (T, c) |
|
493 |
| change_types types (Oracle (name, prop, _)) = Oracle (name, prop, types) |
|
494 |
| change_types types (PThm (i, ((name, prop, _, open_proof), body))) = |
|
495 |
PThm (i, ((name, prop, types, open_proof), body)) |
|
496 |
| change_types _ prf = prf; |
|
12907
27e6d344d724
New function change_type for changing type assignments of theorems,
berghofe
parents:
12890
diff
changeset
|
497 |
|
11519 | 498 |
|
70397 | 499 |
(* utilities *) |
11519 | 500 |
|
501 |
fun strip_abs (_::Ts) (Abs (_, _, t)) = strip_abs Ts t |
|
502 |
| strip_abs _ t = t; |
|
503 |
||
15570 | 504 |
fun mk_abs Ts t = Library.foldl (fn (t', T) => Abs ("", T, t')) (t, Ts); |
11519 | 505 |
|
506 |
||
21646
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
wenzelm
parents:
20853
diff
changeset
|
507 |
(*Abstraction of a proof term over its occurrences of v, |
11519 | 508 |
which must contain no loose bound variables. |
509 |
The resulting proof term is ready to become the body of an Abst.*) |
|
510 |
||
511 |
fun prf_abstract_over v = |
|
512 |
let |
|
11715
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents:
11652
diff
changeset
|
513 |
fun abst' lev u = if v aconv u then Bound lev else |
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents:
11652
diff
changeset
|
514 |
(case u of |
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents:
11652
diff
changeset
|
515 |
Abs (a, T, t) => Abs (a, T, abst' (lev + 1) t) |
32019 | 516 |
| f $ t => (abst' lev f $ absth' lev t handle Same.SAME => f $ abst' lev t) |
517 |
| _ => raise Same.SAME) |
|
518 |
and absth' lev t = (abst' lev t handle Same.SAME => t); |
|
11519 | 519 |
|
11715
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents:
11652
diff
changeset
|
520 |
fun abst lev (AbsP (a, t, prf)) = |
32024 | 521 |
(AbsP (a, Same.map_option (abst' lev) t, absth lev prf) |
32019 | 522 |
handle Same.SAME => AbsP (a, t, abst lev prf)) |
11715
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents:
11652
diff
changeset
|
523 |
| abst lev (Abst (a, T, prf)) = Abst (a, T, abst (lev + 1) prf) |
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents:
11652
diff
changeset
|
524 |
| abst lev (prf1 %% prf2) = (abst lev prf1 %% absth lev prf2 |
32019 | 525 |
handle Same.SAME => prf1 %% abst lev prf2) |
15570 | 526 |
| abst lev (prf % t) = (abst lev prf % Option.map (absth' lev) t |
32024 | 527 |
handle Same.SAME => prf % Same.map_option (abst' lev) t) |
32019 | 528 |
| abst _ _ = raise Same.SAME |
32024 | 529 |
and absth lev prf = (abst lev prf handle Same.SAME => prf); |
11519 | 530 |
|
11715
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents:
11652
diff
changeset
|
531 |
in absth 0 end; |
11519 | 532 |
|
533 |
||
534 |
(*increments a proof term's non-local bound variables |
|
535 |
required when moving a proof term within abstractions |
|
536 |
inc is increment for bound variables |
|
537 |
lev is level at which a bound variable is considered 'loose'*) |
|
538 |
||
539 |
fun incr_bv' inct tlev t = incr_bv (inct, tlev, t); |
|
540 |
||
63857 | 541 |
fun prf_incr_bv' incP _ Plev _ (PBound i) = |
32019 | 542 |
if i >= Plev then PBound (i+incP) else raise Same.SAME |
11715
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents:
11652
diff
changeset
|
543 |
| prf_incr_bv' incP inct Plev tlev (AbsP (a, t, body)) = |
32024 | 544 |
(AbsP (a, Same.map_option (same (op =) (incr_bv' inct tlev)) t, |
32019 | 545 |
prf_incr_bv incP inct (Plev+1) tlev body) handle Same.SAME => |
11715
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents:
11652
diff
changeset
|
546 |
AbsP (a, t, prf_incr_bv' incP inct (Plev+1) tlev body)) |
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents:
11652
diff
changeset
|
547 |
| prf_incr_bv' incP inct Plev tlev (Abst (a, T, body)) = |
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents:
11652
diff
changeset
|
548 |
Abst (a, T, prf_incr_bv' incP inct Plev (tlev+1) body) |
21646
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
wenzelm
parents:
20853
diff
changeset
|
549 |
| prf_incr_bv' incP inct Plev tlev (prf %% prf') = |
11715
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents:
11652
diff
changeset
|
550 |
(prf_incr_bv' incP inct Plev tlev prf %% prf_incr_bv incP inct Plev tlev prf' |
32019 | 551 |
handle Same.SAME => prf %% prf_incr_bv' incP inct Plev tlev prf') |
21646
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
wenzelm
parents:
20853
diff
changeset
|
552 |
| prf_incr_bv' incP inct Plev tlev (prf % t) = |
15570 | 553 |
(prf_incr_bv' incP inct Plev tlev prf % Option.map (incr_bv' inct tlev) t |
32024 | 554 |
handle Same.SAME => prf % Same.map_option (same (op =) (incr_bv' inct tlev)) t) |
32019 | 555 |
| prf_incr_bv' _ _ _ _ _ = raise Same.SAME |
11715
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents:
11652
diff
changeset
|
556 |
and prf_incr_bv incP inct Plev tlev prf = |
32019 | 557 |
(prf_incr_bv' incP inct Plev tlev prf handle Same.SAME => prf); |
11519 | 558 |
|
559 |
fun incr_pboundvars 0 0 prf = prf |
|
560 |
| incr_pboundvars incP inct prf = prf_incr_bv incP inct 0 0 prf; |
|
561 |
||
562 |
||
11615 | 563 |
fun prf_loose_bvar1 (prf1 %% prf2) k = prf_loose_bvar1 prf1 k orelse prf_loose_bvar1 prf2 k |
15531 | 564 |
| prf_loose_bvar1 (prf % SOME t) k = prf_loose_bvar1 prf k orelse loose_bvar1 (t, k) |
565 |
| prf_loose_bvar1 (_ % NONE) _ = true |
|
566 |
| prf_loose_bvar1 (AbsP (_, SOME t, prf)) k = loose_bvar1 (t, k) orelse prf_loose_bvar1 prf k |
|
63857 | 567 |
| prf_loose_bvar1 (AbsP (_, NONE, _)) _ = true |
11519 | 568 |
| prf_loose_bvar1 (Abst (_, _, prf)) k = prf_loose_bvar1 prf (k+1) |
569 |
| prf_loose_bvar1 _ _ = false; |
|
570 |
||
571 |
fun prf_loose_Pbvar1 (PBound i) k = i = k |
|
11615 | 572 |
| prf_loose_Pbvar1 (prf1 %% prf2) k = prf_loose_Pbvar1 prf1 k orelse prf_loose_Pbvar1 prf2 k |
573 |
| prf_loose_Pbvar1 (prf % _) k = prf_loose_Pbvar1 prf k |
|
11519 | 574 |
| prf_loose_Pbvar1 (AbsP (_, _, prf)) k = prf_loose_Pbvar1 prf (k+1) |
575 |
| prf_loose_Pbvar1 (Abst (_, _, prf)) k = prf_loose_Pbvar1 prf k |
|
576 |
| prf_loose_Pbvar1 _ _ = false; |
|
577 |
||
63857 | 578 |
fun prf_add_loose_bnos plev _ (PBound i) (is, js) = |
17492 | 579 |
if i < plev then (is, js) else (insert (op =) (i-plev) is, js) |
12279 | 580 |
| prf_add_loose_bnos plev tlev (prf1 %% prf2) p = |
581 |
prf_add_loose_bnos plev tlev prf2 |
|
582 |
(prf_add_loose_bnos plev tlev prf1 p) |
|
583 |
| prf_add_loose_bnos plev tlev (prf % opt) (is, js) = |
|
64566 | 584 |
prf_add_loose_bnos plev tlev prf |
585 |
(case opt of |
|
17492 | 586 |
NONE => (is, insert (op =) ~1 js) |
15531 | 587 |
| SOME t => (is, add_loose_bnos (t, tlev, js))) |
12279 | 588 |
| prf_add_loose_bnos plev tlev (AbsP (_, opt, prf)) (is, js) = |
64566 | 589 |
prf_add_loose_bnos (plev+1) tlev prf |
590 |
(case opt of |
|
17492 | 591 |
NONE => (is, insert (op =) ~1 js) |
15531 | 592 |
| SOME t => (is, add_loose_bnos (t, tlev, js))) |
12279 | 593 |
| prf_add_loose_bnos plev tlev (Abst (_, _, prf)) p = |
594 |
prf_add_loose_bnos plev (tlev+1) prf p |
|
595 |
| prf_add_loose_bnos _ _ _ _ = ([], []); |
|
596 |
||
11519 | 597 |
|
70397 | 598 |
(* substitutions *) |
11519 | 599 |
|
31977 | 600 |
fun del_conflicting_tvars envT T = Term_Subst.instantiateT |
19482
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
wenzelm
parents:
19357
diff
changeset
|
601 |
(map_filter (fn ixnS as (_, S) => |
26328 | 602 |
(Type.lookup envT ixnS; NONE) handle TYPE _ => |
44118
69e29cf993c0
avoid OldTerm operations -- with subtle changes of semantics;
wenzelm
parents:
44116
diff
changeset
|
603 |
SOME (ixnS, TFree ("'dummy", S))) (Term.add_tvarsT T [])) T; |
18316
4b62e0cb3aa8
Improved norm_proof to handle proofs containing term (type) variables
berghofe
parents:
18030
diff
changeset
|
604 |
|
31977 | 605 |
fun del_conflicting_vars env t = Term_Subst.instantiate |
19482
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
wenzelm
parents:
19357
diff
changeset
|
606 |
(map_filter (fn ixnS as (_, S) => |
32019 | 607 |
(Type.lookup (Envir.type_env env) ixnS; NONE) handle TYPE _ => |
44118
69e29cf993c0
avoid OldTerm operations -- with subtle changes of semantics;
wenzelm
parents:
44116
diff
changeset
|
608 |
SOME (ixnS, TFree ("'dummy", S))) (Term.add_tvars t []), |
69e29cf993c0
avoid OldTerm operations -- with subtle changes of semantics;
wenzelm
parents:
44116
diff
changeset
|
609 |
map_filter (fn (ixnT as (_, T)) => |
51700 | 610 |
(Envir.lookup env ixnT; NONE) handle TYPE _ => |
44118
69e29cf993c0
avoid OldTerm operations -- with subtle changes of semantics;
wenzelm
parents:
44116
diff
changeset
|
611 |
SOME (ixnT, Free ("dummy", T))) (Term.add_vars t [])) t; |
18316
4b62e0cb3aa8
Improved norm_proof to handle proofs containing term (type) variables
berghofe
parents:
18030
diff
changeset
|
612 |
|
11519 | 613 |
fun norm_proof env = |
614 |
let |
|
32019 | 615 |
val envT = Envir.type_env env; |
18316
4b62e0cb3aa8
Improved norm_proof to handle proofs containing term (type) variables
berghofe
parents:
18030
diff
changeset
|
616 |
fun msg s = warning ("type conflict in norm_proof:\n" ^ s); |
4b62e0cb3aa8
Improved norm_proof to handle proofs containing term (type) variables
berghofe
parents:
18030
diff
changeset
|
617 |
fun htype f t = f env t handle TYPE (s, _, _) => |
4b62e0cb3aa8
Improved norm_proof to handle proofs containing term (type) variables
berghofe
parents:
18030
diff
changeset
|
618 |
(msg s; f env (del_conflicting_vars env t)); |
4b62e0cb3aa8
Improved norm_proof to handle proofs containing term (type) variables
berghofe
parents:
18030
diff
changeset
|
619 |
fun htypeT f T = f envT T handle TYPE (s, _, _) => |
4b62e0cb3aa8
Improved norm_proof to handle proofs containing term (type) variables
berghofe
parents:
18030
diff
changeset
|
620 |
(msg s; f envT (del_conflicting_tvars envT T)); |
4b62e0cb3aa8
Improved norm_proof to handle proofs containing term (type) variables
berghofe
parents:
18030
diff
changeset
|
621 |
fun htypeTs f Ts = f envT Ts handle TYPE (s, _, _) => |
4b62e0cb3aa8
Improved norm_proof to handle proofs containing term (type) variables
berghofe
parents:
18030
diff
changeset
|
622 |
(msg s; f envT (map (del_conflicting_tvars envT) Ts)); |
32024 | 623 |
|
32019 | 624 |
fun norm (Abst (s, T, prf)) = |
32024 | 625 |
(Abst (s, Same.map_option (htypeT Envir.norm_type_same) T, Same.commit norm prf) |
32019 | 626 |
handle Same.SAME => Abst (s, T, norm prf)) |
627 |
| norm (AbsP (s, t, prf)) = |
|
32024 | 628 |
(AbsP (s, Same.map_option (htype Envir.norm_term_same) t, Same.commit norm prf) |
32019 | 629 |
handle Same.SAME => AbsP (s, t, norm prf)) |
630 |
| norm (prf % t) = |
|
631 |
(norm prf % Option.map (htype Envir.norm_term) t |
|
32024 | 632 |
handle Same.SAME => prf % Same.map_option (htype Envir.norm_term_same) t) |
32019 | 633 |
| norm (prf1 %% prf2) = |
634 |
(norm prf1 %% Same.commit norm prf2 |
|
635 |
handle Same.SAME => prf1 %% norm prf2) |
|
636 |
| norm (PAxm (s, prop, Ts)) = |
|
32024 | 637 |
PAxm (s, prop, Same.map_option (htypeTs Envir.norm_types_same) Ts) |
32019 | 638 |
| norm (OfClass (T, c)) = |
639 |
OfClass (htypeT Envir.norm_type_same T, c) |
|
640 |
| norm (Oracle (s, prop, Ts)) = |
|
32024 | 641 |
Oracle (s, prop, Same.map_option (htypeTs Envir.norm_types_same) Ts) |
70412
64ead6de6212
defer rew_proof on unnamed PThm node as open_proof operation: significant performance improvement;
wenzelm
parents:
70409
diff
changeset
|
642 |
| norm (PThm (i, ((s, t, Ts, open_proof), body))) = |
64ead6de6212
defer rew_proof on unnamed PThm node as open_proof operation: significant performance improvement;
wenzelm
parents:
70409
diff
changeset
|
643 |
PThm (i, ((s, t, Same.map_option (htypeTs Envir.norm_types_same) Ts, open_proof), body)) |
32019 | 644 |
| norm _ = raise Same.SAME; |
645 |
in Same.commit norm end; |
|
11519 | 646 |
|
28803
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents:
28329
diff
changeset
|
647 |
|
70397 | 648 |
(* remove some types in proof term (to save space) *) |
11519 | 649 |
|
650 |
fun remove_types (Abs (s, _, t)) = Abs (s, dummyT, remove_types t) |
|
651 |
| remove_types (t $ u) = remove_types t $ remove_types u |
|
652 |
| remove_types (Const (s, _)) = Const (s, dummyT) |
|
653 |
| remove_types t = t; |
|
654 |
||
32032 | 655 |
fun remove_types_env (Envir.Envir {maxidx, tenv, tyenv}) = |
39020 | 656 |
Envir.Envir {maxidx = maxidx, tenv = Vartab.map (K (apsnd remove_types)) tenv, tyenv = tyenv}; |
11519 | 657 |
|
658 |
fun norm_proof' env prf = norm_proof (remove_types_env env) prf; |
|
659 |
||
28803
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents:
28329
diff
changeset
|
660 |
|
70397 | 661 |
(* substitution of bound variables *) |
11519 | 662 |
|
663 |
fun prf_subst_bounds args prf = |
|
664 |
let |
|
665 |
val n = length args; |
|
666 |
fun subst' lev (Bound i) = |
|
32019 | 667 |
(if i<lev then raise Same.SAME (*var is locally bound*) |
30146 | 668 |
else incr_boundvars lev (nth args (i-lev)) |
43278 | 669 |
handle General.Subscript => Bound (i-n)) (*loose: change it*) |
11519 | 670 |
| subst' lev (Abs (a, T, body)) = Abs (a, T, subst' (lev+1) body) |
671 |
| subst' lev (f $ t) = (subst' lev f $ substh' lev t |
|
32019 | 672 |
handle Same.SAME => f $ subst' lev t) |
673 |
| subst' _ _ = raise Same.SAME |
|
674 |
and substh' lev t = (subst' lev t handle Same.SAME => t); |
|
11519 | 675 |
|
32057 | 676 |
fun subst lev (AbsP (a, t, body)) = |
677 |
(AbsP (a, Same.map_option (subst' lev) t, substh lev body) |
|
32019 | 678 |
handle Same.SAME => AbsP (a, t, subst lev body)) |
11519 | 679 |
| subst lev (Abst (a, T, body)) = Abst (a, T, subst (lev+1) body) |
11615 | 680 |
| subst lev (prf %% prf') = (subst lev prf %% substh lev prf' |
32019 | 681 |
handle Same.SAME => prf %% subst lev prf') |
15570 | 682 |
| subst lev (prf % t) = (subst lev prf % Option.map (substh' lev) t |
32024 | 683 |
handle Same.SAME => prf % Same.map_option (subst' lev) t) |
32019 | 684 |
| subst _ _ = raise Same.SAME |
32024 | 685 |
and substh lev prf = (subst lev prf handle Same.SAME => prf); |
64566 | 686 |
in (case args of [] => prf | _ => substh 0 prf) end; |
11519 | 687 |
|
688 |
fun prf_subst_pbounds args prf = |
|
689 |
let |
|
690 |
val n = length args; |
|
691 |
fun subst (PBound i) Plev tlev = |
|
32019 | 692 |
(if i < Plev then raise Same.SAME (*var is locally bound*) |
30146 | 693 |
else incr_pboundvars Plev tlev (nth args (i-Plev)) |
43278 | 694 |
handle General.Subscript => PBound (i-n) (*loose: change it*)) |
11519 | 695 |
| subst (AbsP (a, t, body)) Plev tlev = AbsP (a, t, subst body (Plev+1) tlev) |
696 |
| subst (Abst (a, T, body)) Plev tlev = Abst (a, T, subst body Plev (tlev+1)) |
|
11615 | 697 |
| subst (prf %% prf') Plev tlev = (subst prf Plev tlev %% substh prf' Plev tlev |
32019 | 698 |
handle Same.SAME => prf %% subst prf' Plev tlev) |
11615 | 699 |
| subst (prf % t) Plev tlev = subst prf Plev tlev % t |
63857 | 700 |
| subst _ _ _ = raise Same.SAME |
32019 | 701 |
and substh prf Plev tlev = (subst prf Plev tlev handle Same.SAME => prf) |
64566 | 702 |
in (case args of [] => prf | _ => substh prf 0 0) end; |
11519 | 703 |
|
704 |
||
70397 | 705 |
(* freezing and thawing of variables in proof terms *) |
11519 | 706 |
|
44101 | 707 |
local |
708 |
||
11519 | 709 |
fun frzT names = |
44101 | 710 |
map_type_tvar (fn (ixn, S) => TFree (the (AList.lookup (op =) names ixn), S)); |
11519 | 711 |
|
712 |
fun thawT names = |
|
44101 | 713 |
map_type_tfree (fn (a, S) => |
714 |
(case AList.lookup (op =) names a of |
|
715 |
NONE => TFree (a, S) |
|
716 |
| SOME ixn => TVar (ixn, S))); |
|
11519 | 717 |
|
718 |
fun freeze names names' (t $ u) = |
|
719 |
freeze names names' t $ freeze names names' u |
|
720 |
| freeze names names' (Abs (s, T, t)) = |
|
721 |
Abs (s, frzT names' T, freeze names names' t) |
|
63857 | 722 |
| freeze _ names' (Const (s, T)) = Const (s, frzT names' T) |
723 |
| freeze _ names' (Free (s, T)) = Free (s, frzT names' T) |
|
11519 | 724 |
| freeze names names' (Var (ixn, T)) = |
44101 | 725 |
Free (the (AList.lookup (op =) names ixn), frzT names' T) |
63857 | 726 |
| freeze _ _ t = t; |
11519 | 727 |
|
728 |
fun thaw names names' (t $ u) = |
|
729 |
thaw names names' t $ thaw names names' u |
|
730 |
| thaw names names' (Abs (s, T, t)) = |
|
731 |
Abs (s, thawT names' T, thaw names names' t) |
|
63857 | 732 |
| 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
|
733 |
| thaw names names' (Free (s, T)) = |
44101 | 734 |
let val T' = thawT names' T in |
735 |
(case AList.lookup (op =) names s of |
|
15531 | 736 |
NONE => Free (s, T') |
44101 | 737 |
| SOME ixn => Var (ixn, T')) |
11519 | 738 |
end |
63857 | 739 |
| thaw _ names' (Var (ixn, T)) = Var (ixn, thawT names' T) |
740 |
| thaw _ _ t = t; |
|
11519 | 741 |
|
44101 | 742 |
in |
743 |
||
11519 | 744 |
fun freeze_thaw_prf prf = |
745 |
let |
|
746 |
val (fs, Tfs, vs, Tvs) = fold_proof_terms |
|
20147 | 747 |
(fn t => fn (fs, Tfs, vs, Tvs) => |
29261 | 748 |
(Term.add_free_names t fs, Term.add_tfree_names t Tfs, |
749 |
Term.add_var_names t vs, Term.add_tvar_names t Tvs)) |
|
20147 | 750 |
(fn T => fn (fs, Tfs, vs, Tvs) => |
29261 | 751 |
(fs, Term.add_tfree_namesT T Tfs, |
752 |
vs, Term.add_tvar_namesT T Tvs)) |
|
20147 | 753 |
prf ([], [], [], []); |
29261 | 754 |
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
|
755 |
val names' = Tvs ~~ Name.variant_list Tfs (map fst Tvs); |
11519 | 756 |
val rnames = map swap names; |
757 |
val rnames' = map swap names'; |
|
758 |
in |
|
759 |
(map_proof_terms (freeze names names') (frzT names') prf, |
|
760 |
map_proof_terms (thaw rnames rnames') (thawT rnames')) |
|
761 |
end; |
|
762 |
||
44101 | 763 |
end; |
764 |
||
11519 | 765 |
|
70397 | 766 |
|
767 |
(** proof terms as pure terms **) |
|
70388
e31271559de8
global declaration of abstract syntax for proof terms, with qualified names;
wenzelm
parents:
68068
diff
changeset
|
768 |
|
e31271559de8
global declaration of abstract syntax for proof terms, with qualified names;
wenzelm
parents:
68068
diff
changeset
|
769 |
val proofT = Type ("Pure.proof", []); |
e31271559de8
global declaration of abstract syntax for proof terms, with qualified names;
wenzelm
parents:
68068
diff
changeset
|
770 |
|
e31271559de8
global declaration of abstract syntax for proof terms, with qualified names;
wenzelm
parents:
68068
diff
changeset
|
771 |
local |
e31271559de8
global declaration of abstract syntax for proof terms, with qualified names;
wenzelm
parents:
68068
diff
changeset
|
772 |
|
70392 | 773 |
val AbsPt = Const ("Pure.AbsP", propT --> (proofT --> proofT) --> proofT); |
774 |
val AppPt = Const ("Pure.AppP", proofT --> proofT --> proofT); |
|
70388
e31271559de8
global declaration of abstract syntax for proof terms, with qualified names;
wenzelm
parents:
68068
diff
changeset
|
775 |
val Hypt = Const ("Pure.Hyp", propT --> proofT); |
e31271559de8
global declaration of abstract syntax for proof terms, with qualified names;
wenzelm
parents:
68068
diff
changeset
|
776 |
val Oraclet = Const ("Pure.Oracle", propT --> proofT); |
e31271559de8
global declaration of abstract syntax for proof terms, with qualified names;
wenzelm
parents:
68068
diff
changeset
|
777 |
val MinProoft = Const ("Pure.MinProof", proofT); |
e31271559de8
global declaration of abstract syntax for proof terms, with qualified names;
wenzelm
parents:
68068
diff
changeset
|
778 |
|
70392 | 779 |
fun AppT T prf = |
780 |
Const ("Pure.Appt", proofT --> Term.itselfT T --> proofT) $ prf $ Logic.mk_type T; |
|
781 |
||
70391 | 782 |
fun OfClasst (T, c) = |
783 |
let val U = Term.itselfT T --> propT |
|
784 |
in Const ("Pure.OfClass", U --> proofT) $ Const (Logic.const_of_class c, U) end; |
|
785 |
||
70412
64ead6de6212
defer rew_proof on unnamed PThm node as open_proof operation: significant performance improvement;
wenzelm
parents:
70409
diff
changeset
|
786 |
fun term_of _ (PThm (_, ((name, _, Ts, _), _))) = |
70392 | 787 |
fold AppT (these Ts) (Const (Long_Name.append "thm" name, proofT)) |
788 |
| term_of _ (PAxm (name, _, Ts)) = |
|
789 |
fold AppT (these Ts) (Const (Long_Name.append "axm" name, proofT)) |
|
790 |
| term_of _ (OfClass (T, c)) = AppT T (OfClasst (T, c)) |
|
70388
e31271559de8
global declaration of abstract syntax for proof terms, with qualified names;
wenzelm
parents:
68068
diff
changeset
|
791 |
| term_of _ (PBound i) = Bound i |
e31271559de8
global declaration of abstract syntax for proof terms, with qualified names;
wenzelm
parents:
68068
diff
changeset
|
792 |
| term_of Ts (Abst (s, opT, prf)) = |
70392 | 793 |
let val T = the_default dummyT opT in |
794 |
Const ("Pure.Abst", (T --> proofT) --> proofT) $ |
|
795 |
Abs (s, T, term_of (T::Ts) (incr_pboundvars 1 0 prf)) |
|
70388
e31271559de8
global declaration of abstract syntax for proof terms, with qualified names;
wenzelm
parents:
68068
diff
changeset
|
796 |
end |
e31271559de8
global declaration of abstract syntax for proof terms, with qualified names;
wenzelm
parents:
68068
diff
changeset
|
797 |
| term_of Ts (AbsP (s, t, prf)) = |
e31271559de8
global declaration of abstract syntax for proof terms, with qualified names;
wenzelm
parents:
68068
diff
changeset
|
798 |
AbsPt $ the_default Term.dummy_prop t $ |
e31271559de8
global declaration of abstract syntax for proof terms, with qualified names;
wenzelm
parents:
68068
diff
changeset
|
799 |
Abs (s, proofT, term_of (proofT::Ts) (incr_pboundvars 0 1 prf)) |
e31271559de8
global declaration of abstract syntax for proof terms, with qualified names;
wenzelm
parents:
68068
diff
changeset
|
800 |
| term_of Ts (prf1 %% prf2) = |
e31271559de8
global declaration of abstract syntax for proof terms, with qualified names;
wenzelm
parents:
68068
diff
changeset
|
801 |
AppPt $ term_of Ts prf1 $ term_of Ts prf2 |
e31271559de8
global declaration of abstract syntax for proof terms, with qualified names;
wenzelm
parents:
68068
diff
changeset
|
802 |
| term_of Ts (prf % opt) = |
70392 | 803 |
let |
804 |
val t = the_default Term.dummy opt; |
|
805 |
val T = fastype_of1 (Ts, t) handle TERM _ => dummyT; |
|
806 |
in Const ("Pure.Appt", proofT --> T --> proofT) $ term_of Ts prf $ t end |
|
70394 | 807 |
| term_of _ (Hyp t) = Hypt $ t |
808 |
| term_of _ (Oracle (_, t, _)) = Oraclet $ t |
|
70398 | 809 |
| term_of _ MinProof = MinProoft; |
70388
e31271559de8
global declaration of abstract syntax for proof terms, with qualified names;
wenzelm
parents:
68068
diff
changeset
|
810 |
|
e31271559de8
global declaration of abstract syntax for proof terms, with qualified names;
wenzelm
parents:
68068
diff
changeset
|
811 |
in |
e31271559de8
global declaration of abstract syntax for proof terms, with qualified names;
wenzelm
parents:
68068
diff
changeset
|
812 |
|
e31271559de8
global declaration of abstract syntax for proof terms, with qualified names;
wenzelm
parents:
68068
diff
changeset
|
813 |
val term_of_proof = term_of []; |
e31271559de8
global declaration of abstract syntax for proof terms, with qualified names;
wenzelm
parents:
68068
diff
changeset
|
814 |
|
e31271559de8
global declaration of abstract syntax for proof terms, with qualified names;
wenzelm
parents:
68068
diff
changeset
|
815 |
end; |
e31271559de8
global declaration of abstract syntax for proof terms, with qualified names;
wenzelm
parents:
68068
diff
changeset
|
816 |
|
e31271559de8
global declaration of abstract syntax for proof terms, with qualified names;
wenzelm
parents:
68068
diff
changeset
|
817 |
|
70397 | 818 |
|
819 |
(** inference rules **) |
|
820 |
||
821 |
(* implication introduction *) |
|
11519 | 822 |
|
37231
e5419ecf92b7
- outer_constraints with original variable names, to ensure that argsP is consistent with args
berghofe
parents:
36883
diff
changeset
|
823 |
fun gen_implies_intr_proof f h prf = |
11519 | 824 |
let |
32019 | 825 |
fun abshyp i (Hyp t) = if h aconv t then PBound i else raise Same.SAME |
11519 | 826 |
| abshyp i (Abst (s, T, prf)) = Abst (s, T, abshyp i prf) |
32024 | 827 |
| abshyp i (AbsP (s, t, prf)) = AbsP (s, t, abshyp (i + 1) prf) |
11615 | 828 |
| abshyp i (prf % t) = abshyp i prf % t |
32024 | 829 |
| abshyp i (prf1 %% prf2) = |
830 |
(abshyp i prf1 %% abshyph i prf2 |
|
831 |
handle Same.SAME => prf1 %% abshyp i prf2) |
|
32019 | 832 |
| abshyp _ _ = raise Same.SAME |
32024 | 833 |
and abshyph i prf = (abshyp i prf handle Same.SAME => prf); |
11519 | 834 |
in |
37231
e5419ecf92b7
- outer_constraints with original variable names, to ensure that argsP is consistent with args
berghofe
parents:
36883
diff
changeset
|
835 |
AbsP ("H", f h, abshyph 0 prf) |
11519 | 836 |
end; |
837 |
||
37231
e5419ecf92b7
- outer_constraints with original variable names, to ensure that argsP is consistent with args
berghofe
parents:
36883
diff
changeset
|
838 |
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
|
839 |
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
|
840 |
|
11519 | 841 |
|
70397 | 842 |
(* forall introduction *) |
11519 | 843 |
|
15531 | 844 |
fun forall_intr_proof x a prf = Abst (a, NONE, prf_abstract_over x prf); |
11519 | 845 |
|
37231
e5419ecf92b7
- outer_constraints with original variable names, to ensure that argsP is consistent with args
berghofe
parents:
36883
diff
changeset
|
846 |
fun forall_intr_proof' t prf = |
e5419ecf92b7
- outer_constraints with original variable names, to ensure that argsP is consistent with args
berghofe
parents:
36883
diff
changeset
|
847 |
let val (a, T) = (case t of Var ((a, _), T) => (a, T) | Free p => p) |
e5419ecf92b7
- outer_constraints with original variable names, to ensure that argsP is consistent with args
berghofe
parents:
36883
diff
changeset
|
848 |
in Abst (a, SOME T, prf_abstract_over t prf) end; |
e5419ecf92b7
- outer_constraints with original variable names, to ensure that argsP is consistent with args
berghofe
parents:
36883
diff
changeset
|
849 |
|
11519 | 850 |
|
70397 | 851 |
(* varify *) |
11519 | 852 |
|
853 |
fun varify_proof t fixed prf = |
|
854 |
let |
|
19304 | 855 |
val fs = Term.fold_types (Term.fold_atyps |
856 |
(fn TFree v => if member (op =) fixed v then I else insert (op =) v | _ => I)) t []; |
|
29261 | 857 |
val used = Name.context |
858 |
|> fold_types (fold_atyps (fn TVar ((a, _), _) => Name.declare a | _ => I)) t; |
|
43326
47cf4bc789aa
simplified Name.variant -- discontinued builtin fold_map;
wenzelm
parents:
43324
diff
changeset
|
859 |
val fmap = fs ~~ #1 (fold_map Name.variant (map fst fs) used); |
63857 | 860 |
fun thaw (a, S) = |
861 |
(case AList.lookup (op =) fmap (a, S) of |
|
862 |
NONE => TFree (a, S) |
|
15531 | 863 |
| SOME b => TVar ((b, 0), S)); |
28803
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents:
28329
diff
changeset
|
864 |
in map_proof_terms (map_types (map_type_tfree thaw)) (map_type_tfree thaw) prf end; |
11519 | 865 |
|
866 |
||
867 |
local |
|
868 |
||
44116
c70257b4cb7e
avoid OldTerm operations -- with subtle changes of semantics;
wenzelm
parents:
44113
diff
changeset
|
869 |
fun new_name ix (pairs, used) = |
43324
2b47822868e4
discontinued Name.variant to emphasize that this is old-style / indirect;
wenzelm
parents:
43278
diff
changeset
|
870 |
let val v = singleton (Name.variant_list used) (string_of_indexname ix) |
44116
c70257b4cb7e
avoid OldTerm operations -- with subtle changes of semantics;
wenzelm
parents:
44113
diff
changeset
|
871 |
in ((ix, v) :: pairs, v :: used) end; |
11519 | 872 |
|
44116
c70257b4cb7e
avoid OldTerm operations -- with subtle changes of semantics;
wenzelm
parents:
44113
diff
changeset
|
873 |
fun freeze_one alist (ix, sort) = |
c70257b4cb7e
avoid OldTerm operations -- with subtle changes of semantics;
wenzelm
parents:
44113
diff
changeset
|
874 |
(case AList.lookup (op =) alist ix of |
15531 | 875 |
NONE => TVar (ix, sort) |
876 |
| SOME name => TFree (name, sort)); |
|
11519 | 877 |
|
878 |
in |
|
879 |
||
36619
deadcd0ec431
renamed Proofterm.freezeT to Proofterm.legacy_freezeT (cf. 88756a5a92fc);
wenzelm
parents:
35851
diff
changeset
|
880 |
fun legacy_freezeT t prf = |
11519 | 881 |
let |
44116
c70257b4cb7e
avoid OldTerm operations -- with subtle changes of semantics;
wenzelm
parents:
44113
diff
changeset
|
882 |
val used = Term.add_tfree_names t []; |
c70257b4cb7e
avoid OldTerm operations -- with subtle changes of semantics;
wenzelm
parents:
44113
diff
changeset
|
883 |
val (alist, _) = fold_rev new_name (map #1 (Term.add_tvars t [])) ([], used); |
11519 | 884 |
in |
885 |
(case alist of |
|
886 |
[] => prf (*nothing to do!*) |
|
887 |
| _ => |
|
44116
c70257b4cb7e
avoid OldTerm operations -- with subtle changes of semantics;
wenzelm
parents:
44113
diff
changeset
|
888 |
let val frzT = map_type_tvar (freeze_one alist) |
c70257b4cb7e
avoid OldTerm operations -- with subtle changes of semantics;
wenzelm
parents:
44113
diff
changeset
|
889 |
in map_proof_terms (map_types frzT) frzT prf end) |
11519 | 890 |
end; |
891 |
||
892 |
end; |
|
893 |
||
894 |
||
70397 | 895 |
(* rotate assumptions *) |
11519 | 896 |
|
897 |
fun rotate_proof Bs Bi m prf = |
|
898 |
let |
|
899 |
val params = Term.strip_all_vars Bi; |
|
900 |
val asms = Logic.strip_imp_prems (Term.strip_all_body Bi); |
|
901 |
val i = length asms; |
|
902 |
val j = length Bs; |
|
903 |
in |
|
904 |
mk_AbsP (j+1, proof_combP (prf, map PBound |
|
23178 | 905 |
(j downto 1) @ [mk_Abst params (mk_AbsP (i, |
11519 | 906 |
proof_combP (proof_combt (PBound i, map Bound ((length params - 1) downto 0)), |
23178 | 907 |
map PBound (((i-m-1) downto 0) @ ((i-1) downto (i-m))))))])) |
11519 | 908 |
end; |
909 |
||
910 |
||
70397 | 911 |
(* permute premises *) |
11519 | 912 |
|
36742 | 913 |
fun permute_prems_proof prems j k prf = |
11519 | 914 |
let val n = length prems |
915 |
in mk_AbsP (n, proof_combP (prf, |
|
916 |
map PBound ((n-1 downto n-j) @ (k-1 downto 0) @ (n-j-1 downto k)))) |
|
917 |
end; |
|
918 |
||
919 |
||
70397 | 920 |
(* generalization *) |
19908 | 921 |
|
20000 | 922 |
fun generalize (tfrees, frees) idx = |
36620
e6bb250402b5
simplified/unified fundamental operations on types/terms/proofterms -- prefer Same.operation over "option" variant;
wenzelm
parents:
36619
diff
changeset
|
923 |
Same.commit (map_proof_terms_same |
e6bb250402b5
simplified/unified fundamental operations on types/terms/proofterms -- prefer Same.operation over "option" variant;
wenzelm
parents:
36619
diff
changeset
|
924 |
(Term_Subst.generalize_same (tfrees, frees) idx) |
e6bb250402b5
simplified/unified fundamental operations on types/terms/proofterms -- prefer Same.operation over "option" variant;
wenzelm
parents:
36619
diff
changeset
|
925 |
(Term_Subst.generalizeT_same tfrees idx)); |
19908 | 926 |
|
927 |
||
70397 | 928 |
(* instantiation *) |
11519 | 929 |
|
20000 | 930 |
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
|
931 |
Same.commit (map_proof_terms_same |
e6bb250402b5
simplified/unified fundamental operations on types/terms/proofterms -- prefer Same.operation over "option" variant;
wenzelm
parents:
36619
diff
changeset
|
932 |
(Term_Subst.instantiate_same (instT, map (apsnd remove_types) inst)) |
e6bb250402b5
simplified/unified fundamental operations on types/terms/proofterms -- prefer Same.operation over "option" variant;
wenzelm
parents:
36619
diff
changeset
|
933 |
(Term_Subst.instantiateT_same instT)); |
11519 | 934 |
|
935 |
||
70397 | 936 |
(* lifting *) |
11519 | 937 |
|
938 |
fun lift_proof Bi inc prop prf = |
|
939 |
let |
|
32024 | 940 |
fun lift'' Us Ts t = |
59787 | 941 |
strip_abs Ts (Logic.incr_indexes ([], Us, inc) (mk_abs Ts t)); |
11519 | 942 |
|
11715
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents:
11652
diff
changeset
|
943 |
fun lift' Us Ts (Abst (s, T, prf)) = |
32024 | 944 |
(Abst (s, Same.map_option (Logic.incr_tvar_same inc) T, lifth' Us (dummyT::Ts) prf) |
32019 | 945 |
handle Same.SAME => Abst (s, T, lift' Us (dummyT::Ts) prf)) |
11715
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents:
11652
diff
changeset
|
946 |
| lift' Us Ts (AbsP (s, t, prf)) = |
32024 | 947 |
(AbsP (s, Same.map_option (same (op =) (lift'' Us Ts)) t, lifth' Us Ts prf) |
32019 | 948 |
handle Same.SAME => AbsP (s, t, lift' Us Ts prf)) |
15570 | 949 |
| lift' Us Ts (prf % t) = (lift' Us Ts prf % Option.map (lift'' Us Ts) t |
32024 | 950 |
handle Same.SAME => prf % Same.map_option (same (op =) (lift'' Us Ts)) t) |
11715
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents:
11652
diff
changeset
|
951 |
| lift' Us Ts (prf1 %% prf2) = (lift' Us Ts prf1 %% lifth' Us Ts prf2 |
32019 | 952 |
handle Same.SAME => prf1 %% lift' Us Ts prf2) |
11715
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents:
11652
diff
changeset
|
953 |
| lift' _ _ (PAxm (s, prop, Ts)) = |
32024 | 954 |
PAxm (s, prop, (Same.map_option o Same.map) (Logic.incr_tvar_same inc) Ts) |
31943
5e960a0780a2
renamed inclass/Inclass to of_class/OfClass, in accordance to of_sort;
wenzelm
parents:
31903
diff
changeset
|
955 |
| lift' _ _ (OfClass (T, c)) = |
32024 | 956 |
OfClass (Logic.incr_tvar_same inc T, c) |
28828
c25dd83a6f9f
unified treatment of PAxm/Oracle/Promise in basic proof term operations;
wenzelm
parents:
28815
diff
changeset
|
957 |
| lift' _ _ (Oracle (s, prop, Ts)) = |
32024 | 958 |
Oracle (s, prop, (Same.map_option o Same.map) (Logic.incr_tvar_same inc) Ts) |
70412
64ead6de6212
defer rew_proof on unnamed PThm node as open_proof operation: significant performance improvement;
wenzelm
parents:
70409
diff
changeset
|
959 |
| lift' _ _ (PThm (i, ((s, prop, Ts, open_proof), body))) = |
64ead6de6212
defer rew_proof on unnamed PThm node as open_proof operation: significant performance improvement;
wenzelm
parents:
70409
diff
changeset
|
960 |
PThm (i, ((s, prop, (Same.map_option o Same.map) (Logic.incr_tvar inc) Ts, open_proof), body)) |
32019 | 961 |
| lift' _ _ _ = raise Same.SAME |
962 |
and lifth' Us Ts prf = (lift' Us Ts prf handle Same.SAME => prf); |
|
11519 | 963 |
|
18030 | 964 |
val ps = map (Logic.lift_all inc Bi) (Logic.strip_imp_prems prop); |
11519 | 965 |
val k = length ps; |
966 |
||
23178 | 967 |
fun mk_app b (i, j, prf) = |
11615 | 968 |
if b then (i-1, j, prf %% PBound i) else (i, j-1, prf %> Bound j); |
11519 | 969 |
|
56245 | 970 |
fun lift Us bs i j (Const ("Pure.imp", _) $ A $ B) = |
20147 | 971 |
AbsP ("H", NONE (*A*), lift Us (true::bs) (i+1) j B) |
56245 | 972 |
| lift Us bs i j (Const ("Pure.all", _) $ Abs (a, T, t)) = |
20147 | 973 |
Abst (a, NONE (*T*), lift (T::Us) (false::bs) i (j+1) t) |
11715
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents:
11652
diff
changeset
|
974 |
| lift Us bs i j _ = proof_combP (lifth' (rev Us) [] prf, |
23178 | 975 |
map (fn k => (#3 (fold_rev mk_app bs (i-1, j-1, PBound k)))) |
11519 | 976 |
(i + k - 1 downto i)); |
977 |
in |
|
978 |
mk_AbsP (k, lift [] [] 0 0 Bi) |
|
979 |
end; |
|
980 |
||
32027 | 981 |
fun incr_indexes i = |
36620
e6bb250402b5
simplified/unified fundamental operations on types/terms/proofterms -- prefer Same.operation over "option" variant;
wenzelm
parents:
36619
diff
changeset
|
982 |
Same.commit (map_proof_terms_same |
59787 | 983 |
(Logic.incr_indexes_same ([], [], i)) (Logic.incr_tvar_same i)); |
32027 | 984 |
|
11519 | 985 |
|
70397 | 986 |
(* proof by assumption *) |
11519 | 987 |
|
23296
25f28f9c28a3
Adapted Proofterm.bicompose_proof to Larry's changes in
berghofe
parents:
23178
diff
changeset
|
988 |
fun mk_asm_prf t i m = |
25f28f9c28a3
Adapted Proofterm.bicompose_proof to Larry's changes in
berghofe
parents:
23178
diff
changeset
|
989 |
let |
25f28f9c28a3
Adapted Proofterm.bicompose_proof to Larry's changes in
berghofe
parents:
23178
diff
changeset
|
990 |
fun imp_prf _ i 0 = PBound i |
56245 | 991 |
| 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
|
992 |
| imp_prf _ i _ = PBound i; |
56245 | 993 |
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
|
994 |
| all_prf t = imp_prf t (~i) m |
25f28f9c28a3
Adapted Proofterm.bicompose_proof to Larry's changes in
berghofe
parents:
23178
diff
changeset
|
995 |
in all_prf t end; |
11519 | 996 |
|
997 |
fun assumption_proof Bs Bi n prf = |
|
998 |
mk_AbsP (length Bs, proof_combP (prf, |
|
23296
25f28f9c28a3
Adapted Proofterm.bicompose_proof to Larry's changes in
berghofe
parents:
23178
diff
changeset
|
999 |
map PBound (length Bs - 1 downto 0) @ [mk_asm_prf Bi n ~1])); |
11519 | 1000 |
|
1001 |
||
70397 | 1002 |
(* composition of object rule with proof state *) |
11519 | 1003 |
|
56245 | 1004 |
fun flatten_params_proof i j n (Const ("Pure.imp", _) $ A $ B, k) = |
15531 | 1005 |
AbsP ("H", NONE (*A*), flatten_params_proof (i+1) j n (B, k)) |
56245 | 1006 |
| flatten_params_proof i j n (Const ("Pure.all", _) $ Abs (a, T, t), k) = |
15531 | 1007 |
Abst (a, NONE (*T*), flatten_params_proof i (j+1) n (t, k)) |
11519 | 1008 |
| flatten_params_proof i j n (_, k) = proof_combP (proof_combt (PBound (k+i), |
19304 | 1009 |
map Bound (j-1 downto 0)), map PBound (remove (op =) (i-n) (i-1 downto 0))); |
11519 | 1010 |
|
23296
25f28f9c28a3
Adapted Proofterm.bicompose_proof to Larry's changes in
berghofe
parents:
23178
diff
changeset
|
1011 |
fun bicompose_proof flatten Bs oldAs newAs A n m rprf sprf = |
11519 | 1012 |
let |
1013 |
val la = length newAs; |
|
1014 |
val lb = length Bs; |
|
1015 |
in |
|
1016 |
mk_AbsP (lb+la, proof_combP (sprf, |
|
11615 | 1017 |
map PBound (lb + la - 1 downto la)) %% |
23296
25f28f9c28a3
Adapted Proofterm.bicompose_proof to Larry's changes in
berghofe
parents:
23178
diff
changeset
|
1018 |
proof_combP (rprf, (if n>0 then [mk_asm_prf (the A) n m] else []) @ |
18485 | 1019 |
map (if flatten then flatten_params_proof 0 0 n else PBound o snd) |
1020 |
(oldAs ~~ (la - 1 downto 0)))) |
|
11519 | 1021 |
end; |
1022 |
||
1023 |
||
70397 | 1024 |
|
1025 |
(** type classes **) |
|
36621
2fd4e2c76636
proof terms for strip_shyps, based on the version by krauss/schropp with some notable differences:
wenzelm
parents:
36620
diff
changeset
|
1026 |
|
2fd4e2c76636
proof terms for strip_shyps, based on the version by krauss/schropp with some notable differences:
wenzelm
parents:
36620
diff
changeset
|
1027 |
fun strip_shyps_proof algebra present witnessed extra_sorts prf = |
2fd4e2c76636
proof terms for strip_shyps, based on the version by krauss/schropp with some notable differences:
wenzelm
parents:
36620
diff
changeset
|
1028 |
let |
2fd4e2c76636
proof terms for strip_shyps, based on the version by krauss/schropp with some notable differences:
wenzelm
parents:
36620
diff
changeset
|
1029 |
fun get S2 (T, S1) = if Sorts.sort_le algebra (S1, S2) then SOME T else NONE; |
36732
9c2ee10809b2
strip_shyps_proof: dummy TFrees are called "'dummy" as in del_conflicting_tvars below;
wenzelm
parents:
36621
diff
changeset
|
1030 |
val extra = map (fn S => (TFree ("'dummy", S), S)) extra_sorts; |
36621
2fd4e2c76636
proof terms for strip_shyps, based on the version by krauss/schropp with some notable differences:
wenzelm
parents:
36620
diff
changeset
|
1031 |
val replacements = present @ extra @ witnessed; |
2fd4e2c76636
proof terms for strip_shyps, based on the version by krauss/schropp with some notable differences:
wenzelm
parents:
36620
diff
changeset
|
1032 |
fun replace T = |
2fd4e2c76636
proof terms for strip_shyps, based on the version by krauss/schropp with some notable differences:
wenzelm
parents:
36620
diff
changeset
|
1033 |
if exists (fn (T', _) => T' = T) present then raise Same.SAME |
2fd4e2c76636
proof terms for strip_shyps, based on the version by krauss/schropp with some notable differences:
wenzelm
parents:
36620
diff
changeset
|
1034 |
else |
2fd4e2c76636
proof terms for strip_shyps, based on the version by krauss/schropp with some notable differences:
wenzelm
parents:
36620
diff
changeset
|
1035 |
(case get_first (get (Type.sort_of_atyp T)) replacements of |
2fd4e2c76636
proof terms for strip_shyps, based on the version by krauss/schropp with some notable differences:
wenzelm
parents:
36620
diff
changeset
|
1036 |
SOME T' => T' |
2fd4e2c76636
proof terms for strip_shyps, based on the version by krauss/schropp with some notable differences:
wenzelm
parents:
36620
diff
changeset
|
1037 |
| NONE => raise Fail "strip_shyps_proof: bad type variable in proof term"); |
2fd4e2c76636
proof terms for strip_shyps, based on the version by krauss/schropp with some notable differences:
wenzelm
parents:
36620
diff
changeset
|
1038 |
in Same.commit (map_proof_types_same (Term_Subst.map_atypsT_same replace)) prf end; |
2fd4e2c76636
proof terms for strip_shyps, based on the version by krauss/schropp with some notable differences:
wenzelm
parents:
36620
diff
changeset
|
1039 |
|
2fd4e2c76636
proof terms for strip_shyps, based on the version by krauss/schropp with some notable differences:
wenzelm
parents:
36620
diff
changeset
|
1040 |
|
36740 | 1041 |
local |
1042 |
||
1043 |
type axclass_proofs = |
|
1044 |
{classrel_proof: theory -> class * class -> proof, |
|
1045 |
arity_proof: theory -> string * sort list * class -> proof}; |
|
1046 |
||
62897
8093203f0b89
prefer regular context update, to allow continuous editing of Pure;
wenzelm
parents:
62538
diff
changeset
|
1047 |
structure Axclass_Proofs = Theory_Data |
8093203f0b89
prefer regular context update, to allow continuous editing of Pure;
wenzelm
parents:
62538
diff
changeset
|
1048 |
( |
8093203f0b89
prefer regular context update, to allow continuous editing of Pure;
wenzelm
parents:
62538
diff
changeset
|
1049 |
type T = axclass_proofs option; |
8093203f0b89
prefer regular context update, to allow continuous editing of Pure;
wenzelm
parents:
62538
diff
changeset
|
1050 |
val empty = NONE; |
8093203f0b89
prefer regular context update, to allow continuous editing of Pure;
wenzelm
parents:
62538
diff
changeset
|
1051 |
val extend = I; |
8093203f0b89
prefer regular context update, to allow continuous editing of Pure;
wenzelm
parents:
62538
diff
changeset
|
1052 |
val merge = merge_options; |
8093203f0b89
prefer regular context update, to allow continuous editing of Pure;
wenzelm
parents:
62538
diff
changeset
|
1053 |
); |
36740 | 1054 |
|
62897
8093203f0b89
prefer regular context update, to allow continuous editing of Pure;
wenzelm
parents:
62538
diff
changeset
|
1055 |
fun the_axclass_proofs which thy x = |
8093203f0b89
prefer regular context update, to allow continuous editing of Pure;
wenzelm
parents:
62538
diff
changeset
|
1056 |
(case Axclass_Proofs.get thy of |
36740 | 1057 |
NONE => raise Fail "Axclass proof operations not installed" |
62897
8093203f0b89
prefer regular context update, to allow continuous editing of Pure;
wenzelm
parents:
62538
diff
changeset
|
1058 |
| SOME proofs => which proofs thy x); |
36740 | 1059 |
|
1060 |
in |
|
1061 |
||
62897
8093203f0b89
prefer regular context update, to allow continuous editing of Pure;
wenzelm
parents:
62538
diff
changeset
|
1062 |
val classrel_proof = the_axclass_proofs #classrel_proof; |
8093203f0b89
prefer regular context update, to allow continuous editing of Pure;
wenzelm
parents:
62538
diff
changeset
|
1063 |
val arity_proof = the_axclass_proofs #arity_proof; |
36740 | 1064 |
|
62897
8093203f0b89
prefer regular context update, to allow continuous editing of Pure;
wenzelm
parents:
62538
diff
changeset
|
1065 |
fun install_axclass_proofs proofs = |
8093203f0b89
prefer regular context update, to allow continuous editing of Pure;
wenzelm
parents:
62538
diff
changeset
|
1066 |
Axclass_Proofs.map |
8093203f0b89
prefer regular context update, to allow continuous editing of Pure;
wenzelm
parents:
62538
diff
changeset
|
1067 |
(fn NONE => SOME proofs |
8093203f0b89
prefer regular context update, to allow continuous editing of Pure;
wenzelm
parents:
62538
diff
changeset
|
1068 |
| SOME _ => raise Fail "Axclass proof operations already installed"); |
36740 | 1069 |
|
1070 |
end; |
|
1071 |
||
1072 |
||
36741
d65ed9d7275e
added of_sort_proof according to krauss/schropp, with slightly more direct canonical_instance;
wenzelm
parents:
36740
diff
changeset
|
1073 |
local |
d65ed9d7275e
added of_sort_proof according to krauss/schropp, with slightly more direct canonical_instance;
wenzelm
parents:
36740
diff
changeset
|
1074 |
|
d65ed9d7275e
added of_sort_proof according to krauss/schropp, with slightly more direct canonical_instance;
wenzelm
parents:
36740
diff
changeset
|
1075 |
fun canonical_instance typs = |
d65ed9d7275e
added of_sort_proof according to krauss/schropp, with slightly more direct canonical_instance;
wenzelm
parents:
36740
diff
changeset
|
1076 |
let |
43329
84472e198515
tuned signature: Name.invent and Name.invent_names;
wenzelm
parents:
43326
diff
changeset
|
1077 |
val names = Name.invent Name.context Name.aT (length typs); |
36741
d65ed9d7275e
added of_sort_proof according to krauss/schropp, with slightly more direct canonical_instance;
wenzelm
parents:
36740
diff
changeset
|
1078 |
val instT = map2 (fn a => fn T => (((a, 0), []), Type.strip_sorts T)) names typs; |
d65ed9d7275e
added of_sort_proof according to krauss/schropp, with slightly more direct canonical_instance;
wenzelm
parents:
36740
diff
changeset
|
1079 |
in instantiate (instT, []) end; |
d65ed9d7275e
added of_sort_proof according to krauss/schropp, with slightly more direct canonical_instance;
wenzelm
parents:
36740
diff
changeset
|
1080 |
|
d65ed9d7275e
added of_sort_proof according to krauss/schropp, with slightly more direct canonical_instance;
wenzelm
parents:
36740
diff
changeset
|
1081 |
in |
d65ed9d7275e
added of_sort_proof according to krauss/schropp, with slightly more direct canonical_instance;
wenzelm
parents:
36740
diff
changeset
|
1082 |
|
d65ed9d7275e
added of_sort_proof according to krauss/schropp, with slightly more direct canonical_instance;
wenzelm
parents:
36740
diff
changeset
|
1083 |
fun of_sort_proof thy hyps = |
d65ed9d7275e
added of_sort_proof according to krauss/schropp, with slightly more direct canonical_instance;
wenzelm
parents:
36740
diff
changeset
|
1084 |
Sorts.of_sort_derivation (Sign.classes_of thy) |
62538
85ebb645b1a3
provide explicit hint concering uniqueness of derivation
haftmann
parents:
59787
diff
changeset
|
1085 |
{class_relation = fn typ => fn _ => fn (prf, c1) => fn c2 => |
36741
d65ed9d7275e
added of_sort_proof according to krauss/schropp, with slightly more direct canonical_instance;
wenzelm
parents:
36740
diff
changeset
|
1086 |
if c1 = c2 then prf |
d65ed9d7275e
added of_sort_proof according to krauss/schropp, with slightly more direct canonical_instance;
wenzelm
parents:
36740
diff
changeset
|
1087 |
else canonical_instance [typ] (classrel_proof thy (c1, c2)) %% prf, |
d65ed9d7275e
added of_sort_proof according to krauss/schropp, with slightly more direct canonical_instance;
wenzelm
parents:
36740
diff
changeset
|
1088 |
type_constructor = fn (a, typs) => fn dom => fn c => |
d65ed9d7275e
added of_sort_proof according to krauss/schropp, with slightly more direct canonical_instance;
wenzelm
parents:
36740
diff
changeset
|
1089 |
let val Ss = map (map snd) dom and prfs = maps (map fst) dom |
d65ed9d7275e
added of_sort_proof according to krauss/schropp, with slightly more direct canonical_instance;
wenzelm
parents:
36740
diff
changeset
|
1090 |
in proof_combP (canonical_instance typs (arity_proof thy (a, Ss, c)), prfs) end, |
d65ed9d7275e
added of_sort_proof according to krauss/schropp, with slightly more direct canonical_instance;
wenzelm
parents:
36740
diff
changeset
|
1091 |
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
|
1092 |
|
d65ed9d7275e
added of_sort_proof according to krauss/schropp, with slightly more direct canonical_instance;
wenzelm
parents:
36740
diff
changeset
|
1093 |
end; |
d65ed9d7275e
added of_sort_proof according to krauss/schropp, with slightly more direct canonical_instance;
wenzelm
parents:
36740
diff
changeset
|
1094 |
|
d65ed9d7275e
added of_sort_proof according to krauss/schropp, with slightly more direct canonical_instance;
wenzelm
parents:
36740
diff
changeset
|
1095 |
|
70420 | 1096 |
|
70397 | 1097 |
(** axioms and theorems **) |
11519 | 1098 |
|
52487
48bc24467008
backout dedd7952a62c: static "proofs" value within theory prevents later inferencing with different configuration;
wenzelm
parents:
52470
diff
changeset
|
1099 |
val proofs = Unsynchronized.ref 2; |
48bc24467008
backout dedd7952a62c: static "proofs" value within theory prevents later inferencing with different configuration;
wenzelm
parents:
52470
diff
changeset
|
1100 |
fun proofs_enabled () = ! proofs >= 2; |
48bc24467008
backout dedd7952a62c: static "proofs" value within theory prevents later inferencing with different configuration;
wenzelm
parents:
52470
diff
changeset
|
1101 |
|
28812
413695e07bd4
Frees in PThms are now quantified in the order of their appearance in the
berghofe
parents:
28803
diff
changeset
|
1102 |
fun vars_of t = map Var (rev (Term.add_vars t [])); |
413695e07bd4
Frees in PThms are now quantified in the order of their appearance in the
berghofe
parents:
28803
diff
changeset
|
1103 |
fun frees_of t = map Free (rev (Term.add_frees t [])); |
11519 | 1104 |
|
1105 |
fun test_args _ [] = true |
|
1106 |
| test_args is (Bound i :: ts) = |
|
17492 | 1107 |
not (member (op =) is i) andalso test_args (i :: is) ts |
11519 | 1108 |
| test_args _ _ = false; |
1109 |
||
1110 |
fun is_fun (Type ("fun", _)) = true |
|
1111 |
| is_fun (TVar _) = true |
|
1112 |
| is_fun _ = false; |
|
1113 |
||
1114 |
fun add_funvars Ts (vs, t) = |
|
1115 |
if is_fun (fastype_of1 (Ts, t)) then |
|
33042 | 1116 |
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
|
1117 |
if is_fun T then SOME ixn else NONE | _ => NONE) (vars_of t)) |
11519 | 1118 |
else vs; |
1119 |
||
56245 | 1120 |
fun add_npvars q p Ts (vs, Const ("Pure.imp", _) $ t $ u) = |
11519 | 1121 |
add_npvars q p Ts (add_npvars q (not p) Ts (vs, t), u) |
56245 | 1122 |
| add_npvars q p Ts (vs, Const ("Pure.all", Type (_, [Type (_, [T, _]), _])) $ t) = |
11519 | 1123 |
add_npvars q p Ts (vs, if p andalso q then betapply (t, Var (("",0), T)) else t) |
12041 | 1124 |
| add_npvars q p Ts (vs, Abs (_, T, t)) = add_npvars q p (T::Ts) (vs, t) |
1125 |
| add_npvars _ _ Ts (vs, t) = add_npvars' Ts (vs, t) |
|
64566 | 1126 |
and add_npvars' Ts (vs, t) = |
1127 |
(case strip_comb t of |
|
11519 | 1128 |
(Var (ixn, _), ts) => if test_args [] ts then vs |
17314 | 1129 |
else Library.foldl (add_npvars' Ts) |
1130 |
(AList.update (op =) (ixn, |
|
1131 |
Library.foldl (add_funvars Ts) ((these ooo AList.lookup) (op =) vs ixn, ts)) vs, ts) |
|
15570 | 1132 |
| (Abs (_, T, u), ts) => Library.foldl (add_npvars' (T::Ts)) (vs, u :: ts) |
1133 |
| (_, ts) => Library.foldl (add_npvars' Ts) (vs, ts)); |
|
11519 | 1134 |
|
56245 | 1135 |
fun prop_vars (Const ("Pure.imp", _) $ P $ Q) = union (op =) (prop_vars P) (prop_vars Q) |
1136 |
| prop_vars (Const ("Pure.all", _) $ Abs (_, _, t)) = prop_vars t |
|
64566 | 1137 |
| prop_vars t = (case strip_comb t of (Var (ixn, _), _) => [ixn] | _ => []); |
11519 | 1138 |
|
1139 |
fun is_proj t = |
|
1140 |
let |
|
64566 | 1141 |
fun is_p i t = |
1142 |
(case strip_comb t of |
|
63857 | 1143 |
(Bound _, []) => false |
11519 | 1144 |
| (Bound j, ts) => j >= i orelse exists (is_p i) ts |
1145 |
| (Abs (_, _, u), _) => is_p (i+1) u |
|
1146 |
| (_, ts) => exists (is_p i) ts) |
|
64566 | 1147 |
in |
1148 |
(case strip_abs_body t of |
|
1149 |
Bound _ => true |
|
1150 |
| t' => is_p 0 t') |
|
11519 | 1151 |
end; |
1152 |
||
70416 | 1153 |
fun prop_args prop = |
1154 |
let |
|
1155 |
val needed_vars = |
|
1156 |
union (op =) (Library.foldl (uncurry (union (op =))) |
|
1157 |
([], map (uncurry (insert (op =))) (add_npvars true true [] ([], prop)))) |
|
1158 |
(prop_vars prop); |
|
1159 |
val vars = |
|
1160 |
vars_of prop |> map (fn (v as Var (ixn, _)) => |
|
1161 |
if member (op =) needed_vars ixn then SOME v else NONE); |
|
1162 |
val frees = map SOME (frees_of prop); |
|
1163 |
in vars @ frees end; |
|
11519 | 1164 |
|
1165 |
fun gen_axm_proof c name prop = |
|
70416 | 1166 |
proof_combt' (c (name, prop, NONE), prop_args prop); |
11519 | 1167 |
|
1168 |
val axm_proof = gen_axm_proof PAxm; |
|
17017 | 1169 |
|
52487
48bc24467008
backout dedd7952a62c: static "proofs" value within theory prevents later inferencing with different configuration;
wenzelm
parents:
52470
diff
changeset
|
1170 |
fun oracle_proof name prop = |
48bc24467008
backout dedd7952a62c: static "proofs" value within theory prevents later inferencing with different configuration;
wenzelm
parents:
52470
diff
changeset
|
1171 |
if ! proofs = 0 then ((name, Term.dummy), Oracle (name, Term.dummy, NONE)) |
30716
2ee706293eb5
removed misleading make_proof_body, make_oracles, make_thms, which essentially assume a *full* proof;
wenzelm
parents:
30712
diff
changeset
|
1172 |
else ((name, prop), gen_axm_proof Oracle name prop); |
11519 | 1173 |
|
63623 | 1174 |
val shrink_proof = |
17492 | 1175 |
let |
1176 |
fun shrink ls lev (prf as Abst (a, T, body)) = |
|
1177 |
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
|
1178 |
in (b, is, ch, if ch then Abst (a, T, body') else prf) end |
17492 | 1179 |
| shrink ls lev (prf as AbsP (a, t, body)) = |
1180 |
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
|
1181 |
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
|
1182 |
ch, if ch then AbsP (a, t, body') else prf) |
17492 | 1183 |
end |
1184 |
| shrink ls lev prf = |
|
1185 |
let val (is, ch, _, prf') = shrink' ls lev [] [] prf |
|
1186 |
in (false, is, ch, prf') end |
|
1187 |
and shrink' ls lev ts prfs (prf as prf1 %% prf2) = |
|
1188 |
let |
|
1189 |
val p as (_, is', ch', prf') = shrink ls lev prf2; |
|
1190 |
val (is, ch, ts', prf'') = shrink' ls lev ts (p::prfs) prf1 |
|
33042 | 1191 |
in (union (op =) is is', ch orelse ch', ts', |
17492 | 1192 |
if ch orelse ch' then prf'' %% prf' else prf) |
1193 |
end |
|
1194 |
| shrink' ls lev ts prfs (prf as prf1 % t) = |
|
1195 |
let val (is, ch, (ch', t')::ts', prf') = shrink' ls lev (t::ts) prfs prf1 |
|
1196 |
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
|
1197 |
if ch orelse ch' then prf' % t' else prf) end |
17492 | 1198 |
| shrink' ls lev ts prfs (prf as PBound i) = |
30146 | 1199 |
(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
|
1200 |
orelse has_duplicates (op =) |
042608ffa2ec
subsituted gen_duplicates / has_duplicates for duplicates whenever appropriate
haftmann
parents:
18485
diff
changeset
|
1201 |
(Library.foldl (fn (js, SOME (Bound j)) => j :: js | (js, _) => js) ([], ts)) |
17492 | 1202 |
orelse exists #1 prfs then [i] else [], false, map (pair false) ts, prf) |
63857 | 1203 |
| shrink' _ _ ts _ (Hyp t) = ([], false, map (pair false) ts, Hyp t) |
1204 |
| shrink' _ _ ts _ (prf as MinProof) = ([], false, map (pair false) ts, prf) |
|
1205 |
| shrink' _ _ ts _ (prf as OfClass _) = ([], false, map (pair false) ts, prf) |
|
1206 |
| shrink' _ _ ts prfs prf = |
|
17492 | 1207 |
let |
28803
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents:
28329
diff
changeset
|
1208 |
val prop = |
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents:
28329
diff
changeset
|
1209 |
(case prf of |
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents:
28329
diff
changeset
|
1210 |
PAxm (_, prop, _) => prop |
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents:
28329
diff
changeset
|
1211 |
| Oracle (_, prop, _) => prop |
70412
64ead6de6212
defer rew_proof on unnamed PThm node as open_proof operation: significant performance improvement;
wenzelm
parents:
70409
diff
changeset
|
1212 |
| PThm (_, ((_, prop, _, _), _)) => prop |
36879
201a4afd8533
raise Fail uniformly for proofterm errors, which appear to be rather low-level;
wenzelm
parents:
36878
diff
changeset
|
1213 |
| _ => raise Fail "shrink: proof not in normal form"); |
17492 | 1214 |
val vs = vars_of prop; |
19012 | 1215 |
val (ts', ts'') = chop (length vs) ts; |
33957 | 1216 |
val insts = take (length ts') (map (fst o dest_Var) vs) ~~ ts'; |
17492 | 1217 |
val nvs = Library.foldl (fn (ixns', (ixn, ixns)) => |
64566 | 1218 |
insert (op =) ixn |
1219 |
(case AList.lookup (op =) insts ixn of |
|
33042 | 1220 |
SOME (SOME t) => if is_proj t then union (op =) ixns ixns' else ixns' |
1221 |
| _ => union (op =) ixns ixns')) |
|
17492 | 1222 |
(needed prop ts'' prfs, add_npvars false true [] ([], prop)); |
1223 |
val insts' = map |
|
1224 |
(fn (ixn, x as SOME _) => if member (op =) nvs ixn then (false, x) else (true, NONE) |
|
1225 |
| (_, x) => (false, x)) insts |
|
1226 |
in ([], false, insts' @ map (pair false) ts'', prf) end |
|
56245 | 1227 |
and needed (Const ("Pure.imp", _) $ t $ u) ts ((b, _, _, _)::prfs) = |
33042 | 1228 |
union (op =) (if b then map (fst o dest_Var) (vars_of t) else []) (needed u ts prfs) |
17492 | 1229 |
| needed (Var (ixn, _)) (_::_) _ = [ixn] |
1230 |
| needed _ _ _ = []; |
|
63623 | 1231 |
in fn prf => #4 (shrink [] 0 prf) end; |
11519 | 1232 |
|
1233 |
||
70397 | 1234 |
|
70420 | 1235 |
(** axioms for equality **) |
1236 |
||
1237 |
val aT = TFree ("'a", []); |
|
1238 |
val bT = TFree ("'b", []); |
|
1239 |
val x = Free ("x", aT); |
|
1240 |
val y = Free ("y", aT); |
|
1241 |
val z = Free ("z", aT); |
|
1242 |
val A = Free ("A", propT); |
|
1243 |
val B = Free ("B", propT); |
|
1244 |
val f = Free ("f", aT --> bT); |
|
1245 |
val g = Free ("g", aT --> bT); |
|
1246 |
||
1247 |
val equality_axms = |
|
1248 |
[("reflexive", Logic.mk_equals (x, x)), |
|
1249 |
("symmetric", Logic.mk_implies (Logic.mk_equals (x, y), Logic.mk_equals (y, x))), |
|
1250 |
("transitive", |
|
1251 |
Logic.list_implies ([Logic.mk_equals (x, y), Logic.mk_equals (y, z)], Logic.mk_equals (x, z))), |
|
1252 |
("equal_intr", |
|
1253 |
Logic.list_implies ([Logic.mk_implies (A, B), Logic.mk_implies (B, A)], Logic.mk_equals (A, B))), |
|
1254 |
("equal_elim", Logic.list_implies ([Logic.mk_equals (A, B), A], B)), |
|
1255 |
("abstract_rule", |
|
1256 |
Logic.mk_implies |
|
1257 |
(Logic.all x |
|
1258 |
(Logic.mk_equals (f $ x, g $ x)), Logic.mk_equals (lambda x (f $ x), lambda x (g $ x)))), |
|
1259 |
("combination", Logic.list_implies |
|
1260 |
([Logic.mk_equals (f, g), Logic.mk_equals (x, y)], Logic.mk_equals (f $ x, g $ y)))]; |
|
1261 |
||
1262 |
val [reflexive_axm, symmetric_axm, transitive_axm, equal_intr_axm, |
|
1263 |
equal_elim_axm, abstract_rule_axm, combination_axm] = |
|
1264 |
map (fn (s, t) => PAxm ("Pure." ^ s, Logic.varify_global t, NONE)) equality_axms; |
|
1265 |
||
1266 |
val reflexive = reflexive_axm % NONE; |
|
1267 |
||
1268 |
fun symmetric (prf as PAxm ("Pure.reflexive", _, _) % _) = prf |
|
1269 |
| symmetric prf = symmetric_axm % NONE % NONE %% prf; |
|
1270 |
||
1271 |
fun transitive _ _ (PAxm ("Pure.reflexive", _, _) % _) prf2 = prf2 |
|
1272 |
| transitive _ _ prf1 (PAxm ("Pure.reflexive", _, _) % _) = prf1 |
|
1273 |
| transitive u (Type ("prop", [])) prf1 prf2 = |
|
1274 |
transitive_axm % NONE % SOME (remove_types u) % NONE %% prf1 %% prf2 |
|
1275 |
| transitive _ _ prf1 prf2 = transitive_axm % NONE % NONE % NONE %% prf1 %% prf2; |
|
1276 |
||
1277 |
fun abstract_rule x a prf = |
|
1278 |
abstract_rule_axm % NONE % NONE %% forall_intr_proof x a prf; |
|
1279 |
||
1280 |
fun check_comb (PAxm ("Pure.combination", _, _) % f % _ % _ % _ %% prf %% _) = |
|
1281 |
is_some f orelse check_comb prf |
|
1282 |
| check_comb (PAxm ("Pure.transitive", _, _) % _ % _ % _ %% prf1 %% prf2) = |
|
1283 |
check_comb prf1 andalso check_comb prf2 |
|
1284 |
| check_comb (PAxm ("Pure.symmetric", _, _) % _ % _ %% prf) = check_comb prf |
|
1285 |
| check_comb _ = false; |
|
1286 |
||
1287 |
fun combination f g t u (Type (_, [T, U])) prf1 prf2 = |
|
1288 |
let |
|
1289 |
val f = Envir.beta_norm f; |
|
1290 |
val g = Envir.beta_norm g; |
|
1291 |
val prf = |
|
1292 |
if check_comb prf1 then |
|
1293 |
combination_axm % NONE % NONE |
|
1294 |
else |
|
1295 |
(case prf1 of |
|
1296 |
PAxm ("Pure.reflexive", _, _) % _ => |
|
1297 |
combination_axm %> remove_types f % NONE |
|
1298 |
| _ => combination_axm %> remove_types f %> remove_types g) |
|
1299 |
in |
|
1300 |
(case T of |
|
1301 |
Type ("fun", _) => prf % |
|
1302 |
(case head_of f of |
|
1303 |
Abs _ => SOME (remove_types t) |
|
1304 |
| Var _ => SOME (remove_types t) |
|
1305 |
| _ => NONE) % |
|
1306 |
(case head_of g of |
|
1307 |
Abs _ => SOME (remove_types u) |
|
1308 |
| Var _ => SOME (remove_types u) |
|
1309 |
| _ => NONE) %% prf1 %% prf2 |
|
1310 |
| _ => prf % NONE % NONE %% prf1 %% prf2) |
|
1311 |
end; |
|
1312 |
||
1313 |
fun equal_intr A B prf1 prf2 = |
|
1314 |
equal_intr_axm %> remove_types A %> remove_types B %% prf1 %% prf2; |
|
1315 |
||
1316 |
fun equal_elim A B prf1 prf2 = |
|
1317 |
equal_elim_axm %> remove_types A %> remove_types B %% prf1 %% prf2; |
|
1318 |
||
1319 |
||
1320 |
||
70399 | 1321 |
(** rewriting on proof terms **) |
1322 |
||
1323 |
(* simple first order matching functions for terms and proofs (see pattern.ML) *) |
|
11519 | 1324 |
|
1325 |
exception PMatch; |
|
1326 |
||
33317 | 1327 |
fun flt (i: int) = filter (fn n => n < i); |
12279 | 1328 |
|
37231
e5419ecf92b7
- outer_constraints with original variable names, to ensure that argsP is consistent with args
berghofe
parents:
36883
diff
changeset
|
1329 |
fun fomatch Ts tymatch j instsp p = |
11519 | 1330 |
let |
1331 |
fun mtch (instsp as (tyinsts, insts)) = fn |
|
1332 |
(Var (ixn, T), t) => |
|
12279 | 1333 |
if j>0 andalso not (null (flt j (loose_bnos t))) |
1334 |
then raise PMatch |
|
1335 |
else (tymatch (tyinsts, fn () => (T, fastype_of1 (Ts, t))), |
|
1336 |
(ixn, t) :: insts) |
|
11519 | 1337 |
| (Free (a, T), Free (b, U)) => |
20147 | 1338 |
if a=b then (tymatch (tyinsts, K (T, U)), insts) else raise PMatch |
11519 | 1339 |
| (Const (a, T), Const (b, U)) => |
20147 | 1340 |
if a=b then (tymatch (tyinsts, K (T, U)), insts) else raise PMatch |
11519 | 1341 |
| (f $ t, g $ u) => mtch (mtch instsp (f, g)) (t, u) |
12279 | 1342 |
| (Bound i, Bound j) => if i=j then instsp else raise PMatch |
11519 | 1343 |
| _ => raise PMatch |
59058
a78612c67ec0
renamed "pairself" to "apply2", in accordance to @{apply 2};
wenzelm
parents:
56245
diff
changeset
|
1344 |
in mtch instsp (apply2 Envir.beta_eta_contract p) end; |
11519 | 1345 |
|
12279 | 1346 |
fun match_proof Ts tymatch = |
11519 | 1347 |
let |
15531 | 1348 |
fun optmatch _ inst (NONE, _) = inst |
1349 |
| optmatch _ _ (SOME _, NONE) = raise PMatch |
|
1350 |
| optmatch mtch inst (SOME x, SOME y) = mtch inst (x, y) |
|
12279 | 1351 |
|
1352 |
fun matcht Ts j (pinst, tinst) (t, u) = |
|
1353 |
(pinst, fomatch Ts tymatch j tinst (t, Envir.beta_norm u)); |
|
1354 |
fun matchT (pinst, (tyinsts, insts)) p = |
|
1355 |
(pinst, (tymatch (tyinsts, K p), insts)); |
|
15570 | 1356 |
fun matchTs inst (Ts, Us) = Library.foldl (uncurry matchT) (inst, Ts ~~ Us); |
12279 | 1357 |
|
1358 |
fun mtch Ts i j (pinst, tinst) (Hyp (Var (ixn, _)), prf) = |
|
1359 |
if i = 0 andalso j = 0 then ((ixn, prf) :: pinst, tinst) |
|
64566 | 1360 |
else |
1361 |
(case apfst (flt i) (apsnd (flt j) (prf_add_loose_bnos 0 0 prf ([], []))) of |
|
12279 | 1362 |
([], []) => ((ixn, incr_pboundvars (~i) (~j) prf) :: pinst, tinst) |
64566 | 1363 |
| ([], _) => |
1364 |
if j = 0 then ((ixn, incr_pboundvars (~i) (~j) prf) :: pinst, tinst) |
|
1365 |
else raise PMatch |
|
12279 | 1366 |
| _ => raise PMatch) |
1367 |
| mtch Ts i j inst (prf1 % opt1, prf2 % opt2) = |
|
1368 |
optmatch (matcht Ts j) (mtch Ts i j inst (prf1, prf2)) (opt1, opt2) |
|
1369 |
| mtch Ts i j inst (prf1 %% prf2, prf1' %% prf2') = |
|
1370 |
mtch Ts i j (mtch Ts i j inst (prf1, prf1')) (prf2, prf2') |
|
1371 |
| mtch Ts i j inst (Abst (_, opT, prf1), Abst (_, opU, prf2)) = |
|
18485 | 1372 |
mtch (the_default dummyT opU :: Ts) i (j+1) |
12279 | 1373 |
(optmatch matchT inst (opT, opU)) (prf1, prf2) |
1374 |
| mtch Ts i j inst (prf1, Abst (_, opU, prf2)) = |
|
18485 | 1375 |
mtch (the_default dummyT opU :: Ts) i (j+1) inst |
12279 | 1376 |
(incr_pboundvars 0 1 prf1 %> Bound 0, prf2) |
1377 |
| mtch Ts i j inst (AbsP (_, opt, prf1), AbsP (_, opu, prf2)) = |
|
1378 |
mtch Ts (i+1) j (optmatch (matcht Ts j) inst (opt, opu)) (prf1, prf2) |
|
1379 |
| mtch Ts i j inst (prf1, AbsP (_, _, prf2)) = |
|
1380 |
mtch Ts (i+1) j inst (incr_pboundvars 1 0 prf1 %% PBound 0, prf2) |
|
28803
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents:
28329
diff
changeset
|
1381 |
| 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
|
1382 |
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
|
1383 |
else raise PMatch |
31943
5e960a0780a2
renamed inclass/Inclass to of_class/OfClass, in accordance to of_sort;
wenzelm
parents:
31903
diff
changeset
|
1384 |
| mtch Ts i j inst (OfClass (T1, c1), OfClass (T2, c2)) = |
31903 | 1385 |
if c1 = c2 then matchT inst (T1, T2) |
1386 |
else raise PMatch |
|
70412
64ead6de6212
defer rew_proof on unnamed PThm node as open_proof operation: significant performance improvement;
wenzelm
parents:
70409
diff
changeset
|
1387 |
| mtch Ts i j inst |
64ead6de6212
defer rew_proof on unnamed PThm node as open_proof operation: significant performance improvement;
wenzelm
parents:
70409
diff
changeset
|
1388 |
(PThm (_, ((name1, prop1, opTs, _), _)), PThm (_, ((name2, prop2, opUs, _), _))) = |
28803
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents:
28329
diff
changeset
|
1389 |
if name1 = name2 andalso prop1 = prop2 then |
12279 | 1390 |
optmatch matchTs inst (opTs, opUs) |
11519 | 1391 |
else raise PMatch |
12279 | 1392 |
| mtch _ _ _ inst (PBound i, PBound j) = if i = j then inst else raise PMatch |
1393 |
| mtch _ _ _ _ _ = raise PMatch |
|
1394 |
in mtch Ts 0 0 end; |
|
11519 | 1395 |
|
1396 |
fun prf_subst (pinst, (tyinsts, insts)) = |
|
1397 |
let |
|
32049 | 1398 |
val substT = Envir.subst_type_same tyinsts; |
1399 |
val substTs = Same.map substT; |
|
11519 | 1400 |
|
32049 | 1401 |
fun subst' lev (Var (xi, _)) = |
1402 |
(case AList.lookup (op =) insts xi of |
|
1403 |
NONE => raise Same.SAME |
|
15531 | 1404 |
| SOME u => incr_boundvars lev u) |
32049 | 1405 |
| subst' _ (Const (s, T)) = Const (s, substT T) |
1406 |
| subst' _ (Free (s, T)) = Free (s, substT T) |
|
1407 |
| subst' lev (Abs (a, T, body)) = |
|
1408 |
(Abs (a, substT T, Same.commit (subst' (lev + 1)) body) |
|
1409 |
handle Same.SAME => Abs (a, T, subst' (lev + 1) body)) |
|
1410 |
| subst' lev (f $ t) = |
|
1411 |
(subst' lev f $ Same.commit (subst' lev) t |
|
1412 |
handle Same.SAME => f $ subst' lev t) |
|
1413 |
| subst' _ _ = raise Same.SAME; |
|
11519 | 1414 |
|
1415 |
fun subst plev tlev (AbsP (a, t, body)) = |
|
32049 | 1416 |
(AbsP (a, Same.map_option (subst' tlev) t, Same.commit (subst (plev + 1) tlev) body) |
1417 |
handle Same.SAME => AbsP (a, t, subst (plev + 1) tlev body)) |
|
11519 | 1418 |
| subst plev tlev (Abst (a, T, body)) = |
32049 | 1419 |
(Abst (a, Same.map_option substT T, Same.commit (subst plev (tlev + 1)) body) |
1420 |
handle Same.SAME => Abst (a, T, subst plev (tlev + 1) body)) |
|
1421 |
| subst plev tlev (prf %% prf') = |
|
1422 |
(subst plev tlev prf %% Same.commit (subst plev tlev) prf' |
|
1423 |
handle Same.SAME => prf %% subst plev tlev prf') |
|
1424 |
| subst plev tlev (prf % t) = |
|
1425 |
(subst plev tlev prf % Same.commit (Same.map_option (subst' tlev)) t |
|
1426 |
handle Same.SAME => prf % Same.map_option (subst' tlev) t) |
|
1427 |
| subst plev tlev (Hyp (Var (xi, _))) = |
|
1428 |
(case AList.lookup (op =) pinst xi of |
|
1429 |
NONE => raise Same.SAME |
|
1430 |
| SOME prf' => incr_pboundvars plev tlev prf') |
|
1431 |
| subst _ _ (PAxm (id, prop, Ts)) = PAxm (id, prop, Same.map_option substTs Ts) |
|
31943
5e960a0780a2
renamed inclass/Inclass to of_class/OfClass, in accordance to of_sort;
wenzelm
parents:
31903
diff
changeset
|
1432 |
| subst _ _ (OfClass (T, c)) = OfClass (substT T, c) |
32049 | 1433 |
| subst _ _ (Oracle (id, prop, Ts)) = Oracle (id, prop, Same.map_option substTs Ts) |
70412
64ead6de6212
defer rew_proof on unnamed PThm node as open_proof operation: significant performance improvement;
wenzelm
parents:
70409
diff
changeset
|
1434 |
| subst _ _ (PThm (i, ((id, prop, Ts, open_proof), body))) = |
64ead6de6212
defer rew_proof on unnamed PThm node as open_proof operation: significant performance improvement;
wenzelm
parents:
70409
diff
changeset
|
1435 |
PThm (i, ((id, prop, Same.map_option substTs Ts, open_proof), body)) |
32049 | 1436 |
| subst _ _ _ = raise Same.SAME; |
1437 |
in fn t => subst 0 0 t handle Same.SAME => t end; |
|
11519 | 1438 |
|
21646
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
wenzelm
parents:
20853
diff
changeset
|
1439 |
(*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
|
1440 |
Terms must be NORMAL. Treats all Vars as distinct. *) |
21486a0557d1
Added function could_unify to speed up rewriting of proof terms.
berghofe
parents:
12868
diff
changeset
|
1441 |
fun could_unify prf1 prf2 = |
21486a0557d1
Added function could_unify to speed up rewriting of proof terms.
berghofe
parents:
12868
diff
changeset
|
1442 |
let |
21486a0557d1
Added function could_unify to speed up rewriting of proof terms.
berghofe
parents:
12868
diff
changeset
|
1443 |
fun matchrands (prf1 %% prf2) (prf1' %% prf2') = |
21486a0557d1
Added function could_unify to speed up rewriting of proof terms.
berghofe
parents:
12868
diff
changeset
|
1444 |
could_unify prf2 prf2' andalso matchrands prf1 prf1' |
15531 | 1445 |
| 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
|
1446 |
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
|
1447 |
| matchrands (prf % _) (prf' % _) = matchrands prf prf' |
21486a0557d1
Added function could_unify to speed up rewriting of proof terms.
berghofe
parents:
12868
diff
changeset
|
1448 |
| matchrands _ _ = true |
21486a0557d1
Added function could_unify to speed up rewriting of proof terms.
berghofe
parents:
12868
diff
changeset
|
1449 |
|
21486a0557d1
Added function could_unify to speed up rewriting of proof terms.
berghofe
parents:
12868
diff
changeset
|
1450 |
fun head_of (prf %% _) = head_of prf |
21486a0557d1
Added function could_unify to speed up rewriting of proof terms.
berghofe
parents:
12868
diff
changeset
|
1451 |
| head_of (prf % _) = head_of prf |
21486a0557d1
Added function could_unify to speed up rewriting of proof terms.
berghofe
parents:
12868
diff
changeset
|
1452 |
| head_of prf = prf |
21486a0557d1
Added function could_unify to speed up rewriting of proof terms.
berghofe
parents:
12868
diff
changeset
|
1453 |
|
21486a0557d1
Added function could_unify to speed up rewriting of proof terms.
berghofe
parents:
12868
diff
changeset
|
1454 |
in case (head_of prf1, head_of prf2) of |
21486a0557d1
Added function could_unify to speed up rewriting of proof terms.
berghofe
parents:
12868
diff
changeset
|
1455 |
(_, Hyp (Var _)) => true |
21486a0557d1
Added function could_unify to speed up rewriting of proof terms.
berghofe
parents:
12868
diff
changeset
|
1456 |
| (Hyp (Var _), _) => true |
28803
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents:
28329
diff
changeset
|
1457 |
| (PAxm (a, _, _), PAxm (b, _, _)) => a = b andalso matchrands prf1 prf2 |
31943
5e960a0780a2
renamed inclass/Inclass to of_class/OfClass, in accordance to of_sort;
wenzelm
parents:
31903
diff
changeset
|
1458 |
| (OfClass (_, c), OfClass (_, d)) => c = d andalso matchrands prf1 prf2 |
70412
64ead6de6212
defer rew_proof on unnamed PThm node as open_proof operation: significant performance improvement;
wenzelm
parents:
70409
diff
changeset
|
1459 |
| (PThm (_, ((a, propa, _, _), _)), PThm (_, ((b, propb, _, _), _))) => |
12871
21486a0557d1
Added function could_unify to speed up rewriting of proof terms.
berghofe
parents:
12868
diff
changeset
|
1460 |
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
|
1461 |
| (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
|
1462 |
| (AbsP _, _) => true (*because of possible eta equality*) |
21486a0557d1
Added function could_unify to speed up rewriting of proof terms.
berghofe
parents:
12868
diff
changeset
|
1463 |
| (Abst _, _) => true |
21486a0557d1
Added function could_unify to speed up rewriting of proof terms.
berghofe
parents:
12868
diff
changeset
|
1464 |
| (_, AbsP _) => true |
21486a0557d1
Added function could_unify to speed up rewriting of proof terms.
berghofe
parents:
12868
diff
changeset
|
1465 |
| (_, Abst _) => true |
21486a0557d1
Added function could_unify to speed up rewriting of proof terms.
berghofe
parents:
12868
diff
changeset
|
1466 |
| _ => false |
21486a0557d1
Added function could_unify to speed up rewriting of proof terms.
berghofe
parents:
12868
diff
changeset
|
1467 |
end; |
21486a0557d1
Added function could_unify to speed up rewriting of proof terms.
berghofe
parents:
12868
diff
changeset
|
1468 |
|
28329
e6a5fa9f1e41
added conditional add_oracles, keep oracles_of_proof private;
wenzelm
parents:
28319
diff
changeset
|
1469 |
|
70399 | 1470 |
(* rewrite proof *) |
11519 | 1471 |
|
33722
e588744f14da
generalized procs for rewrite_proof: allow skeleton;
wenzelm
parents:
33522
diff
changeset
|
1472 |
val no_skel = PBound 0; |
e588744f14da
generalized procs for rewrite_proof: allow skeleton;
wenzelm
parents:
33522
diff
changeset
|
1473 |
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
|
1474 |
|
12279 | 1475 |
fun rewrite_prf tymatch (rules, procs) prf = |
11519 | 1476 |
let |
37231
e5419ecf92b7
- outer_constraints with original variable names, to ensure that argsP is consistent with args
berghofe
parents:
36883
diff
changeset
|
1477 |
fun rew _ _ (Abst (_, _, body) % SOME t) = SOME (prf_subst_bounds [t] body, no_skel) |
e5419ecf92b7
- outer_constraints with original variable names, to ensure that argsP is consistent with args
berghofe
parents:
36883
diff
changeset
|
1478 |
| rew _ _ (AbsP (_, _, body) %% prf) = SOME (prf_subst_pbounds [prf] body, no_skel) |
e5419ecf92b7
- outer_constraints with original variable names, to ensure that argsP is consistent with args
berghofe
parents:
36883
diff
changeset
|
1479 |
| rew Ts hs prf = |
e5419ecf92b7
- outer_constraints with original variable names, to ensure that argsP is consistent with args
berghofe
parents:
36883
diff
changeset
|
1480 |
(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
|
1481 |
NONE => get_first (fn (prf1, prf2) => SOME (prf_subst |
e588744f14da
generalized procs for rewrite_proof: allow skeleton;
wenzelm
parents:
33522
diff
changeset
|
1482 |
(match_proof Ts tymatch ([], (Vartab.empty, [])) (prf1, prf)) prf2, prf2) |
e588744f14da
generalized procs for rewrite_proof: allow skeleton;
wenzelm
parents:
33522
diff
changeset
|
1483 |
handle PMatch => NONE) (filter (could_unify prf o fst) rules) |
e588744f14da
generalized procs for rewrite_proof: allow skeleton;
wenzelm
parents:
33522
diff
changeset
|
1484 |
| some => some); |
11519 | 1485 |
|
37231
e5419ecf92b7
- outer_constraints with original variable names, to ensure that argsP is consistent with args
berghofe
parents:
36883
diff
changeset
|
1486 |
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
|
1487 |
if prf_loose_Pbvar1 prf' 0 then rew Ts hs prf |
11519 | 1488 |
else |
1489 |
let val prf'' = incr_pboundvars (~1) 0 prf' |
|
37231
e5419ecf92b7
- outer_constraints with original variable names, to ensure that argsP is consistent with args
berghofe
parents:
36883
diff
changeset
|
1490 |
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
|
1491 |
| 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
|
1492 |
if prf_loose_bvar1 prf' 0 then rew Ts hs prf |
11519 | 1493 |
else |
1494 |
let val prf'' = incr_pboundvars 0 (~1) prf' |
|
37231
e5419ecf92b7
- outer_constraints with original variable names, to ensure that argsP is consistent with args
berghofe
parents:
36883
diff
changeset
|
1495 |
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
|
1496 |
| rew0 Ts hs prf = rew Ts hs prf; |
11519 | 1497 |
|
37231
e5419ecf92b7
- outer_constraints with original variable names, to ensure that argsP is consistent with args
berghofe
parents:
36883
diff
changeset
|
1498 |
fun rew1 _ _ (Hyp (Var _)) _ = NONE |
64566 | 1499 |
| rew1 Ts hs skel prf = |
1500 |
(case rew2 Ts hs skel prf of |
|
1501 |
SOME prf1 => |
|
1502 |
(case rew0 Ts hs prf1 of |
|
1503 |
SOME (prf2, skel') => SOME (the_default prf2 (rew1 Ts hs skel' prf2)) |
|
1504 |
| NONE => SOME prf1) |
|
1505 |
| NONE => |
|
1506 |
(case rew0 Ts hs prf of |
|
1507 |
SOME (prf1, skel') => SOME (the_default prf1 (rew1 Ts hs skel' prf1)) |
|
1508 |
| NONE => NONE)) |
|
11519 | 1509 |
|
64566 | 1510 |
and rew2 Ts hs skel (prf % SOME t) = |
1511 |
(case prf of |
|
11519 | 1512 |
Abst (_, _, body) => |
1513 |
let val prf' = 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
|
1514 |
in SOME (the_default prf' (rew2 Ts hs no_skel prf')) end |
64566 | 1515 |
| _ => |
1516 |
(case rew1 Ts hs (case skel of skel' % _ => skel' | _ => no_skel) prf of |
|
1517 |
SOME prf' => SOME (prf' % SOME t) |
|
1518 |
| NONE => NONE)) |
|
37231
e5419ecf92b7
- outer_constraints with original variable names, to ensure that argsP is consistent with args
berghofe
parents:
36883
diff
changeset
|
1519 |
| 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
|
1520 |
(rew1 Ts hs (case skel of skel' % _ => skel' | _ => no_skel) prf) |
64566 | 1521 |
| rew2 Ts hs skel (prf1 %% prf2) = |
1522 |
(case prf1 of |
|
11519 | 1523 |
AbsP (_, _, body) => |
1524 |
let val prf' = 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
|
1525 |
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
|
1526 |
| _ => |
64566 | 1527 |
let |
1528 |
val (skel1, skel2) = |
|
1529 |
(case skel of |
|
1530 |
skel1 %% skel2 => (skel1, skel2) |
|
1531 |
| _ => (no_skel, no_skel)) |
|
1532 |
in |
|
1533 |
(case rew1 Ts hs skel1 prf1 of |
|
1534 |
SOME prf1' => |
|
1535 |
(case rew1 Ts hs skel2 prf2 of |
|
15531 | 1536 |
SOME prf2' => SOME (prf1' %% prf2') |
1537 |
| NONE => SOME (prf1' %% prf2)) |
|
64566 | 1538 |
| NONE => |
1539 |
(case rew1 Ts hs skel2 prf2 of |
|
15531 | 1540 |
SOME prf2' => SOME (prf1 %% prf2') |
64566 | 1541 |
| NONE => NONE)) |
13102
b6f8aae5f152
Added skeletons to speed up rewriting on proof terms.
berghofe
parents:
12923
diff
changeset
|
1542 |
end) |
64566 | 1543 |
| rew2 Ts hs skel (Abst (s, T, prf)) = |
1544 |
(case rew1 (the_default dummyT T :: Ts) hs |
|
33722
e588744f14da
generalized procs for rewrite_proof: allow skeleton;
wenzelm
parents:
33522
diff
changeset
|
1545 |
(case skel of Abst (_, _, skel') => skel' | _ => no_skel) prf of |
15531 | 1546 |
SOME prf' => SOME (Abst (s, T, prf')) |
1547 |
| NONE => NONE) |
|
64566 | 1548 |
| rew2 Ts hs skel (AbsP (s, t, prf)) = |
1549 |
(case rew1 Ts (t :: hs) (case skel of AbsP (_, _, skel') => skel' | _ => no_skel) prf of |
|
15531 | 1550 |
SOME prf' => SOME (AbsP (s, t, prf')) |
1551 |
| NONE => NONE) |
|
37231
e5419ecf92b7
- outer_constraints with original variable names, to ensure that argsP is consistent with args
berghofe
parents:
36883
diff
changeset
|
1552 |
| rew2 _ _ _ _ = NONE; |
11519 | 1553 |
|
37231
e5419ecf92b7
- outer_constraints with original variable names, to ensure that argsP is consistent with args
berghofe
parents:
36883
diff
changeset
|
1554 |
in the_default prf (rew1 [] [] no_skel prf) end; |
11519 | 1555 |
|
17203 | 1556 |
fun rewrite_proof thy = rewrite_prf (fn (tyenv, f) => |
1557 |
Sign.typ_match thy (f ()) tyenv handle Type.TYPE_MATCH => raise PMatch); |
|
11519 | 1558 |
|
11715
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents:
11652
diff
changeset
|
1559 |
fun rewrite_proof_notypes rews = rewrite_prf fst rews; |
11615 | 1560 |
|
16940 | 1561 |
|
70399 | 1562 |
(* theory data *) |
11519 | 1563 |
|
37216
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
wenzelm
parents:
36883
diff
changeset
|
1564 |
structure Data = Theory_Data |
22846 | 1565 |
( |
33722
e588744f14da
generalized procs for rewrite_proof: allow skeleton;
wenzelm
parents:
33522
diff
changeset
|
1566 |
type T = |
e588744f14da
generalized procs for rewrite_proof: allow skeleton;
wenzelm
parents:
33522
diff
changeset
|
1567 |
(stamp * (proof * proof)) list * |
37231
e5419ecf92b7
- outer_constraints with original variable names, to ensure that argsP is consistent with args
berghofe
parents:
36883
diff
changeset
|
1568 |
(stamp * (typ list -> term option list -> proof -> (proof * proof) option)) list; |
11519 | 1569 |
|
12233 | 1570 |
val empty = ([], []); |
16458 | 1571 |
val extend = I; |
33522 | 1572 |
fun merge ((rules1, procs1), (rules2, procs2)) : T = |
28803
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents:
28329
diff
changeset
|
1573 |
(AList.merge (op =) (K true) (rules1, rules2), |
22662 | 1574 |
AList.merge (op =) (K true) (procs1, procs2)); |
22846 | 1575 |
); |
11519 | 1576 |
|
37216
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
wenzelm
parents:
36883
diff
changeset
|
1577 |
fun get_data thy = let val (rules, procs) = Data.get thy in (map #2 rules, map #2 procs) end; |
28803
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents:
28329
diff
changeset
|
1578 |
fun rew_proof thy = rewrite_prf fst (get_data thy); |
23780
a0e7305dd0cb
Added function rew_proof (for pre-normalizing proofs).
berghofe
parents:
23296
diff
changeset
|
1579 |
|
37216
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
wenzelm
parents:
36883
diff
changeset
|
1580 |
fun add_prf_rrule r = (Data.map o apfst) (cons (stamp (), r)); |
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
wenzelm
parents:
36883
diff
changeset
|
1581 |
fun add_prf_rproc p = (Data.map o apsnd) (cons (stamp (), p)); |
28803
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents:
28329
diff
changeset
|
1582 |
|
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents:
28329
diff
changeset
|
1583 |
|
70400
65bbef66e2ec
clarified treatment of unnamed PThm nodes (from close_derivation): retain full proof, publish when named;
wenzelm
parents:
70399
diff
changeset
|
1584 |
(* clean proof: expand unnamed PThm nodes *) |
65bbef66e2ec
clarified treatment of unnamed PThm nodes (from close_derivation): retain full proof, publish when named;
wenzelm
parents:
70399
diff
changeset
|
1585 |
|
65bbef66e2ec
clarified treatment of unnamed PThm nodes (from close_derivation): retain full proof, publish when named;
wenzelm
parents:
70399
diff
changeset
|
1586 |
local |
65bbef66e2ec
clarified treatment of unnamed PThm nodes (from close_derivation): retain full proof, publish when named;
wenzelm
parents:
70399
diff
changeset
|
1587 |
|
65bbef66e2ec
clarified treatment of unnamed PThm nodes (from close_derivation): retain full proof, publish when named;
wenzelm
parents:
70399
diff
changeset
|
1588 |
fun vars_of t = map Var (rev (Term.add_vars t [])); |
65bbef66e2ec
clarified treatment of unnamed PThm nodes (from close_derivation): retain full proof, publish when named;
wenzelm
parents:
70399
diff
changeset
|
1589 |
fun frees_of t = map Free (rev (Term.add_frees t [])); |
65bbef66e2ec
clarified treatment of unnamed PThm nodes (from close_derivation): retain full proof, publish when named;
wenzelm
parents:
70399
diff
changeset
|
1590 |
fun variables_of t = vars_of t @ frees_of t; |
65bbef66e2ec
clarified treatment of unnamed PThm nodes (from close_derivation): retain full proof, publish when named;
wenzelm
parents:
70399
diff
changeset
|
1591 |
|
65bbef66e2ec
clarified treatment of unnamed PThm nodes (from close_derivation): retain full proof, publish when named;
wenzelm
parents:
70399
diff
changeset
|
1592 |
in |
65bbef66e2ec
clarified treatment of unnamed PThm nodes (from close_derivation): retain full proof, publish when named;
wenzelm
parents:
70399
diff
changeset
|
1593 |
|
65bbef66e2ec
clarified treatment of unnamed PThm nodes (from close_derivation): retain full proof, publish when named;
wenzelm
parents:
70399
diff
changeset
|
1594 |
fun forall_intr_vfs prop = fold_rev Logic.all (variables_of prop) prop; |
65bbef66e2ec
clarified treatment of unnamed PThm nodes (from close_derivation): retain full proof, publish when named;
wenzelm
parents:
70399
diff
changeset
|
1595 |
fun forall_intr_vfs_prf prop prf = fold_rev forall_intr_proof' (variables_of prop) prf; |
65bbef66e2ec
clarified treatment of unnamed PThm nodes (from close_derivation): retain full proof, publish when named;
wenzelm
parents:
70399
diff
changeset
|
1596 |
|
70419 | 1597 |
fun app_types shift prop Ts prf = |
1598 |
let |
|
1599 |
val tvars = rev (Term.add_tvars prop []); |
|
1600 |
val tfrees = rev (Term.add_tfrees prop []); |
|
1601 |
val vs = map (fn ((a, i), _) => (a, i + shift)) tvars @ map (fn (a, _) => (a, ~1)) tfrees; |
|
1602 |
fun varify (v as (a, S)) = if member (op =) tfrees v then TVar ((a, ~1), S) else TFree v; |
|
1603 |
in map_proof_types (typ_subst_TVars (vs ~~ Ts) o map_type_tfree varify) prf end; |
|
1604 |
||
70400
65bbef66e2ec
clarified treatment of unnamed PThm nodes (from close_derivation): retain full proof, publish when named;
wenzelm
parents:
70399
diff
changeset
|
1605 |
end; |
65bbef66e2ec
clarified treatment of unnamed PThm nodes (from close_derivation): retain full proof, publish when named;
wenzelm
parents:
70399
diff
changeset
|
1606 |
|
70405 | 1607 |
fun clean_proof thy prf = |
70400
65bbef66e2ec
clarified treatment of unnamed PThm nodes (from close_derivation): retain full proof, publish when named;
wenzelm
parents:
70399
diff
changeset
|
1608 |
let |
65bbef66e2ec
clarified treatment of unnamed PThm nodes (from close_derivation): retain full proof, publish when named;
wenzelm
parents:
70399
diff
changeset
|
1609 |
fun clean maxidx prfs (AbsP (s, t, prf)) = |
65bbef66e2ec
clarified treatment of unnamed PThm nodes (from close_derivation): retain full proof, publish when named;
wenzelm
parents:
70399
diff
changeset
|
1610 |
let val (maxidx', prfs', prf') = clean maxidx prfs prf |
65bbef66e2ec
clarified treatment of unnamed PThm nodes (from close_derivation): retain full proof, publish when named;
wenzelm
parents:
70399
diff
changeset
|
1611 |
in (maxidx', prfs', AbsP (s, t, prf')) end |
65bbef66e2ec
clarified treatment of unnamed PThm nodes (from close_derivation): retain full proof, publish when named;
wenzelm
parents:
70399
diff
changeset
|
1612 |
| clean maxidx prfs (Abst (s, T, prf)) = |
65bbef66e2ec
clarified treatment of unnamed PThm nodes (from close_derivation): retain full proof, publish when named;
wenzelm
parents:
70399
diff
changeset
|
1613 |
let val (maxidx', prfs', prf') = clean maxidx prfs prf |
65bbef66e2ec
clarified treatment of unnamed PThm nodes (from close_derivation): retain full proof, publish when named;
wenzelm
parents:
70399
diff
changeset
|
1614 |
in (maxidx', prfs', Abst (s, T, prf')) end |
65bbef66e2ec
clarified treatment of unnamed PThm nodes (from close_derivation): retain full proof, publish when named;
wenzelm
parents:
70399
diff
changeset
|
1615 |
| clean maxidx prfs (prf1 %% prf2) = |
65bbef66e2ec
clarified treatment of unnamed PThm nodes (from close_derivation): retain full proof, publish when named;
wenzelm
parents:
70399
diff
changeset
|
1616 |
let |
65bbef66e2ec
clarified treatment of unnamed PThm nodes (from close_derivation): retain full proof, publish when named;
wenzelm
parents:
70399
diff
changeset
|
1617 |
val (maxidx', prfs', prf1') = clean maxidx prfs prf1; |
65bbef66e2ec
clarified treatment of unnamed PThm nodes (from close_derivation): retain full proof, publish when named;
wenzelm
parents:
70399
diff
changeset
|
1618 |
val (maxidx'', prfs'', prf2') = clean maxidx' prfs' prf2; |
65bbef66e2ec
clarified treatment of unnamed PThm nodes (from close_derivation): retain full proof, publish when named;
wenzelm
parents:
70399
diff
changeset
|
1619 |
in (maxidx'', prfs'', prf1' %% prf2') end |
65bbef66e2ec
clarified treatment of unnamed PThm nodes (from close_derivation): retain full proof, publish when named;
wenzelm
parents:
70399
diff
changeset
|
1620 |
| clean maxidx prfs (prf % t) = |
65bbef66e2ec
clarified treatment of unnamed PThm nodes (from close_derivation): retain full proof, publish when named;
wenzelm
parents:
70399
diff
changeset
|
1621 |
let val (maxidx', prfs', prf') = clean maxidx prfs prf |
65bbef66e2ec
clarified treatment of unnamed PThm nodes (from close_derivation): retain full proof, publish when named;
wenzelm
parents:
70399
diff
changeset
|
1622 |
in (maxidx', prfs', prf' % t) end |
70412
64ead6de6212
defer rew_proof on unnamed PThm node as open_proof operation: significant performance improvement;
wenzelm
parents:
70409
diff
changeset
|
1623 |
| clean maxidx prfs (PThm (_, (("", prop, SOME Ts, _), body))) = |
70400
65bbef66e2ec
clarified treatment of unnamed PThm nodes (from close_derivation): retain full proof, publish when named;
wenzelm
parents:
70399
diff
changeset
|
1624 |
let |
65bbef66e2ec
clarified treatment of unnamed PThm nodes (from close_derivation): retain full proof, publish when named;
wenzelm
parents:
70399
diff
changeset
|
1625 |
val (maxidx', prf, prfs') = |
65bbef66e2ec
clarified treatment of unnamed PThm nodes (from close_derivation): retain full proof, publish when named;
wenzelm
parents:
70399
diff
changeset
|
1626 |
(case AList.lookup (op =) prfs prop of |
65bbef66e2ec
clarified treatment of unnamed PThm nodes (from close_derivation): retain full proof, publish when named;
wenzelm
parents:
70399
diff
changeset
|
1627 |
NONE => |
65bbef66e2ec
clarified treatment of unnamed PThm nodes (from close_derivation): retain full proof, publish when named;
wenzelm
parents:
70399
diff
changeset
|
1628 |
let |
65bbef66e2ec
clarified treatment of unnamed PThm nodes (from close_derivation): retain full proof, publish when named;
wenzelm
parents:
70399
diff
changeset
|
1629 |
val prf' = forall_intr_vfs_prf prop (join_proof body); |
65bbef66e2ec
clarified treatment of unnamed PThm nodes (from close_derivation): retain full proof, publish when named;
wenzelm
parents:
70399
diff
changeset
|
1630 |
val (maxidx', prfs', prf) = clean (maxidx_proof prf' ~1) prfs prf'; |
65bbef66e2ec
clarified treatment of unnamed PThm nodes (from close_derivation): retain full proof, publish when named;
wenzelm
parents:
70399
diff
changeset
|
1631 |
val prfs'' = (prop, (maxidx', prf)) :: prfs'; |
65bbef66e2ec
clarified treatment of unnamed PThm nodes (from close_derivation): retain full proof, publish when named;
wenzelm
parents:
70399
diff
changeset
|
1632 |
in (maxidx' + maxidx + 1, incr_indexes (maxidx + 1) prf, prfs'') end |
65bbef66e2ec
clarified treatment of unnamed PThm nodes (from close_derivation): retain full proof, publish when named;
wenzelm
parents:
70399
diff
changeset
|
1633 |
| SOME (maxidx', prf) => (maxidx' + maxidx + 1, incr_indexes (maxidx + 1) prf, prfs)); |
70419 | 1634 |
in (maxidx', prfs', app_types (maxidx + 1) prop Ts prf) end |
70400
65bbef66e2ec
clarified treatment of unnamed PThm nodes (from close_derivation): retain full proof, publish when named;
wenzelm
parents:
70399
diff
changeset
|
1635 |
| clean maxidx prfs prf = (maxidx, prfs, prf); |
65bbef66e2ec
clarified treatment of unnamed PThm nodes (from close_derivation): retain full proof, publish when named;
wenzelm
parents:
70399
diff
changeset
|
1636 |
|
70405 | 1637 |
in rew_proof thy (#3 (clean (maxidx_proof prf ~1) [] prf)) end; |
70400
65bbef66e2ec
clarified treatment of unnamed PThm nodes (from close_derivation): retain full proof, publish when named;
wenzelm
parents:
70399
diff
changeset
|
1638 |
|
65bbef66e2ec
clarified treatment of unnamed PThm nodes (from close_derivation): retain full proof, publish when named;
wenzelm
parents:
70399
diff
changeset
|
1639 |
|
70397 | 1640 |
|
1641 |
(** promises **) |
|
11519 | 1642 |
|
33722
e588744f14da
generalized procs for rewrite_proof: allow skeleton;
wenzelm
parents:
33522
diff
changeset
|
1643 |
fun fulfill_norm_proof thy ps body0 = |
e588744f14da
generalized procs for rewrite_proof: allow skeleton;
wenzelm
parents:
33522
diff
changeset
|
1644 |
let |
66168 | 1645 |
val _ = consolidate (map #2 ps @ [body0]); |
33722
e588744f14da
generalized procs for rewrite_proof: allow skeleton;
wenzelm
parents:
33522
diff
changeset
|
1646 |
val PBody {oracles = oracles0, thms = thms0, proof = proof0} = body0; |
44334 | 1647 |
val oracles = |
1648 |
unions_oracles |
|
1649 |
(fold (fn (_, PBody {oracles, ...}) => not (null oracles) ? cons oracles) ps [oracles0]); |
|
1650 |
val thms = |
|
1651 |
unions_thms (fold (fn (_, PBody {thms, ...}) => not (null thms) ? cons thms) ps [thms0]); |
|
70398 | 1652 |
val proof = rew_proof thy proof0; |
33722
e588744f14da
generalized procs for rewrite_proof: allow skeleton;
wenzelm
parents:
33522
diff
changeset
|
1653 |
in PBody {oracles = oracles, thms = thms, proof = proof} end; |
28828
c25dd83a6f9f
unified treatment of PAxm/Oracle/Promise in basic proof term operations;
wenzelm
parents:
28815
diff
changeset
|
1654 |
|
70395
af88c05696bd
clarified postproc: apply shrink_proof last, e.g. relevant for export of full proof term;
wenzelm
parents:
70394
diff
changeset
|
1655 |
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
|
1656 |
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
|
1657 |
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
|
1658 |
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
|
1659 |
in |
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
|
1660 |
if null promises then Future.map postproc 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
|
1661 |
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
|
1662 |
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
|
1663 |
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
|
1664 |
(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
|
1665 |
{name = "Proofterm.fulfill_proof_future", group = NONE, |
70415
3c20a86f14f1
finalize proofs earlier to reduce memory requirement;
wenzelm
parents:
70413
diff
changeset
|
1666 |
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
|
1667 |
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
|
1668 |
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
|
1669 |
end; |
29642 | 1670 |
|
28828
c25dd83a6f9f
unified treatment of PAxm/Oracle/Promise in basic proof term operations;
wenzelm
parents:
28815
diff
changeset
|
1671 |
|
70397 | 1672 |
|
1673 |
(** theorems **) |
|
11519 | 1674 |
|
70409 | 1675 |
val proof_serial = Counter.make (); |
1676 |
||
70416 | 1677 |
local |
1678 |
||
70436 | 1679 |
fun unconstrainT_prf thy (ucontext: Logic.unconstrain_context) = |
1680 |
let |
|
1681 |
fun hyp_map hyp = |
|
1682 |
(case AList.lookup (op =) (#constraints ucontext) hyp of |
|
1683 |
SOME t => Hyp t |
|
1684 |
| NONE => raise Fail "unconstrainT_prf: missing constraint"); |
|
1685 |
||
1686 |
val typ = Term_Subst.map_atypsT_same (Type.strip_sorts o #atyp_map ucontext); |
|
1687 |
fun ofclass (ty, c) = |
|
1688 |
let val ty' = Term.map_atyps (#atyp_map ucontext) ty; |
|
1689 |
in the_single (of_sort_proof thy hyp_map (ty', [c])) end; |
|
1690 |
in |
|
1691 |
Same.commit (map_proof_same (Term_Subst.map_types_same typ) typ ofclass) |
|
1692 |
#> fold_rev (implies_intr_proof o snd) (#constraints ucontext) |
|
1693 |
end; |
|
1694 |
||
70416 | 1695 |
fun export thy i proof = |
1696 |
if Options.default_bool "export_proofs" then |
|
1697 |
Export.export thy (Path.binding0 (Path.make ["proofs", string_of_int i])) |
|
1698 |
(Buffer.chunks (YXML.buffer_body (Term_XML.Encode.term (term_of_proof proof)) Buffer.empty)) |
|
1699 |
else (); |
|
1700 |
||
1701 |
fun prune proof = |
|
1702 |
if Options.default_bool "prune_proofs" then MinProof |
|
1703 |
else shrink_proof proof; |
|
1704 |
||
70423 | 1705 |
fun prepare_thm_proof unconstrain thy name shyps hyps concl promises body = |
11519 | 1706 |
let |
70422 | 1707 |
val named = name <> ""; |
1708 |
||
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
|
1709 |
val prop = Logic.list_implies (hyps, concl); |
70416 | 1710 |
val args = prop_args prop; |
28803
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents:
28329
diff
changeset
|
1711 |
|
70436 | 1712 |
val (ucontext, prop1) = Logic.unconstrainT shyps prop; |
36882
f33760bb8ca0
conditionally unconstrain thm proofs -- loosely based on the version by krauss/schropp;
wenzelm
parents:
36880
diff
changeset
|
1713 |
|
70416 | 1714 |
val PBody {oracles = oracles0, thms = thms0, proof = prf} = body; |
37251
72c7e636067b
normalize and postprocess proof body in a separate future, taking care of platforms without multithreading (greately improves parallelization in general without the overhead of promised proofs, cf. usedir -q 0);
wenzelm
parents:
37236
diff
changeset
|
1715 |
val body0 = |
70416 | 1716 |
Future.value |
1717 |
(PBody {oracles = oracles0, thms = thms0, |
|
1718 |
proof = if proofs_enabled () then fold_rev implies_intr_proof hyps prf else MinProof}); |
|
70400
65bbef66e2ec
clarified treatment of unnamed PThm nodes (from close_derivation): retain full proof, publish when named;
wenzelm
parents:
70399
diff
changeset
|
1719 |
|
70422 | 1720 |
fun publish i = map_proof_of (clean_proof thy #> tap (export thy i) #> prune); |
1721 |
val open_proof = not named ? (clean_proof thy #> shrink_proof); |
|
1722 |
||
70396 | 1723 |
fun new_prf () = |
1724 |
let |
|
70409 | 1725 |
val i = proof_serial (); |
70436 | 1726 |
val postproc = map_proof_of (unconstrainT_prf thy ucontext) #> named ? publish i; |
70396 | 1727 |
in (i, fulfill_proof_future thy promises postproc body0) end; |
70395
af88c05696bd
clarified postproc: apply shrink_proof last, e.g. relevant for export of full proof term;
wenzelm
parents:
70394
diff
changeset
|
1728 |
|
36880
49d3cc859a12
avoid redundant rebinding of name/prop -- probably introduced accidentally in 80bb72a0f577;
wenzelm
parents:
36879
diff
changeset
|
1729 |
val (i, body') = |
41699 | 1730 |
(*non-deterministic, depends on unknown promises*) |
28803
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents:
28329
diff
changeset
|
1731 |
(case strip_combt (fst (strip_combP prf)) of |
70412
64ead6de6212
defer rew_proof on unnamed PThm node as open_proof operation: significant performance improvement;
wenzelm
parents:
70409
diff
changeset
|
1732 |
(PThm (i, ((a, prop', NONE, _), body')), args') => |
70423 | 1733 |
if (a = "" orelse a = name) andalso prop' = prop1 andalso args' = args |
70422 | 1734 |
then (i, body' |> (a = "" andalso named) ? Future.map (publish i)) |
28803
d90258bbb18f
reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents:
28329
diff
changeset
|
1735 |
else new_prf () |
28815 | 1736 |
| _ => new_prf ()); |
70416 | 1737 |
|
70423 | 1738 |
val pthm = (i, make_thm_node name prop1 body'); |
1739 |
||
70412
64ead6de6212
defer rew_proof on unnamed PThm node as open_proof operation: significant performance improvement;
wenzelm
parents:
70409
diff
changeset
|
1740 |
val head = PThm (i, ((name, prop1, NONE, open_proof), body')); |
70423 | 1741 |
val proof = |
70439 | 1742 |
if unconstrain then |
1743 |
proof_combt' (head, (map o Option.map o Term.map_types) (#map_atyps ucontext) args) |
|
1744 |
else |
|
1745 |
proof_combP (proof_combt' (head, args), |
|
1746 |
map OfClass (#outer_constraints ucontext) @ map Hyp hyps); |
|
70423 | 1747 |
in (pthm, proof) end; |
36883
4ed0d72def50
added Proofterm.unconstrain_thm_proof for Thm.unconstrainT -- loosely based on the version by krauss/schropp;
wenzelm
parents:
36882
diff
changeset
|
1748 |
|
70422 | 1749 |
in |
1750 |
||
70423 | 1751 |
val thm_proof = prepare_thm_proof false; |
36883
4ed0d72def50
added Proofterm.unconstrain_thm_proof for Thm.unconstrainT -- loosely based on the version by krauss/schropp;
wenzelm
parents:
36882
diff
changeset
|
1752 |
|
4ed0d72def50
added Proofterm.unconstrain_thm_proof for Thm.unconstrainT -- loosely based on the version by krauss/schropp;
wenzelm
parents:
36882
diff
changeset
|
1753 |
fun unconstrain_thm_proof thy shyps concl promises body = |
70423 | 1754 |
prepare_thm_proof true thy "" 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
|
1755 |
|
70422 | 1756 |
end; |
1757 |
||
11519 | 1758 |
|
70416 | 1759 |
(* approximative PThm name *) |
1760 |
||
37297 | 1761 |
fun get_name shyps hyps prop prf = |
70436 | 1762 |
let val (_, prop) = Logic.unconstrainT shyps (Logic.list_implies (hyps, prop)) in |
36877
7699f7fafde7
added Proofterm.get_name variants according to krauss/schropp;
wenzelm
parents:
36742
diff
changeset
|
1763 |
(case strip_combt (fst (strip_combP prf)) of |
70412
64ead6de6212
defer rew_proof on unnamed PThm node as open_proof operation: significant performance improvement;
wenzelm
parents:
70409
diff
changeset
|
1764 |
(PThm (_, ((name, prop', _, _), _)), _) => if prop = prop' then name else "" |
36877
7699f7fafde7
added Proofterm.get_name variants according to krauss/schropp;
wenzelm
parents:
36742
diff
changeset
|
1765 |
| _ => "") |
7699f7fafde7
added Proofterm.get_name variants according to krauss/schropp;
wenzelm
parents:
36742
diff
changeset
|
1766 |
end; |
7699f7fafde7
added Proofterm.get_name variants according to krauss/schropp;
wenzelm
parents:
36742
diff
changeset
|
1767 |
|
70412
64ead6de6212
defer rew_proof on unnamed PThm node as open_proof operation: significant performance improvement;
wenzelm
parents:
70409
diff
changeset
|
1768 |
fun guess_name (PThm (_, ((name, _, _, _), _))) = name |
36877
7699f7fafde7
added Proofterm.get_name variants according to krauss/schropp;
wenzelm
parents:
36742
diff
changeset
|
1769 |
| guess_name (prf %% Hyp _) = guess_name prf |
7699f7fafde7
added Proofterm.get_name variants according to krauss/schropp;
wenzelm
parents:
36742
diff
changeset
|
1770 |
| guess_name (prf %% OfClass _) = guess_name prf |
7699f7fafde7
added Proofterm.get_name variants according to krauss/schropp;
wenzelm
parents:
36742
diff
changeset
|
1771 |
| guess_name (prf % NONE) = guess_name prf |
7699f7fafde7
added Proofterm.get_name variants according to krauss/schropp;
wenzelm
parents:
36742
diff
changeset
|
1772 |
| guess_name (prf % SOME (Var _)) = guess_name prf |
7699f7fafde7
added Proofterm.get_name variants according to krauss/schropp;
wenzelm
parents:
36742
diff
changeset
|
1773 |
| guess_name _ = ""; |
7699f7fafde7
added Proofterm.get_name variants according to krauss/schropp;
wenzelm
parents:
36742
diff
changeset
|
1774 |
|
11519 | 1775 |
end; |
1776 |
||
32094
89b9210c7506
prefer simultaneous join -- for improved scheduling;
wenzelm
parents:
32057
diff
changeset
|
1777 |
structure Basic_Proofterm : BASIC_PROOFTERM = Proofterm; |
89b9210c7506
prefer simultaneous join -- for improved scheduling;
wenzelm
parents:
32057
diff
changeset
|
1778 |
open Basic_Proofterm; |