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