author | quigley |
Wed, 20 Apr 2005 16:03:17 +0200 | |
changeset 15779 | aed221aff642 |
parent 15632 | bb178a7a69c1 |
child 15797 | a63605582573 |
permissions | -rw-r--r-- |
11519 | 1 |
(* Title: Pure/proofterm.ML |
2 |
ID: $Id$ |
|
11540 | 3 |
Author: Stefan Berghofer, TU Muenchen |
11519 | 4 |
|
11540 | 5 |
LF style proof terms. |
11519 | 6 |
*) |
7 |
||
11615 | 8 |
infix 8 % %% %>; |
11519 | 9 |
|
10 |
signature BASIC_PROOFTERM = |
|
11 |
sig |
|
11543
d61b913431c5
renamed `keep_derivs' to `proofs', and made an integer;
wenzelm
parents:
11540
diff
changeset
|
12 |
val proofs: int ref |
11519 | 13 |
|
14 |
datatype proof = |
|
15 |
PBound of int |
|
16 |
| Abst of string * typ option * proof |
|
17 |
| AbsP of string * term option * proof |
|
15632
bb178a7a69c1
op vor infix-Konstruktoren im datatype binding zum besseren Parsen
gagern
parents:
15574
diff
changeset
|
18 |
| op % of proof * term option |
bb178a7a69c1
op vor infix-Konstruktoren im datatype binding zum besseren Parsen
gagern
parents:
15574
diff
changeset
|
19 |
| op %% of proof * proof |
11519 | 20 |
| Hyp of term |
21 |
| PThm of (string * (string * string list) list) * proof * term * typ list option |
|
22 |
| PAxm of string * term * typ list option |
|
23 |
| Oracle of string * term * typ list option |
|
24 |
| MinProof of proof list; |
|
25 |
||
11615 | 26 |
val %> : proof * term -> proof |
11519 | 27 |
end; |
28 |
||
29 |
signature PROOFTERM = |
|
30 |
sig |
|
31 |
include BASIC_PROOFTERM |
|
32 |
||
33 |
val infer_derivs : (proof -> proof -> proof) -> bool * proof -> bool * proof -> bool * proof |
|
34 |
val infer_derivs' : (proof -> proof) -> (bool * proof -> bool * proof) |
|
35 |
||
36 |
(** primitive operations **) |
|
37 |
val proof_combt : proof * term list -> proof |
|
38 |
val proof_combt' : proof * term option list -> proof |
|
39 |
val proof_combP : proof * proof list -> proof |
|
40 |
val strip_combt : proof -> proof * term option list |
|
41 |
val strip_combP : proof -> proof * proof list |
|
42 |
val strip_thm : proof -> proof |
|
43 |
val map_proof_terms : (term -> term) -> (typ -> typ) -> proof -> proof |
|
44 |
val fold_proof_terms : (term * 'a -> 'a) -> (typ * 'a -> 'a) -> 'a * proof -> 'a |
|
45 |
val add_prf_names : string list * proof -> string list |
|
46 |
val add_prf_tfree_names : string list * proof -> string list |
|
47 |
val add_prf_tvar_ixns : indexname list * proof -> indexname list |
|
12868 | 48 |
val maxidx_of_proof : proof -> int |
13744 | 49 |
val size_of_proof : proof -> int |
12907
27e6d344d724
New function change_type for changing type assignments of theorems,
berghofe
parents:
12890
diff
changeset
|
50 |
val change_type : typ list option -> proof -> proof |
11519 | 51 |
val prf_abstract_over : term -> proof -> proof |
52 |
val prf_incr_bv : int -> int -> int -> int -> proof -> proof |
|
53 |
val incr_pboundvars : int -> int -> proof -> proof |
|
54 |
val prf_loose_bvar1 : proof -> int -> bool |
|
55 |
val prf_loose_Pbvar1 : proof -> int -> bool |
|
12279 | 56 |
val prf_add_loose_bnos : int -> int -> proof -> |
57 |
int list * int list -> int list * int list |
|
11519 | 58 |
val norm_proof : Envir.env -> proof -> proof |
59 |
val norm_proof' : Envir.env -> proof -> proof |
|
60 |
val prf_subst_bounds : term list -> proof -> proof |
|
61 |
val prf_subst_pbounds : proof list -> proof -> proof |
|
62 |
val freeze_thaw_prf : proof -> proof * (proof -> proof) |
|
63 |
||
64 |
val thms_of_proof : (term * proof) list Symtab.table -> proof -> |
|
65 |
(term * proof) list Symtab.table |
|
66 |
val axms_of_proof : proof Symtab.table -> proof -> proof Symtab.table |
|
67 |
val oracles_of_proof : proof list -> proof -> proof list |
|
68 |
||
69 |
(** proof terms for specific inference rules **) |
|
70 |
val implies_intr_proof : term -> proof -> proof |
|
71 |
val forall_intr_proof : term -> string -> proof -> proof |
|
72 |
val varify_proof : term -> string list -> proof -> proof |
|
73 |
val freezeT : term -> proof -> proof |
|
74 |
val rotate_proof : term list -> term -> int -> proof -> proof |
|
75 |
val permute_prems_prf : term list -> int -> int -> proof -> proof |
|
76 |
val instantiate : (indexname * typ) list -> (term * term) list -> proof -> proof |
|
77 |
val lift_proof : term -> int -> term -> proof -> proof |
|
78 |
val assumption_proof : term list -> term -> int -> proof -> proof |
|
79 |
val bicompose_proof : term list -> term list -> term list -> term option -> |
|
80 |
int -> proof -> proof -> proof |
|
81 |
val equality_axms : (string * term) list |
|
82 |
val reflexive_axm : proof |
|
83 |
val symmetric_axm : proof |
|
84 |
val transitive_axm : proof |
|
85 |
val equal_intr_axm : proof |
|
86 |
val equal_elim_axm : proof |
|
87 |
val abstract_rule_axm : proof |
|
88 |
val combination_axm : proof |
|
89 |
val reflexive : proof |
|
90 |
val symmetric : proof -> proof |
|
91 |
val transitive : term -> typ -> proof -> proof -> proof |
|
92 |
val abstract_rule : term -> string -> proof -> proof |
|
93 |
val combination : term -> term -> term -> term -> typ -> proof -> proof -> proof |
|
94 |
val equal_intr : term -> term -> proof -> proof -> proof |
|
95 |
val equal_elim : term -> term -> proof -> proof -> proof |
|
96 |
val axm_proof : string -> term -> proof |
|
97 |
val oracle_proof : string -> term -> proof |
|
98 |
val thm_proof : Sign.sg -> string * (string * string list) list -> |
|
99 |
term list -> term -> proof -> proof |
|
12923 | 100 |
val get_name_tags : term list -> term -> proof -> string * (string * string list) list |
11519 | 101 |
|
102 |
(** rewriting on proof terms **) |
|
12233 | 103 |
val add_prf_rrules : (proof * proof) list -> theory -> theory |
104 |
val add_prf_rprocs : (string * (Term.typ list -> proof -> proof option)) list -> |
|
105 |
theory -> theory |
|
14787 | 106 |
val rewrite_proof : Type.tsig -> (proof * proof) list * |
11519 | 107 |
(string * (typ list -> proof -> proof option)) list -> proof -> proof |
11615 | 108 |
val rewrite_proof_notypes : (proof * proof) list * |
109 |
(string * (typ list -> proof -> proof option)) list -> proof -> proof |
|
11519 | 110 |
val init : theory -> theory |
111 |
||
112 |
end |
|
113 |
||
114 |
structure Proofterm : PROOFTERM = |
|
115 |
struct |
|
116 |
||
11715
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents:
11652
diff
changeset
|
117 |
open Envir; |
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents:
11652
diff
changeset
|
118 |
|
11519 | 119 |
datatype proof = |
120 |
PBound of int |
|
121 |
| Abst of string * typ option * proof |
|
122 |
| AbsP of string * term option * proof |
|
12497 | 123 |
| op % of proof * term option |
124 |
| op %% of proof * proof |
|
11519 | 125 |
| Hyp of term |
126 |
| PThm of (string * (string * string list) list) * proof * term * typ list option |
|
127 |
| PAxm of string * term * typ list option |
|
128 |
| Oracle of string * term * typ list option |
|
129 |
| MinProof of proof list; |
|
130 |
||
131 |
fun oracles_of_proof prfs prf = |
|
132 |
let |
|
133 |
fun oras_of (tabs, Abst (_, _, prf)) = oras_of (tabs, prf) |
|
134 |
| oras_of (tabs, AbsP (_, _, prf)) = oras_of (tabs, prf) |
|
11615 | 135 |
| oras_of (tabs, prf % _) = oras_of (tabs, prf) |
136 |
| oras_of (tabs, prf1 %% prf2) = oras_of (oras_of (tabs, prf1), prf2) |
|
11519 | 137 |
| oras_of (tabs as (thms, oras), PThm ((name, _), prf, prop, _)) = |
138 |
(case Symtab.lookup (thms, name) of |
|
15531 | 139 |
NONE => oras_of ((Symtab.update ((name, [prop]), thms), oras), prf) |
140 |
| SOME ps => if prop mem ps then tabs else |
|
11519 | 141 |
oras_of ((Symtab.update ((name, prop::ps), thms), oras), prf)) |
142 |
| oras_of ((thms, oras), prf as Oracle _) = (thms, prf ins oras) |
|
15570 | 143 |
| oras_of (tabs, MinProof prfs) = Library.foldl oras_of (tabs, prfs) |
11519 | 144 |
| oras_of (tabs, _) = tabs |
145 |
in |
|
146 |
snd (oras_of ((Symtab.empty, prfs), prf)) |
|
147 |
end; |
|
148 |
||
149 |
fun thms_of_proof tab (Abst (_, _, prf)) = thms_of_proof tab prf |
|
150 |
| thms_of_proof tab (AbsP (_, _, prf)) = thms_of_proof tab prf |
|
11615 | 151 |
| thms_of_proof tab (prf1 %% prf2) = thms_of_proof (thms_of_proof tab prf1) prf2 |
152 |
| thms_of_proof tab (prf % _) = thms_of_proof tab prf |
|
11519 | 153 |
| thms_of_proof tab (prf' as PThm ((s, _), prf, prop, _)) = |
154 |
(case Symtab.lookup (tab, s) of |
|
15531 | 155 |
NONE => thms_of_proof (Symtab.update ((s, [(prop, prf')]), tab)) prf |
156 |
| SOME ps => if exists (equal prop o fst) ps then tab else |
|
11519 | 157 |
thms_of_proof (Symtab.update ((s, (prop, prf')::ps), tab)) prf) |
15570 | 158 |
| thms_of_proof tab (MinProof prfs) = Library.foldl (uncurry thms_of_proof) (tab, prfs) |
11519 | 159 |
| thms_of_proof tab _ = tab; |
160 |
||
161 |
fun axms_of_proof tab (Abst (_, _, prf)) = axms_of_proof tab prf |
|
162 |
| axms_of_proof tab (AbsP (_, _, prf)) = axms_of_proof tab prf |
|
11615 | 163 |
| axms_of_proof tab (prf1 %% prf2) = axms_of_proof (axms_of_proof tab prf1) prf2 |
164 |
| axms_of_proof tab (prf % _) = axms_of_proof tab prf |
|
11519 | 165 |
| axms_of_proof tab (prf as PAxm (s, _, _)) = Symtab.update ((s, prf), tab) |
15570 | 166 |
| axms_of_proof tab (MinProof prfs) = Library.foldl (uncurry axms_of_proof) (tab, prfs) |
11519 | 167 |
| axms_of_proof tab _ = tab; |
168 |
||
169 |
(** collect all theorems, axioms and oracles **) |
|
170 |
||
171 |
fun mk_min_proof (prfs, Abst (_, _, prf)) = mk_min_proof (prfs, prf) |
|
172 |
| mk_min_proof (prfs, AbsP (_, _, prf)) = mk_min_proof (prfs, prf) |
|
11615 | 173 |
| mk_min_proof (prfs, prf % _) = mk_min_proof (prfs, prf) |
174 |
| mk_min_proof (prfs, prf1 %% prf2) = mk_min_proof (mk_min_proof (prfs, prf1), prf2) |
|
11519 | 175 |
| mk_min_proof (prfs, prf as PThm _) = prf ins prfs |
176 |
| mk_min_proof (prfs, prf as PAxm _) = prf ins prfs |
|
177 |
| mk_min_proof (prfs, prf as Oracle _) = prf ins prfs |
|
178 |
| mk_min_proof (prfs, MinProof prfs') = prfs union prfs' |
|
179 |
| mk_min_proof (prfs, _) = prfs; |
|
180 |
||
181 |
(** proof objects with different levels of detail **) |
|
182 |
||
11543
d61b913431c5
renamed `keep_derivs' to `proofs', and made an integer;
wenzelm
parents:
11540
diff
changeset
|
183 |
val proofs = ref 2; |
11519 | 184 |
|
11543
d61b913431c5
renamed `keep_derivs' to `proofs', and made an integer;
wenzelm
parents:
11540
diff
changeset
|
185 |
fun err_illegal_level i = |
d61b913431c5
renamed `keep_derivs' to `proofs', and made an integer;
wenzelm
parents:
11540
diff
changeset
|
186 |
error ("Illegal level of detail for proof objects: " ^ string_of_int i); |
11519 | 187 |
|
188 |
fun if_ora b = if b then oracles_of_proof else K; |
|
189 |
||
190 |
fun infer_derivs f (ora1, prf1) (ora2, prf2) = |
|
191 |
(ora1 orelse ora2, |
|
11543
d61b913431c5
renamed `keep_derivs' to `proofs', and made an integer;
wenzelm
parents:
11540
diff
changeset
|
192 |
case !proofs of |
d61b913431c5
renamed `keep_derivs' to `proofs', and made an integer;
wenzelm
parents:
11540
diff
changeset
|
193 |
2 => f prf1 prf2 |
d61b913431c5
renamed `keep_derivs' to `proofs', and made an integer;
wenzelm
parents:
11540
diff
changeset
|
194 |
| 1 => MinProof (mk_min_proof (mk_min_proof ([], prf1), prf2)) |
d61b913431c5
renamed `keep_derivs' to `proofs', and made an integer;
wenzelm
parents:
11540
diff
changeset
|
195 |
| 0 => MinProof (if_ora ora2 (if_ora ora1 [] prf1) prf2) |
d61b913431c5
renamed `keep_derivs' to `proofs', and made an integer;
wenzelm
parents:
11540
diff
changeset
|
196 |
| i => err_illegal_level i); |
11519 | 197 |
|
15030
1be2cce95318
- Expressed infer_derivs' in terms of infer_deriv
berghofe
parents:
14981
diff
changeset
|
198 |
fun infer_derivs' f = infer_derivs (K f) (false, MinProof []); |
11519 | 199 |
|
15531 | 200 |
fun (prf %> t) = prf % SOME t; |
11519 | 201 |
|
15570 | 202 |
val proof_combt = Library.foldl (op %>); |
203 |
val proof_combt' = Library.foldl (op %); |
|
204 |
val proof_combP = Library.foldl (op %%); |
|
11519 | 205 |
|
206 |
fun strip_combt prf = |
|
11615 | 207 |
let fun stripc (prf % t, ts) = stripc (prf, t::ts) |
11519 | 208 |
| stripc x = x |
209 |
in stripc (prf, []) end; |
|
210 |
||
211 |
fun strip_combP prf = |
|
11615 | 212 |
let fun stripc (prf %% prf', prfs) = stripc (prf, prf'::prfs) |
11519 | 213 |
| stripc x = x |
214 |
in stripc (prf, []) end; |
|
215 |
||
216 |
fun strip_thm prf = (case strip_combt (fst (strip_combP prf)) of |
|
217 |
(PThm (_, prf', _, _), _) => prf' |
|
218 |
| _ => prf); |
|
219 |
||
15574
b1d1b5bfc464
Removed practically all references to Library.foldr.
skalberg
parents:
15570
diff
changeset
|
220 |
val mk_Abst = foldr (fn ((s, T:typ), prf) => Abst (s, NONE, prf)); |
15531 | 221 |
fun mk_AbsP (i, prf) = funpow i (fn prf => AbsP ("H", NONE, prf)) prf; |
11519 | 222 |
|
15531 | 223 |
fun apsome' f NONE = raise SAME |
224 |
| apsome' f (SOME x) = SOME (f x); |
|
11715
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents:
11652
diff
changeset
|
225 |
|
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents:
11652
diff
changeset
|
226 |
fun same f x = |
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents:
11652
diff
changeset
|
227 |
let val x' = f x |
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents:
11652
diff
changeset
|
228 |
in if x = x' then raise SAME else x' end; |
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents:
11652
diff
changeset
|
229 |
|
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents:
11652
diff
changeset
|
230 |
fun map_proof_terms f g = |
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents:
11652
diff
changeset
|
231 |
let |
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents:
11652
diff
changeset
|
232 |
fun mapp (Abst (s, T, prf)) = (Abst (s, apsome' (same g) T, mapph prf) |
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents:
11652
diff
changeset
|
233 |
handle SAME => Abst (s, T, mapp prf)) |
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents:
11652
diff
changeset
|
234 |
| mapp (AbsP (s, t, prf)) = (AbsP (s, apsome' (same f) t, mapph prf) |
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents:
11652
diff
changeset
|
235 |
handle SAME => AbsP (s, t, mapp prf)) |
15570 | 236 |
| mapp (prf % t) = (mapp prf % Option.map f t |
11715
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents:
11652
diff
changeset
|
237 |
handle SAME => prf % apsome' (same f) t) |
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents:
11652
diff
changeset
|
238 |
| mapp (prf1 %% prf2) = (mapp prf1 %% mapph prf2 |
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents:
11652
diff
changeset
|
239 |
handle SAME => prf1 %% mapp prf2) |
15531 | 240 |
| mapp (PThm (a, prf, prop, SOME Ts)) = |
241 |
PThm (a, prf, prop, SOME (same (map g) Ts)) |
|
242 |
| mapp (PAxm (a, prop, SOME Ts)) = |
|
243 |
PAxm (a, prop, SOME (same (map g) Ts)) |
|
11715
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents:
11652
diff
changeset
|
244 |
| mapp _ = raise SAME |
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents:
11652
diff
changeset
|
245 |
and mapph prf = (mapp prf handle SAME => prf) |
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents:
11652
diff
changeset
|
246 |
|
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents:
11652
diff
changeset
|
247 |
in mapph end; |
11519 | 248 |
|
15531 | 249 |
fun fold_proof_terms f g (a, Abst (_, SOME T, prf)) = fold_proof_terms f g (g (T, a), prf) |
250 |
| fold_proof_terms f g (a, Abst (_, NONE, prf)) = fold_proof_terms f g (a, prf) |
|
251 |
| fold_proof_terms f g (a, AbsP (_, SOME t, prf)) = fold_proof_terms f g (f (t, a), prf) |
|
252 |
| fold_proof_terms f g (a, AbsP (_, NONE, prf)) = fold_proof_terms f g (a, prf) |
|
253 |
| fold_proof_terms f g (a, prf % SOME t) = f (t, fold_proof_terms f g (a, prf)) |
|
254 |
| fold_proof_terms f g (a, prf % NONE) = fold_proof_terms f g (a, prf) |
|
11615 | 255 |
| fold_proof_terms f g (a, prf1 %% prf2) = fold_proof_terms f g |
11519 | 256 |
(fold_proof_terms f g (a, prf1), prf2) |
15574
b1d1b5bfc464
Removed practically all references to Library.foldr.
skalberg
parents:
15570
diff
changeset
|
257 |
| fold_proof_terms _ g (a, PThm (_, _, _, SOME Ts)) = foldr g a Ts |
b1d1b5bfc464
Removed practically all references to Library.foldr.
skalberg
parents:
15570
diff
changeset
|
258 |
| fold_proof_terms _ g (a, PAxm (_, prop, SOME Ts)) = foldr g a Ts |
11519 | 259 |
| fold_proof_terms _ _ (a, _) = a; |
260 |
||
261 |
val add_prf_names = fold_proof_terms add_term_names ((uncurry K) o swap); |
|
262 |
val add_prf_tfree_names = fold_proof_terms add_term_tfree_names add_typ_tfree_names; |
|
263 |
val add_prf_tvar_ixns = fold_proof_terms add_term_tvar_ixns (add_typ_ixns o swap); |
|
264 |
||
12868 | 265 |
fun maxidx_of_proof prf = fold_proof_terms |
266 |
(Int.max o apfst maxidx_of_term) (Int.max o apfst maxidx_of_typ) (~1, prf); |
|
267 |
||
13744 | 268 |
fun size_of_proof (Abst (_, _, prf)) = 1 + size_of_proof prf |
13749 | 269 |
| size_of_proof (AbsP (_, t, prf)) = 1 + size_of_proof prf |
13744 | 270 |
| size_of_proof (prf1 %% prf2) = size_of_proof prf1 + size_of_proof prf2 |
13749 | 271 |
| size_of_proof (prf % _) = 1 + size_of_proof prf |
13744 | 272 |
| size_of_proof _ = 1; |
273 |
||
12907
27e6d344d724
New function change_type for changing type assignments of theorems,
berghofe
parents:
12890
diff
changeset
|
274 |
fun change_type opTs (PThm (name, prf, prop, _)) = PThm (name, prf, prop, opTs) |
27e6d344d724
New function change_type for changing type assignments of theorems,
berghofe
parents:
12890
diff
changeset
|
275 |
| change_type opTs (PAxm (name, prop, _)) = PAxm (name, prop, opTs) |
27e6d344d724
New function change_type for changing type assignments of theorems,
berghofe
parents:
12890
diff
changeset
|
276 |
| change_type opTs (Oracle (name, prop, _)) = Oracle (name, prop, opTs) |
27e6d344d724
New function change_type for changing type assignments of theorems,
berghofe
parents:
12890
diff
changeset
|
277 |
| change_type _ prf = prf; |
27e6d344d724
New function change_type for changing type assignments of theorems,
berghofe
parents:
12890
diff
changeset
|
278 |
|
11519 | 279 |
|
280 |
(***** utilities *****) |
|
281 |
||
282 |
fun strip_abs (_::Ts) (Abs (_, _, t)) = strip_abs Ts t |
|
283 |
| strip_abs _ t = t; |
|
284 |
||
15570 | 285 |
fun mk_abs Ts t = Library.foldl (fn (t', T) => Abs ("", T, t')) (t, Ts); |
11519 | 286 |
|
287 |
||
288 |
(*Abstraction of a proof term over its occurrences of v, |
|
289 |
which must contain no loose bound variables. |
|
290 |
The resulting proof term is ready to become the body of an Abst.*) |
|
291 |
||
292 |
fun prf_abstract_over v = |
|
293 |
let |
|
11715
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents:
11652
diff
changeset
|
294 |
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
|
295 |
(case u of |
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents:
11652
diff
changeset
|
296 |
Abs (a, T, t) => Abs (a, T, abst' (lev + 1) t) |
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents:
11652
diff
changeset
|
297 |
| f $ t => (abst' lev f $ absth' lev t handle SAME => f $ abst' lev t) |
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents:
11652
diff
changeset
|
298 |
| _ => raise SAME) |
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents:
11652
diff
changeset
|
299 |
and absth' lev t = (abst' lev t handle SAME => t); |
11519 | 300 |
|
11715
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents:
11652
diff
changeset
|
301 |
fun abst lev (AbsP (a, t, prf)) = |
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents:
11652
diff
changeset
|
302 |
(AbsP (a, apsome' (abst' lev) t, absth lev prf) |
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents:
11652
diff
changeset
|
303 |
handle SAME => AbsP (a, t, abst lev prf)) |
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents:
11652
diff
changeset
|
304 |
| 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
|
305 |
| abst lev (prf1 %% prf2) = (abst lev prf1 %% absth lev prf2 |
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents:
11652
diff
changeset
|
306 |
handle SAME => prf1 %% abst lev prf2) |
15570 | 307 |
| abst lev (prf % t) = (abst lev prf % Option.map (absth' lev) t |
11715
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents:
11652
diff
changeset
|
308 |
handle SAME => prf % apsome' (abst' lev) t) |
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents:
11652
diff
changeset
|
309 |
| abst _ _ = raise SAME |
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents:
11652
diff
changeset
|
310 |
and absth lev prf = (abst lev prf handle SAME => prf) |
11519 | 311 |
|
11715
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents:
11652
diff
changeset
|
312 |
in absth 0 end; |
11519 | 313 |
|
314 |
||
315 |
(*increments a proof term's non-local bound variables |
|
316 |
required when moving a proof term within abstractions |
|
317 |
inc is increment for bound variables |
|
318 |
lev is level at which a bound variable is considered 'loose'*) |
|
319 |
||
320 |
fun incr_bv' inct tlev t = incr_bv (inct, tlev, t); |
|
321 |
||
11715
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents:
11652
diff
changeset
|
322 |
fun prf_incr_bv' incP inct Plev tlev (PBound i) = |
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents:
11652
diff
changeset
|
323 |
if i >= Plev then PBound (i+incP) else raise SAME |
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents:
11652
diff
changeset
|
324 |
| prf_incr_bv' incP inct Plev tlev (AbsP (a, t, body)) = |
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents:
11652
diff
changeset
|
325 |
(AbsP (a, apsome' (same (incr_bv' inct tlev)) t, |
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents:
11652
diff
changeset
|
326 |
prf_incr_bv incP inct (Plev+1) tlev body) handle SAME => |
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents:
11652
diff
changeset
|
327 |
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
|
328 |
| 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
|
329 |
Abst (a, T, prf_incr_bv' incP inct Plev (tlev+1) body) |
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents:
11652
diff
changeset
|
330 |
| prf_incr_bv' incP inct Plev tlev (prf %% prf') = |
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents:
11652
diff
changeset
|
331 |
(prf_incr_bv' incP inct Plev tlev prf %% prf_incr_bv incP inct Plev tlev prf' |
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents:
11652
diff
changeset
|
332 |
handle SAME => prf %% prf_incr_bv' incP inct Plev tlev prf') |
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents:
11652
diff
changeset
|
333 |
| prf_incr_bv' incP inct Plev tlev (prf % t) = |
15570 | 334 |
(prf_incr_bv' incP inct Plev tlev prf % Option.map (incr_bv' inct tlev) t |
11715
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents:
11652
diff
changeset
|
335 |
handle SAME => prf % apsome' (same (incr_bv' inct tlev)) t) |
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents:
11652
diff
changeset
|
336 |
| prf_incr_bv' _ _ _ _ _ = raise SAME |
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents:
11652
diff
changeset
|
337 |
and prf_incr_bv incP inct Plev tlev prf = |
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents:
11652
diff
changeset
|
338 |
(prf_incr_bv' incP inct Plev tlev prf handle SAME => prf); |
11519 | 339 |
|
340 |
fun incr_pboundvars 0 0 prf = prf |
|
341 |
| incr_pboundvars incP inct prf = prf_incr_bv incP inct 0 0 prf; |
|
342 |
||
343 |
||
11615 | 344 |
fun prf_loose_bvar1 (prf1 %% prf2) k = prf_loose_bvar1 prf1 k orelse prf_loose_bvar1 prf2 k |
15531 | 345 |
| prf_loose_bvar1 (prf % SOME t) k = prf_loose_bvar1 prf k orelse loose_bvar1 (t, k) |
346 |
| prf_loose_bvar1 (_ % NONE) _ = true |
|
347 |
| prf_loose_bvar1 (AbsP (_, SOME t, prf)) k = loose_bvar1 (t, k) orelse prf_loose_bvar1 prf k |
|
348 |
| prf_loose_bvar1 (AbsP (_, NONE, _)) k = true |
|
11519 | 349 |
| prf_loose_bvar1 (Abst (_, _, prf)) k = prf_loose_bvar1 prf (k+1) |
350 |
| prf_loose_bvar1 _ _ = false; |
|
351 |
||
352 |
fun prf_loose_Pbvar1 (PBound i) k = i = k |
|
11615 | 353 |
| prf_loose_Pbvar1 (prf1 %% prf2) k = prf_loose_Pbvar1 prf1 k orelse prf_loose_Pbvar1 prf2 k |
354 |
| prf_loose_Pbvar1 (prf % _) k = prf_loose_Pbvar1 prf k |
|
11519 | 355 |
| prf_loose_Pbvar1 (AbsP (_, _, prf)) k = prf_loose_Pbvar1 prf (k+1) |
356 |
| prf_loose_Pbvar1 (Abst (_, _, prf)) k = prf_loose_Pbvar1 prf k |
|
357 |
| prf_loose_Pbvar1 _ _ = false; |
|
358 |
||
12279 | 359 |
fun prf_add_loose_bnos plev tlev (PBound i) (is, js) = |
360 |
if i < plev then (is, js) else ((i-plev) ins is, js) |
|
361 |
| prf_add_loose_bnos plev tlev (prf1 %% prf2) p = |
|
362 |
prf_add_loose_bnos plev tlev prf2 |
|
363 |
(prf_add_loose_bnos plev tlev prf1 p) |
|
364 |
| prf_add_loose_bnos plev tlev (prf % opt) (is, js) = |
|
365 |
prf_add_loose_bnos plev tlev prf (case opt of |
|
15531 | 366 |
NONE => (is, ~1 ins js) |
367 |
| SOME t => (is, add_loose_bnos (t, tlev, js))) |
|
12279 | 368 |
| prf_add_loose_bnos plev tlev (AbsP (_, opt, prf)) (is, js) = |
369 |
prf_add_loose_bnos (plev+1) tlev prf (case opt of |
|
15531 | 370 |
NONE => (is, ~1 ins js) |
371 |
| SOME t => (is, add_loose_bnos (t, tlev, js))) |
|
12279 | 372 |
| prf_add_loose_bnos plev tlev (Abst (_, _, prf)) p = |
373 |
prf_add_loose_bnos plev (tlev+1) prf p |
|
374 |
| prf_add_loose_bnos _ _ _ _ = ([], []); |
|
375 |
||
11519 | 376 |
|
377 |
(**** substitutions ****) |
|
378 |
||
379 |
fun norm_proof env = |
|
380 |
let |
|
12497 | 381 |
val envT = type_env env; |
382 |
fun norm (Abst (s, T, prf)) = (Abst (s, apsome' (norm_type_same envT) T, normh prf) |
|
11519 | 383 |
handle SAME => Abst (s, T, norm prf)) |
384 |
| norm (AbsP (s, t, prf)) = (AbsP (s, apsome' (norm_term_same env) t, normh prf) |
|
385 |
handle SAME => AbsP (s, t, norm prf)) |
|
15570 | 386 |
| norm (prf % t) = (norm prf % Option.map (norm_term env) t |
11615 | 387 |
handle SAME => prf % apsome' (norm_term_same env) t) |
388 |
| norm (prf1 %% prf2) = (norm prf1 %% normh prf2 |
|
389 |
handle SAME => prf1 %% norm prf2) |
|
12497 | 390 |
| norm (PThm (s, prf, t, Ts)) = PThm (s, prf, t, apsome' (norm_types_same envT) Ts) |
391 |
| norm (PAxm (s, prop, Ts)) = PAxm (s, prop, apsome' (norm_types_same envT) Ts) |
|
11519 | 392 |
| norm _ = raise SAME |
393 |
and normh prf = (norm prf handle SAME => prf); |
|
394 |
in normh end; |
|
395 |
||
396 |
(***** Remove some types in proof term (to save space) *****) |
|
397 |
||
398 |
fun remove_types (Abs (s, _, t)) = Abs (s, dummyT, remove_types t) |
|
399 |
| remove_types (t $ u) = remove_types t $ remove_types u |
|
400 |
| remove_types (Const (s, _)) = Const (s, dummyT) |
|
401 |
| remove_types t = t; |
|
402 |
||
403 |
fun remove_types_env (Envir.Envir {iTs, asol, maxidx}) = |
|
404 |
Envir.Envir {iTs = iTs, asol = Vartab.map remove_types asol, maxidx = maxidx}; |
|
405 |
||
406 |
fun norm_proof' env prf = norm_proof (remove_types_env env) prf; |
|
407 |
||
408 |
(**** substitution of bound variables ****) |
|
409 |
||
410 |
fun prf_subst_bounds args prf = |
|
411 |
let |
|
412 |
val n = length args; |
|
413 |
fun subst' lev (Bound i) = |
|
414 |
(if i<lev then raise SAME (*var is locally bound*) |
|
415 |
else incr_boundvars lev (List.nth (args, i-lev)) |
|
416 |
handle Subscript => Bound (i-n) (*loose: change it*)) |
|
417 |
| subst' lev (Abs (a, T, body)) = Abs (a, T, subst' (lev+1) body) |
|
418 |
| subst' lev (f $ t) = (subst' lev f $ substh' lev t |
|
419 |
handle SAME => f $ subst' lev t) |
|
420 |
| subst' _ _ = raise SAME |
|
421 |
and substh' lev t = (subst' lev t handle SAME => t); |
|
422 |
||
423 |
fun subst lev (AbsP (a, t, body)) = (AbsP (a, apsome' (subst' lev) t, substh lev body) |
|
424 |
handle SAME => AbsP (a, t, subst lev body)) |
|
425 |
| subst lev (Abst (a, T, body)) = Abst (a, T, subst (lev+1) body) |
|
11615 | 426 |
| subst lev (prf %% prf') = (subst lev prf %% substh lev prf' |
427 |
handle SAME => prf %% subst lev prf') |
|
15570 | 428 |
| subst lev (prf % t) = (subst lev prf % Option.map (substh' lev) t |
11615 | 429 |
handle SAME => prf % apsome' (subst' lev) t) |
11519 | 430 |
| subst _ _ = raise SAME |
431 |
and substh lev prf = (subst lev prf handle SAME => prf) |
|
432 |
in case args of [] => prf | _ => substh 0 prf end; |
|
433 |
||
434 |
fun prf_subst_pbounds args prf = |
|
435 |
let |
|
436 |
val n = length args; |
|
437 |
fun subst (PBound i) Plev tlev = |
|
438 |
(if i < Plev then raise SAME (*var is locally bound*) |
|
439 |
else incr_pboundvars Plev tlev (List.nth (args, i-Plev)) |
|
440 |
handle Subscript => PBound (i-n) (*loose: change it*)) |
|
441 |
| subst (AbsP (a, t, body)) Plev tlev = AbsP (a, t, subst body (Plev+1) tlev) |
|
442 |
| subst (Abst (a, T, body)) Plev tlev = Abst (a, T, subst body Plev (tlev+1)) |
|
11615 | 443 |
| subst (prf %% prf') Plev tlev = (subst prf Plev tlev %% substh prf' Plev tlev |
444 |
handle SAME => prf %% subst prf' Plev tlev) |
|
445 |
| subst (prf % t) Plev tlev = subst prf Plev tlev % t |
|
11519 | 446 |
| subst prf _ _ = raise SAME |
447 |
and substh prf Plev tlev = (subst prf Plev tlev handle SAME => prf) |
|
448 |
in case args of [] => prf | _ => substh prf 0 0 end; |
|
449 |
||
450 |
||
451 |
(**** Freezing and thawing of variables in proof terms ****) |
|
452 |
||
453 |
fun frzT names = |
|
15570 | 454 |
map_type_tvar (fn (ixn, xs) => TFree (valOf (assoc (names, ixn)), xs)); |
11519 | 455 |
|
456 |
fun thawT names = |
|
457 |
map_type_tfree (fn (s, xs) => case assoc (names, s) of |
|
15531 | 458 |
NONE => TFree (s, xs) |
459 |
| SOME ixn => TVar (ixn, xs)); |
|
11519 | 460 |
|
461 |
fun freeze names names' (t $ u) = |
|
462 |
freeze names names' t $ freeze names names' u |
|
463 |
| freeze names names' (Abs (s, T, t)) = |
|
464 |
Abs (s, frzT names' T, freeze names names' t) |
|
465 |
| freeze names names' (Const (s, T)) = Const (s, frzT names' T) |
|
466 |
| freeze names names' (Free (s, T)) = Free (s, frzT names' T) |
|
467 |
| freeze names names' (Var (ixn, T)) = |
|
15570 | 468 |
Free (valOf (assoc (names, ixn)), frzT names' T) |
11519 | 469 |
| freeze names names' t = t; |
470 |
||
471 |
fun thaw names names' (t $ u) = |
|
472 |
thaw names names' t $ thaw names names' u |
|
473 |
| thaw names names' (Abs (s, T, t)) = |
|
474 |
Abs (s, thawT names' T, thaw names names' t) |
|
475 |
| thaw names names' (Const (s, T)) = Const (s, thawT names' T) |
|
476 |
| thaw names names' (Free (s, T)) = |
|
477 |
let val T' = thawT names' T |
|
478 |
in case assoc (names, s) of |
|
15531 | 479 |
NONE => Free (s, T') |
480 |
| SOME ixn => Var (ixn, T') |
|
11519 | 481 |
end |
482 |
| thaw names names' (Var (ixn, T)) = Var (ixn, thawT names' T) |
|
483 |
| thaw names names' t = t; |
|
484 |
||
485 |
fun freeze_thaw_prf prf = |
|
486 |
let |
|
487 |
val (fs, Tfs, vs, Tvs) = fold_proof_terms |
|
488 |
(fn (t, (fs, Tfs, vs, Tvs)) => |
|
489 |
(add_term_frees (t, fs), add_term_tfree_names (t, Tfs), |
|
490 |
add_term_vars (t, vs), add_term_tvar_ixns (t, Tvs))) |
|
491 |
(fn (T, (fs, Tfs, vs, Tvs)) => |
|
492 |
(fs, add_typ_tfree_names (T, Tfs), |
|
493 |
vs, add_typ_ixns (Tvs, T))) |
|
494 |
(([], [], [], []), prf); |
|
495 |
val fs' = map (fst o dest_Free) fs; |
|
496 |
val vs' = map (fst o dest_Var) vs; |
|
497 |
val names = vs' ~~ variantlist (map fst vs', fs'); |
|
498 |
val names' = Tvs ~~ variantlist (map fst Tvs, Tfs); |
|
499 |
val rnames = map swap names; |
|
500 |
val rnames' = map swap names'; |
|
501 |
in |
|
502 |
(map_proof_terms (freeze names names') (frzT names') prf, |
|
503 |
map_proof_terms (thaw rnames rnames') (thawT rnames')) |
|
504 |
end; |
|
505 |
||
506 |
||
507 |
(***** implication introduction *****) |
|
508 |
||
509 |
fun implies_intr_proof h prf = |
|
510 |
let |
|
11715
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents:
11652
diff
changeset
|
511 |
fun abshyp i (Hyp t) = if h aconv t then PBound i else raise SAME |
11519 | 512 |
| abshyp i (Abst (s, T, prf)) = Abst (s, T, abshyp i prf) |
513 |
| abshyp i (AbsP (s, t, prf)) = AbsP (s, t, abshyp (i+1) prf) |
|
11615 | 514 |
| abshyp i (prf % t) = abshyp i prf % t |
11715
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents:
11652
diff
changeset
|
515 |
| abshyp i (prf1 %% prf2) = (abshyp i prf1 %% abshyph i prf2 |
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents:
11652
diff
changeset
|
516 |
handle SAME => prf1 %% abshyp i prf2) |
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents:
11652
diff
changeset
|
517 |
| abshyp _ _ = raise SAME |
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents:
11652
diff
changeset
|
518 |
and abshyph i prf = (abshyp i prf handle SAME => prf) |
11519 | 519 |
in |
15531 | 520 |
AbsP ("H", NONE (*h*), abshyph 0 prf) |
11519 | 521 |
end; |
522 |
||
523 |
||
524 |
(***** forall introduction *****) |
|
525 |
||
15531 | 526 |
fun forall_intr_proof x a prf = Abst (a, NONE, prf_abstract_over x prf); |
11519 | 527 |
|
528 |
||
529 |
(***** varify *****) |
|
530 |
||
531 |
fun varify_proof t fixed prf = |
|
532 |
let |
|
533 |
val fs = add_term_tfree_names (t, []) \\ fixed; |
|
534 |
val ixns = add_term_tvar_ixns (t, []); |
|
535 |
val fmap = fs ~~ variantlist (fs, map #1 ixns) |
|
536 |
fun thaw (f as (a, S)) = |
|
537 |
(case assoc (fmap, a) of |
|
15531 | 538 |
NONE => TFree f |
539 |
| SOME b => TVar ((b, 0), S)); |
|
11519 | 540 |
in map_proof_terms (map_term_types (map_type_tfree thaw)) (map_type_tfree thaw) prf |
541 |
end; |
|
542 |
||
543 |
||
544 |
local |
|
545 |
||
546 |
fun new_name (ix, (pairs,used)) = |
|
547 |
let val v = variant used (string_of_indexname ix) |
|
548 |
in ((ix, v) :: pairs, v :: used) end; |
|
549 |
||
550 |
fun freeze_one alist (ix, sort) = (case assoc (alist, ix) of |
|
15531 | 551 |
NONE => TVar (ix, sort) |
552 |
| SOME name => TFree (name, sort)); |
|
11519 | 553 |
|
554 |
in |
|
555 |
||
556 |
fun freezeT t prf = |
|
557 |
let |
|
558 |
val used = it_term_types add_typ_tfree_names (t, []) |
|
559 |
and tvars = map #1 (it_term_types add_typ_tvars (t, [])); |
|
15574
b1d1b5bfc464
Removed practically all references to Library.foldr.
skalberg
parents:
15570
diff
changeset
|
560 |
val (alist, _) = foldr new_name ([], used) tvars; |
11519 | 561 |
in |
562 |
(case alist of |
|
563 |
[] => prf (*nothing to do!*) |
|
564 |
| _ => |
|
565 |
let val frzT = map_type_tvar (freeze_one alist) |
|
566 |
in map_proof_terms (map_term_types frzT) frzT prf end) |
|
567 |
end; |
|
568 |
||
569 |
end; |
|
570 |
||
571 |
||
572 |
(***** rotate assumptions *****) |
|
573 |
||
574 |
fun rotate_proof Bs Bi m prf = |
|
575 |
let |
|
576 |
val params = Term.strip_all_vars Bi; |
|
577 |
val asms = Logic.strip_imp_prems (Term.strip_all_body Bi); |
|
578 |
val i = length asms; |
|
579 |
val j = length Bs; |
|
580 |
in |
|
581 |
mk_AbsP (j+1, proof_combP (prf, map PBound |
|
15574
b1d1b5bfc464
Removed practically all references to Library.foldr.
skalberg
parents:
15570
diff
changeset
|
582 |
(j downto 1) @ [mk_Abst (mk_AbsP (i, |
11519 | 583 |
proof_combP (proof_combt (PBound i, map Bound ((length params - 1) downto 0)), |
15574
b1d1b5bfc464
Removed practically all references to Library.foldr.
skalberg
parents:
15570
diff
changeset
|
584 |
map PBound (((i-m-1) downto 0) @ ((i-1) downto (i-m)))))) params])) |
11519 | 585 |
end; |
586 |
||
587 |
||
588 |
(***** permute premises *****) |
|
589 |
||
590 |
fun permute_prems_prf prems j k prf = |
|
591 |
let val n = length prems |
|
592 |
in mk_AbsP (n, proof_combP (prf, |
|
593 |
map PBound ((n-1 downto n-j) @ (k-1 downto 0) @ (n-j-1 downto k)))) |
|
594 |
end; |
|
595 |
||
596 |
||
597 |
(***** instantiation *****) |
|
598 |
||
15030
1be2cce95318
- Expressed infer_derivs' in terms of infer_deriv
berghofe
parents:
14981
diff
changeset
|
599 |
fun instantiate vTs tpairs prf = |
11519 | 600 |
map_proof_terms (subst_atomic (map (apsnd remove_types) tpairs) o |
15030
1be2cce95318
- Expressed infer_derivs' in terms of infer_deriv
berghofe
parents:
14981
diff
changeset
|
601 |
subst_TVars vTs) (typ_subst_TVars vTs) prf; |
11519 | 602 |
|
603 |
||
604 |
(***** lifting *****) |
|
605 |
||
606 |
fun lift_proof Bi inc prop prf = |
|
607 |
let |
|
608 |
val (_, lift_all) = Logic.lift_fns (Bi, inc); |
|
609 |
||
610 |
fun lift'' Us Ts t = strip_abs Ts (Logic.incr_indexes (Us, inc) (mk_abs Ts t)); |
|
611 |
||
11715
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents:
11652
diff
changeset
|
612 |
fun lift' Us Ts (Abst (s, T, prf)) = |
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents:
11652
diff
changeset
|
613 |
(Abst (s, apsome' (same (incr_tvar inc)) T, lifth' Us (dummyT::Ts) prf) |
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents:
11652
diff
changeset
|
614 |
handle SAME => Abst (s, T, lift' Us (dummyT::Ts) prf)) |
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents:
11652
diff
changeset
|
615 |
| lift' Us Ts (AbsP (s, t, prf)) = |
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents:
11652
diff
changeset
|
616 |
(AbsP (s, apsome' (same (lift'' Us Ts)) t, lifth' Us Ts prf) |
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents:
11652
diff
changeset
|
617 |
handle SAME => AbsP (s, t, lift' Us Ts prf)) |
15570 | 618 |
| lift' Us Ts (prf % t) = (lift' Us Ts prf % Option.map (lift'' Us Ts) t |
11715
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents:
11652
diff
changeset
|
619 |
handle SAME => prf % apsome' (same (lift'' Us Ts)) t) |
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents:
11652
diff
changeset
|
620 |
| lift' Us Ts (prf1 %% prf2) = (lift' Us Ts prf1 %% lifth' Us Ts prf2 |
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents:
11652
diff
changeset
|
621 |
handle SAME => prf1 %% lift' Us Ts prf2) |
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents:
11652
diff
changeset
|
622 |
| lift' _ _ (PThm (s, prf, prop, Ts)) = |
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents:
11652
diff
changeset
|
623 |
PThm (s, prf, prop, apsome' (same (map (incr_tvar inc))) Ts) |
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents:
11652
diff
changeset
|
624 |
| lift' _ _ (PAxm (s, prop, Ts)) = |
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents:
11652
diff
changeset
|
625 |
PAxm (s, prop, apsome' (same (map (incr_tvar inc))) Ts) |
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents:
11652
diff
changeset
|
626 |
| lift' _ _ _ = raise SAME |
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents:
11652
diff
changeset
|
627 |
and lifth' Us Ts prf = (lift' Us Ts prf handle SAME => prf); |
11519 | 628 |
|
13662 | 629 |
val ps = map lift_all (Logic.strip_imp_prems prop); |
11519 | 630 |
val k = length ps; |
631 |
||
632 |
fun mk_app (b, (i, j, prf)) = |
|
11615 | 633 |
if b then (i-1, j, prf %% PBound i) else (i, j-1, prf %> Bound j); |
11519 | 634 |
|
635 |
fun lift Us bs i j (Const ("==>", _) $ A $ B) = |
|
15531 | 636 |
AbsP ("H", NONE (*A*), lift Us (true::bs) (i+1) j B) |
11519 | 637 |
| lift Us bs i j (Const ("all", _) $ Abs (a, T, t)) = |
15531 | 638 |
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
|
639 |
| lift Us bs i j _ = proof_combP (lifth' (rev Us) [] prf, |
15574
b1d1b5bfc464
Removed practically all references to Library.foldr.
skalberg
parents:
15570
diff
changeset
|
640 |
map (fn k => (#3 (foldr mk_app (i-1, j-1, PBound k) bs))) |
11519 | 641 |
(i + k - 1 downto i)); |
642 |
in |
|
643 |
mk_AbsP (k, lift [] [] 0 0 Bi) |
|
644 |
end; |
|
645 |
||
646 |
||
647 |
(***** proof by assumption *****) |
|
648 |
||
15531 | 649 |
fun mk_asm_prf (Const ("==>", _) $ A $ B) i = AbsP ("H", NONE (*A*), mk_asm_prf B (i+1)) |
650 |
| mk_asm_prf (Const ("all", _) $ Abs (a, T, t)) i = Abst (a, NONE (*T*), mk_asm_prf t i) |
|
11519 | 651 |
| mk_asm_prf _ i = PBound i; |
652 |
||
653 |
fun assumption_proof Bs Bi n prf = |
|
654 |
mk_AbsP (length Bs, proof_combP (prf, |
|
655 |
map PBound (length Bs - 1 downto 0) @ [mk_asm_prf Bi (~n)])); |
|
656 |
||
657 |
||
658 |
(***** Composition of object rule with proof state *****) |
|
659 |
||
660 |
fun flatten_params_proof i j n (Const ("==>", _) $ A $ B, k) = |
|
15531 | 661 |
AbsP ("H", NONE (*A*), flatten_params_proof (i+1) j n (B, k)) |
11519 | 662 |
| flatten_params_proof i j n (Const ("all", _) $ Abs (a, T, t), k) = |
15531 | 663 |
Abst (a, NONE (*T*), flatten_params_proof i (j+1) n (t, k)) |
11519 | 664 |
| flatten_params_proof i j n (_, k) = proof_combP (proof_combt (PBound (k+i), |
665 |
map Bound (j-1 downto 0)), map PBound (i-1 downto 0 \ i-n)); |
|
666 |
||
667 |
fun bicompose_proof Bs oldAs newAs A n rprf sprf = |
|
668 |
let |
|
669 |
val la = length newAs; |
|
670 |
val lb = length Bs; |
|
671 |
in |
|
672 |
mk_AbsP (lb+la, proof_combP (sprf, |
|
11615 | 673 |
map PBound (lb + la - 1 downto la)) %% |
15570 | 674 |
proof_combP (rprf, (if n>0 then [mk_asm_prf (valOf A) (~n)] else []) @ |
11519 | 675 |
map (flatten_params_proof 0 0 n) (oldAs ~~ (la - 1 downto 0)))) |
676 |
end; |
|
677 |
||
678 |
||
679 |
(***** axioms for equality *****) |
|
680 |
||
14854 | 681 |
val aT = TFree ("'a", []); |
682 |
val bT = TFree ("'b", []); |
|
11519 | 683 |
val x = Free ("x", aT); |
684 |
val y = Free ("y", aT); |
|
685 |
val z = Free ("z", aT); |
|
686 |
val A = Free ("A", propT); |
|
687 |
val B = Free ("B", propT); |
|
688 |
val f = Free ("f", aT --> bT); |
|
689 |
val g = Free ("g", aT --> bT); |
|
690 |
||
691 |
local open Logic in |
|
692 |
||
693 |
val equality_axms = |
|
694 |
[("reflexive", mk_equals (x, x)), |
|
695 |
("symmetric", mk_implies (mk_equals (x, y), mk_equals (y, x))), |
|
696 |
("transitive", list_implies ([mk_equals (x, y), mk_equals (y, z)], mk_equals (x, z))), |
|
697 |
("equal_intr", list_implies ([mk_implies (A, B), mk_implies (B, A)], mk_equals (A, B))), |
|
698 |
("equal_elim", list_implies ([mk_equals (A, B), A], B)), |
|
699 |
("abstract_rule", Logic.mk_implies |
|
700 |
(all aT $ Abs ("x", aT, equals bT $ (f $ Bound 0) $ (g $ Bound 0)), |
|
701 |
equals (aT --> bT) $ |
|
702 |
Abs ("x", aT, f $ Bound 0) $ Abs ("x", aT, g $ Bound 0))), |
|
703 |
("combination", Logic.list_implies |
|
704 |
([Logic.mk_equals (f, g), Logic.mk_equals (x, y)], |
|
705 |
Logic.mk_equals (f $ x, g $ y)))]; |
|
706 |
||
707 |
val [reflexive_axm, symmetric_axm, transitive_axm, equal_intr_axm, |
|
708 |
equal_elim_axm, abstract_rule_axm, combination_axm] = |
|
15531 | 709 |
map (fn (s, t) => PAxm ("ProtoPure." ^ s, varify t, NONE)) equality_axms; |
11519 | 710 |
|
711 |
end; |
|
712 |
||
15531 | 713 |
val reflexive = reflexive_axm % NONE; |
11519 | 714 |
|
11615 | 715 |
fun symmetric (prf as PAxm ("ProtoPure.reflexive", _, _) % _) = prf |
15531 | 716 |
| symmetric prf = symmetric_axm % NONE % NONE %% prf; |
11519 | 717 |
|
11615 | 718 |
fun transitive _ _ (PAxm ("ProtoPure.reflexive", _, _) % _) prf2 = prf2 |
719 |
| transitive _ _ prf1 (PAxm ("ProtoPure.reflexive", _, _) % _) = prf1 |
|
11519 | 720 |
| transitive u (Type ("prop", [])) prf1 prf2 = |
15531 | 721 |
transitive_axm % NONE % SOME (remove_types u) % NONE %% prf1 %% prf2 |
11519 | 722 |
| transitive u T prf1 prf2 = |
15531 | 723 |
transitive_axm % NONE % NONE % NONE %% prf1 %% prf2; |
11519 | 724 |
|
725 |
fun abstract_rule x a prf = |
|
15531 | 726 |
abstract_rule_axm % NONE % NONE %% forall_intr_proof x a prf; |
11519 | 727 |
|
11615 | 728 |
fun check_comb (PAxm ("ProtoPure.combination", _, _) % f % g % _ % _ %% prf %% _) = |
15570 | 729 |
isSome f orelse check_comb prf |
11615 | 730 |
| check_comb (PAxm ("ProtoPure.transitive", _, _) % _ % _ % _ %% prf1 %% prf2) = |
11519 | 731 |
check_comb prf1 andalso check_comb prf2 |
11615 | 732 |
| check_comb (PAxm ("ProtoPure.symmetric", _, _) % _ % _ %% prf) = check_comb prf |
11519 | 733 |
| check_comb _ = false; |
734 |
||
735 |
fun combination f g t u (Type (_, [T, U])) prf1 prf2 = |
|
736 |
let |
|
737 |
val f = Envir.beta_norm f; |
|
738 |
val g = Envir.beta_norm g; |
|
739 |
val prf = if check_comb prf1 then |
|
15531 | 740 |
combination_axm % NONE % NONE |
11519 | 741 |
else (case prf1 of |
11615 | 742 |
PAxm ("ProtoPure.reflexive", _, _) % _ => |
15531 | 743 |
combination_axm %> remove_types f % NONE |
11615 | 744 |
| _ => combination_axm %> remove_types f %> remove_types g) |
11519 | 745 |
in |
746 |
(case T of |
|
11615 | 747 |
Type ("fun", _) => prf % |
11519 | 748 |
(case head_of f of |
15531 | 749 |
Abs _ => SOME (remove_types t) |
750 |
| Var _ => SOME (remove_types t) |
|
751 |
| _ => NONE) % |
|
11519 | 752 |
(case head_of g of |
15531 | 753 |
Abs _ => SOME (remove_types u) |
754 |
| Var _ => SOME (remove_types u) |
|
755 |
| _ => NONE) %% prf1 %% prf2 |
|
756 |
| _ => prf % NONE % NONE %% prf1 %% prf2) |
|
11519 | 757 |
end; |
758 |
||
759 |
fun equal_intr A B prf1 prf2 = |
|
11615 | 760 |
equal_intr_axm %> remove_types A %> remove_types B %% prf1 %% prf2; |
11519 | 761 |
|
762 |
fun equal_elim A B prf1 prf2 = |
|
11615 | 763 |
equal_elim_axm %> remove_types A %> remove_types B %% prf1 %% prf2; |
11519 | 764 |
|
765 |
||
766 |
(***** axioms and theorems *****) |
|
767 |
||
768 |
fun vars_of t = rev (foldl_aterms |
|
769 |
(fn (vs, v as Var _) => v ins vs | (vs, _) => vs) ([], t)); |
|
770 |
||
771 |
fun test_args _ [] = true |
|
772 |
| test_args is (Bound i :: ts) = |
|
773 |
not (i mem is) andalso test_args (i :: is) ts |
|
774 |
| test_args _ _ = false; |
|
775 |
||
776 |
fun is_fun (Type ("fun", _)) = true |
|
777 |
| is_fun (TVar _) = true |
|
778 |
| is_fun _ = false; |
|
779 |
||
780 |
fun add_funvars Ts (vs, t) = |
|
781 |
if is_fun (fastype_of1 (Ts, t)) then |
|
15570 | 782 |
vs union List.mapPartial (fn Var (ixn, T) => |
15531 | 783 |
if is_fun T then SOME ixn else NONE | _ => NONE) (vars_of t) |
11519 | 784 |
else vs; |
785 |
||
786 |
fun add_npvars q p Ts (vs, Const ("==>", _) $ t $ u) = |
|
787 |
add_npvars q p Ts (add_npvars q (not p) Ts (vs, t), u) |
|
788 |
| add_npvars q p Ts (vs, Const ("all", Type (_, [Type (_, [T, _]), _])) $ t) = |
|
789 |
add_npvars q p Ts (vs, if p andalso q then betapply (t, Var (("",0), T)) else t) |
|
12041 | 790 |
| add_npvars q p Ts (vs, Abs (_, T, t)) = add_npvars q p (T::Ts) (vs, t) |
791 |
| add_npvars _ _ Ts (vs, t) = add_npvars' Ts (vs, t) |
|
792 |
and add_npvars' Ts (vs, t) = (case strip_comb t of |
|
11519 | 793 |
(Var (ixn, _), ts) => if test_args [] ts then vs |
15570 | 794 |
else Library.foldl (add_npvars' Ts) (overwrite (vs, |
795 |
(ixn, Library.foldl (add_funvars Ts) (getOpt (assoc (vs, ixn), []), ts))), ts) |
|
796 |
| (Abs (_, T, u), ts) => Library.foldl (add_npvars' (T::Ts)) (vs, u :: ts) |
|
797 |
| (_, ts) => Library.foldl (add_npvars' Ts) (vs, ts)); |
|
11519 | 798 |
|
799 |
fun prop_vars (Const ("==>", _) $ P $ Q) = prop_vars P union prop_vars Q |
|
800 |
| prop_vars (Const ("all", _) $ Abs (_, _, t)) = prop_vars t |
|
801 |
| prop_vars t = (case strip_comb t of |
|
802 |
(Var (ixn, _), _) => [ixn] | _ => []); |
|
803 |
||
804 |
fun is_proj t = |
|
805 |
let |
|
806 |
fun is_p i t = (case strip_comb t of |
|
807 |
(Bound j, []) => false |
|
808 |
| (Bound j, ts) => j >= i orelse exists (is_p i) ts |
|
809 |
| (Abs (_, _, u), _) => is_p (i+1) u |
|
810 |
| (_, ts) => exists (is_p i) ts) |
|
811 |
in (case strip_abs_body t of |
|
812 |
Bound _ => true |
|
813 |
| t' => is_p 0 t') |
|
814 |
end; |
|
815 |
||
816 |
fun needed_vars prop = |
|
15570 | 817 |
Library.foldl op union ([], map op ins (add_npvars true true [] ([], prop))) union |
11519 | 818 |
prop_vars prop; |
819 |
||
820 |
fun gen_axm_proof c name prop = |
|
821 |
let |
|
822 |
val nvs = needed_vars prop; |
|
823 |
val args = map (fn (v as Var (ixn, _)) => |
|
15531 | 824 |
if ixn mem nvs then SOME v else NONE) (vars_of prop) @ |
825 |
map SOME (sort (make_ord atless) (term_frees prop)); |
|
11519 | 826 |
in |
15531 | 827 |
proof_combt' (c (name, prop, NONE), args) |
11519 | 828 |
end; |
829 |
||
830 |
val axm_proof = gen_axm_proof PAxm; |
|
831 |
val oracle_proof = gen_axm_proof Oracle; |
|
832 |
||
833 |
fun shrink ls lev (prf as Abst (a, T, body)) = |
|
834 |
let val (b, is, ch, body') = shrink ls (lev+1) body |
|
835 |
in (b, is, ch, if ch then Abst (a, T, body') else prf) end |
|
836 |
| shrink ls lev (prf as AbsP (a, t, body)) = |
|
837 |
let val (b, is, ch, body') = shrink (lev::ls) lev body |
|
15570 | 838 |
in (b orelse 0 mem is, List.mapPartial (fn 0 => NONE | i => SOME (i-1)) is, |
11519 | 839 |
ch, if ch then AbsP (a, t, body') else prf) |
840 |
end |
|
841 |
| shrink ls lev prf = |
|
842 |
let val (is, ch, _, prf') = shrink' ls lev [] [] prf |
|
843 |
in (false, is, ch, prf') end |
|
11615 | 844 |
and shrink' ls lev ts prfs (prf as prf1 %% prf2) = |
11519 | 845 |
let |
846 |
val p as (_, is', ch', prf') = shrink ls lev prf2; |
|
847 |
val (is, ch, ts', prf'') = shrink' ls lev ts (p::prfs) prf1 |
|
848 |
in (is union is', ch orelse ch', ts', |
|
11615 | 849 |
if ch orelse ch' then prf'' %% prf' else prf) |
11519 | 850 |
end |
11615 | 851 |
| shrink' ls lev ts prfs (prf as prf1 % t) = |
11519 | 852 |
let val (is, ch, (ch', t')::ts', prf') = shrink' ls lev (t::ts) prfs prf1 |
11615 | 853 |
in (is, ch orelse ch', ts', if ch orelse ch' then prf' % t' else prf) end |
11519 | 854 |
| shrink' ls lev ts prfs (prf as PBound i) = |
15570 | 855 |
(if exists (fn SOME (Bound j) => lev-j <= List.nth (ls, i) | _ => true) ts |
12233 | 856 |
orelse not (null (duplicates |
15570 | 857 |
(Library.foldl (fn (js, SOME (Bound j)) => j :: js | (js, _) => js) ([], ts)))) |
11519 | 858 |
orelse exists #1 prfs then [i] else [], false, map (pair false) ts, prf) |
859 |
| shrink' ls lev ts prfs (prf as Hyp _) = ([], false, map (pair false) ts, prf) |
|
11615 | 860 |
| shrink' ls lev ts prfs (prf as MinProof _) = |
861 |
([], false, map (pair false) ts, prf) |
|
11519 | 862 |
| shrink' ls lev ts prfs prf = |
863 |
let |
|
864 |
val prop = (case prf of PThm (_, _, prop, _) => prop | PAxm (_, prop, _) => prop |
|
865 |
| Oracle (_, prop, _) => prop | _ => error "shrink: proof not in normal form"); |
|
866 |
val vs = vars_of prop; |
|
13629 | 867 |
val (ts', ts'') = splitAt (length vs, ts) |
15570 | 868 |
val insts = Library.take (length ts', map (fst o dest_Var) vs) ~~ ts'; |
869 |
val nvs = Library.foldl (fn (ixns', (ixn, ixns)) => |
|
11519 | 870 |
ixn ins (case assoc (insts, ixn) of |
15531 | 871 |
SOME (SOME t) => if is_proj t then ixns union ixns' else ixns' |
11519 | 872 |
| _ => ixns union ixns')) |
873 |
(needed prop ts'' prfs, add_npvars false true [] ([], prop)); |
|
874 |
val insts' = map |
|
15531 | 875 |
(fn (ixn, x as SOME _) => if ixn mem nvs then (false, x) else (true, NONE) |
11519 | 876 |
| (_, x) => (false, x)) insts |
877 |
in ([], false, insts' @ map (pair false) ts'', prf) end |
|
878 |
and needed (Const ("==>", _) $ t $ u) ts ((b, _, _, _)::prfs) = |
|
879 |
(if b then map (fst o dest_Var) (vars_of t) else []) union needed u ts prfs |
|
880 |
| needed (Var (ixn, _)) (_::_) _ = [ixn] |
|
881 |
| needed _ _ _ = []; |
|
882 |
||
883 |
||
884 |
(**** Simple first order matching functions for terms and proofs ****) |
|
885 |
||
886 |
exception PMatch; |
|
887 |
||
888 |
(** see pattern.ML **) |
|
889 |
||
15570 | 890 |
fun flt (i: int) = List.filter (fn n => n < i); |
12279 | 891 |
|
892 |
fun fomatch Ts tymatch j = |
|
11519 | 893 |
let |
894 |
fun mtch (instsp as (tyinsts, insts)) = fn |
|
895 |
(Var (ixn, T), t) => |
|
12279 | 896 |
if j>0 andalso not (null (flt j (loose_bnos t))) |
897 |
then raise PMatch |
|
898 |
else (tymatch (tyinsts, fn () => (T, fastype_of1 (Ts, t))), |
|
899 |
(ixn, t) :: insts) |
|
11519 | 900 |
| (Free (a, T), Free (b, U)) => |
12279 | 901 |
if a=b then (tymatch (tyinsts, K (T, U)), insts) else raise PMatch |
11519 | 902 |
| (Const (a, T), Const (b, U)) => |
12279 | 903 |
if a=b then (tymatch (tyinsts, K (T, U)), insts) else raise PMatch |
11519 | 904 |
| (f $ t, g $ u) => mtch (mtch instsp (f, g)) (t, u) |
12279 | 905 |
| (Bound i, Bound j) => if i=j then instsp else raise PMatch |
11519 | 906 |
| _ => raise PMatch |
907 |
in mtch end; |
|
908 |
||
12279 | 909 |
fun match_proof Ts tymatch = |
11519 | 910 |
let |
15531 | 911 |
fun optmatch _ inst (NONE, _) = inst |
912 |
| optmatch _ _ (SOME _, NONE) = raise PMatch |
|
913 |
| optmatch mtch inst (SOME x, SOME y) = mtch inst (x, y) |
|
12279 | 914 |
|
915 |
fun matcht Ts j (pinst, tinst) (t, u) = |
|
916 |
(pinst, fomatch Ts tymatch j tinst (t, Envir.beta_norm u)); |
|
917 |
fun matchT (pinst, (tyinsts, insts)) p = |
|
918 |
(pinst, (tymatch (tyinsts, K p), insts)); |
|
15570 | 919 |
fun matchTs inst (Ts, Us) = Library.foldl (uncurry matchT) (inst, Ts ~~ Us); |
12279 | 920 |
|
921 |
fun mtch Ts i j (pinst, tinst) (Hyp (Var (ixn, _)), prf) = |
|
922 |
if i = 0 andalso j = 0 then ((ixn, prf) :: pinst, tinst) |
|
923 |
else (case apfst (flt i) (apsnd (flt j) |
|
924 |
(prf_add_loose_bnos 0 0 prf ([], []))) of |
|
925 |
([], []) => ((ixn, incr_pboundvars (~i) (~j) prf) :: pinst, tinst) |
|
926 |
| ([], _) => if j = 0 then |
|
927 |
((ixn, incr_pboundvars (~i) (~j) prf) :: pinst, tinst) |
|
928 |
else raise PMatch |
|
929 |
| _ => raise PMatch) |
|
930 |
| mtch Ts i j inst (prf1 % opt1, prf2 % opt2) = |
|
931 |
optmatch (matcht Ts j) (mtch Ts i j inst (prf1, prf2)) (opt1, opt2) |
|
932 |
| mtch Ts i j inst (prf1 %% prf2, prf1' %% prf2') = |
|
933 |
mtch Ts i j (mtch Ts i j inst (prf1, prf1')) (prf2, prf2') |
|
934 |
| mtch Ts i j inst (Abst (_, opT, prf1), Abst (_, opU, prf2)) = |
|
15570 | 935 |
mtch (getOpt (opU,dummyT) :: Ts) i (j+1) |
12279 | 936 |
(optmatch matchT inst (opT, opU)) (prf1, prf2) |
937 |
| mtch Ts i j inst (prf1, Abst (_, opU, prf2)) = |
|
15570 | 938 |
mtch (getOpt (opU,dummyT) :: Ts) i (j+1) inst |
12279 | 939 |
(incr_pboundvars 0 1 prf1 %> Bound 0, prf2) |
940 |
| mtch Ts i j inst (AbsP (_, opt, prf1), AbsP (_, opu, prf2)) = |
|
941 |
mtch Ts (i+1) j (optmatch (matcht Ts j) inst (opt, opu)) (prf1, prf2) |
|
942 |
| mtch Ts i j inst (prf1, AbsP (_, _, prf2)) = |
|
943 |
mtch Ts (i+1) j inst (incr_pboundvars 1 0 prf1 %% PBound 0, prf2) |
|
944 |
| mtch Ts i j inst (PThm ((name1, _), _, prop1, opTs), |
|
945 |
PThm ((name2, _), _, prop2, opUs)) = |
|
11519 | 946 |
if name1=name2 andalso prop1=prop2 then |
12279 | 947 |
optmatch matchTs inst (opTs, opUs) |
11519 | 948 |
else raise PMatch |
12279 | 949 |
| mtch Ts i j inst (PAxm (s1, _, opTs), PAxm (s2, _, opUs)) = |
950 |
if s1=s2 then optmatch matchTs inst (opTs, opUs) |
|
11519 | 951 |
else raise PMatch |
12279 | 952 |
| mtch _ _ _ inst (PBound i, PBound j) = if i = j then inst else raise PMatch |
953 |
| mtch _ _ _ _ _ = raise PMatch |
|
954 |
in mtch Ts 0 0 end; |
|
11519 | 955 |
|
956 |
fun prf_subst (pinst, (tyinsts, insts)) = |
|
957 |
let |
|
958 |
val substT = typ_subst_TVars_Vartab tyinsts; |
|
959 |
||
960 |
fun subst' lev (t as Var (ixn, _)) = (case assoc (insts, ixn) of |
|
15531 | 961 |
NONE => t |
962 |
| SOME u => incr_boundvars lev u) |
|
11519 | 963 |
| subst' lev (Const (s, T)) = Const (s, substT T) |
964 |
| subst' lev (Free (s, T)) = Free (s, substT T) |
|
965 |
| subst' lev (Abs (a, T, body)) = Abs (a, substT T, subst' (lev+1) body) |
|
966 |
| subst' lev (f $ t) = subst' lev f $ subst' lev t |
|
967 |
| subst' _ t = t; |
|
968 |
||
969 |
fun subst plev tlev (AbsP (a, t, body)) = |
|
15570 | 970 |
AbsP (a, Option.map (subst' tlev) t, subst (plev+1) tlev body) |
11519 | 971 |
| subst plev tlev (Abst (a, T, body)) = |
15570 | 972 |
Abst (a, Option.map substT T, subst plev (tlev+1) body) |
11615 | 973 |
| subst plev tlev (prf %% prf') = subst plev tlev prf %% subst plev tlev prf' |
15570 | 974 |
| subst plev tlev (prf % t) = subst plev tlev prf % Option.map (subst' tlev) t |
11519 | 975 |
| subst plev tlev (prf as Hyp (Var (ixn, _))) = (case assoc (pinst, ixn) of |
15531 | 976 |
NONE => prf |
977 |
| SOME prf' => incr_pboundvars plev tlev prf') |
|
11519 | 978 |
| subst _ _ (PThm (id, prf, prop, Ts)) = |
15570 | 979 |
PThm (id, prf, prop, Option.map (map substT) Ts) |
11519 | 980 |
| subst _ _ (PAxm (id, prop, Ts)) = |
15570 | 981 |
PAxm (id, prop, Option.map (map substT) Ts) |
11519 | 982 |
| subst _ _ t = t |
983 |
in subst 0 0 end; |
|
984 |
||
12871
21486a0557d1
Added function could_unify to speed up rewriting of proof terms.
berghofe
parents:
12868
diff
changeset
|
985 |
(*A fast unification filter: true unless the two terms cannot be unified. |
21486a0557d1
Added function could_unify to speed up rewriting of proof terms.
berghofe
parents:
12868
diff
changeset
|
986 |
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
|
987 |
fun could_unify prf1 prf2 = |
21486a0557d1
Added function could_unify to speed up rewriting of proof terms.
berghofe
parents:
12868
diff
changeset
|
988 |
let |
21486a0557d1
Added function could_unify to speed up rewriting of proof terms.
berghofe
parents:
12868
diff
changeset
|
989 |
fun matchrands (prf1 %% prf2) (prf1' %% prf2') = |
21486a0557d1
Added function could_unify to speed up rewriting of proof terms.
berghofe
parents:
12868
diff
changeset
|
990 |
could_unify prf2 prf2' andalso matchrands prf1 prf1' |
15531 | 991 |
| 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
|
992 |
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
|
993 |
| matchrands (prf % _) (prf' % _) = matchrands prf prf' |
21486a0557d1
Added function could_unify to speed up rewriting of proof terms.
berghofe
parents:
12868
diff
changeset
|
994 |
| matchrands _ _ = true |
21486a0557d1
Added function could_unify to speed up rewriting of proof terms.
berghofe
parents:
12868
diff
changeset
|
995 |
|
21486a0557d1
Added function could_unify to speed up rewriting of proof terms.
berghofe
parents:
12868
diff
changeset
|
996 |
fun head_of (prf %% _) = head_of prf |
21486a0557d1
Added function could_unify to speed up rewriting of proof terms.
berghofe
parents:
12868
diff
changeset
|
997 |
| head_of (prf % _) = head_of prf |
21486a0557d1
Added function could_unify to speed up rewriting of proof terms.
berghofe
parents:
12868
diff
changeset
|
998 |
| head_of prf = prf |
21486a0557d1
Added function could_unify to speed up rewriting of proof terms.
berghofe
parents:
12868
diff
changeset
|
999 |
|
21486a0557d1
Added function could_unify to speed up rewriting of proof terms.
berghofe
parents:
12868
diff
changeset
|
1000 |
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
|
1001 |
(_, Hyp (Var _)) => true |
21486a0557d1
Added function could_unify to speed up rewriting of proof terms.
berghofe
parents:
12868
diff
changeset
|
1002 |
| (Hyp (Var _), _) => true |
21486a0557d1
Added function could_unify to speed up rewriting of proof terms.
berghofe
parents:
12868
diff
changeset
|
1003 |
| (PThm ((a, _), _, propa, _), PThm ((b, _), _, propb, _)) => |
21486a0557d1
Added function could_unify to speed up rewriting of proof terms.
berghofe
parents:
12868
diff
changeset
|
1004 |
a = b andalso propa = propb andalso matchrands prf1 prf2 |
21486a0557d1
Added function could_unify to speed up rewriting of proof terms.
berghofe
parents:
12868
diff
changeset
|
1005 |
| (PAxm (a, _, _), PAxm (b, _, _)) => a = b andalso matchrands prf1 prf2 |
21486a0557d1
Added function could_unify to speed up rewriting of proof terms.
berghofe
parents:
12868
diff
changeset
|
1006 |
| (PBound i, PBound j) => i = j andalso matchrands prf1 prf2 |
21486a0557d1
Added function could_unify to speed up rewriting of proof terms.
berghofe
parents:
12868
diff
changeset
|
1007 |
| (AbsP _, _) => true (*because of possible eta equality*) |
21486a0557d1
Added function could_unify to speed up rewriting of proof terms.
berghofe
parents:
12868
diff
changeset
|
1008 |
| (Abst _, _) => true |
21486a0557d1
Added function could_unify to speed up rewriting of proof terms.
berghofe
parents:
12868
diff
changeset
|
1009 |
| (_, AbsP _) => true |
21486a0557d1
Added function could_unify to speed up rewriting of proof terms.
berghofe
parents:
12868
diff
changeset
|
1010 |
| (_, Abst _) => true |
21486a0557d1
Added function could_unify to speed up rewriting of proof terms.
berghofe
parents:
12868
diff
changeset
|
1011 |
| _ => false |
21486a0557d1
Added function could_unify to speed up rewriting of proof terms.
berghofe
parents:
12868
diff
changeset
|
1012 |
end; |
21486a0557d1
Added function could_unify to speed up rewriting of proof terms.
berghofe
parents:
12868
diff
changeset
|
1013 |
|
11519 | 1014 |
(**** rewriting on proof terms ****) |
1015 |
||
13102
b6f8aae5f152
Added skeletons to speed up rewriting on proof terms.
berghofe
parents:
12923
diff
changeset
|
1016 |
val skel0 = PBound 0; |
b6f8aae5f152
Added skeletons to speed up rewriting on proof terms.
berghofe
parents:
12923
diff
changeset
|
1017 |
|
12279 | 1018 |
fun rewrite_prf tymatch (rules, procs) prf = |
11519 | 1019 |
let |
15531 | 1020 |
fun rew _ (Abst (_, _, body) % SOME t) = SOME (prf_subst_bounds [t] body, skel0) |
1021 |
| rew _ (AbsP (_, _, body) %% prf) = SOME (prf_subst_pbounds [prf] body, skel0) |
|
11519 | 1022 |
| rew Ts prf = (case get_first (fn (_, r) => r Ts prf) procs of |
15531 | 1023 |
SOME prf' => SOME (prf', skel0) |
1024 |
| NONE => get_first (fn (prf1, prf2) => SOME (prf_subst |
|
13102
b6f8aae5f152
Added skeletons to speed up rewriting on proof terms.
berghofe
parents:
12923
diff
changeset
|
1025 |
(match_proof Ts tymatch ([], (Vartab.empty, [])) (prf1, prf)) prf2, prf2) |
15570 | 1026 |
handle PMatch => NONE) (List.filter (could_unify prf o fst) rules)); |
11519 | 1027 |
|
11615 | 1028 |
fun rew0 Ts (prf as AbsP (_, _, prf' %% PBound 0)) = |
11519 | 1029 |
if prf_loose_Pbvar1 prf' 0 then rew Ts prf |
1030 |
else |
|
1031 |
let val prf'' = incr_pboundvars (~1) 0 prf' |
|
15570 | 1032 |
in SOME (getOpt (rew Ts prf'', (prf'', skel0))) end |
15531 | 1033 |
| rew0 Ts (prf as Abst (_, _, prf' % SOME (Bound 0))) = |
11519 | 1034 |
if prf_loose_bvar1 prf' 0 then rew Ts prf |
1035 |
else |
|
1036 |
let val prf'' = incr_pboundvars 0 (~1) prf' |
|
15570 | 1037 |
in SOME (getOpt (rew Ts prf'', (prf'', skel0))) end |
11519 | 1038 |
| rew0 Ts prf = rew Ts prf; |
1039 |
||
15531 | 1040 |
fun rew1 _ (Hyp (Var _)) _ = NONE |
13102
b6f8aae5f152
Added skeletons to speed up rewriting on proof terms.
berghofe
parents:
12923
diff
changeset
|
1041 |
| rew1 Ts skel prf = (case rew2 Ts skel prf of |
15531 | 1042 |
SOME prf1 => (case rew0 Ts prf1 of |
15570 | 1043 |
SOME (prf2, skel') => SOME (getOpt (rew1 Ts skel' prf2, prf2)) |
15531 | 1044 |
| NONE => SOME prf1) |
1045 |
| NONE => (case rew0 Ts prf of |
|
15570 | 1046 |
SOME (prf1, skel') => SOME (getOpt (rew1 Ts skel' prf1, prf1)) |
15531 | 1047 |
| NONE => NONE)) |
11519 | 1048 |
|
15531 | 1049 |
and rew2 Ts skel (prf % SOME t) = (case prf of |
11519 | 1050 |
Abst (_, _, body) => |
1051 |
let val prf' = prf_subst_bounds [t] body |
|
15570 | 1052 |
in SOME (getOpt (rew2 Ts skel0 prf', prf')) end |
13102
b6f8aae5f152
Added skeletons to speed up rewriting on proof terms.
berghofe
parents:
12923
diff
changeset
|
1053 |
| _ => (case rew1 Ts (case skel of skel' % _ => skel' | _ => skel0) prf of |
15531 | 1054 |
SOME prf' => SOME (prf' % SOME t) |
1055 |
| NONE => NONE)) |
|
15570 | 1056 |
| rew2 Ts skel (prf % NONE) = Option.map (fn prf' => prf' % NONE) |
13102
b6f8aae5f152
Added skeletons to speed up rewriting on proof terms.
berghofe
parents:
12923
diff
changeset
|
1057 |
(rew1 Ts (case skel of skel' % _ => skel' | _ => skel0) prf) |
b6f8aae5f152
Added skeletons to speed up rewriting on proof terms.
berghofe
parents:
12923
diff
changeset
|
1058 |
| rew2 Ts skel (prf1 %% prf2) = (case prf1 of |
11519 | 1059 |
AbsP (_, _, body) => |
1060 |
let val prf' = prf_subst_pbounds [prf2] body |
|
15570 | 1061 |
in SOME (getOpt (rew2 Ts skel0 prf', prf')) end |
13102
b6f8aae5f152
Added skeletons to speed up rewriting on proof terms.
berghofe
parents:
12923
diff
changeset
|
1062 |
| _ => |
b6f8aae5f152
Added skeletons to speed up rewriting on proof terms.
berghofe
parents:
12923
diff
changeset
|
1063 |
let val (skel1, skel2) = (case skel of |
b6f8aae5f152
Added skeletons to speed up rewriting on proof terms.
berghofe
parents:
12923
diff
changeset
|
1064 |
skel1 %% skel2 => (skel1, skel2) |
b6f8aae5f152
Added skeletons to speed up rewriting on proof terms.
berghofe
parents:
12923
diff
changeset
|
1065 |
| _ => (skel0, skel0)) |
b6f8aae5f152
Added skeletons to speed up rewriting on proof terms.
berghofe
parents:
12923
diff
changeset
|
1066 |
in case rew1 Ts skel1 prf1 of |
15531 | 1067 |
SOME prf1' => (case rew1 Ts skel2 prf2 of |
1068 |
SOME prf2' => SOME (prf1' %% prf2') |
|
1069 |
| NONE => SOME (prf1' %% prf2)) |
|
1070 |
| NONE => (case rew1 Ts skel2 prf2 of |
|
1071 |
SOME prf2' => SOME (prf1 %% prf2') |
|
1072 |
| NONE => NONE) |
|
13102
b6f8aae5f152
Added skeletons to speed up rewriting on proof terms.
berghofe
parents:
12923
diff
changeset
|
1073 |
end) |
15570 | 1074 |
| rew2 Ts skel (Abst (s, T, prf)) = (case rew1 (getOpt (T,dummyT) :: Ts) |
13102
b6f8aae5f152
Added skeletons to speed up rewriting on proof terms.
berghofe
parents:
12923
diff
changeset
|
1075 |
(case skel of Abst (_, _, skel') => skel' | _ => skel0) prf of |
15531 | 1076 |
SOME prf' => SOME (Abst (s, T, prf')) |
1077 |
| NONE => NONE) |
|
13102
b6f8aae5f152
Added skeletons to speed up rewriting on proof terms.
berghofe
parents:
12923
diff
changeset
|
1078 |
| rew2 Ts skel (AbsP (s, t, prf)) = (case rew1 Ts |
b6f8aae5f152
Added skeletons to speed up rewriting on proof terms.
berghofe
parents:
12923
diff
changeset
|
1079 |
(case skel of AbsP (_, _, skel') => skel' | _ => skel0) prf of |
15531 | 1080 |
SOME prf' => SOME (AbsP (s, t, prf')) |
1081 |
| NONE => NONE) |
|
1082 |
| rew2 _ _ _ = NONE |
|
11519 | 1083 |
|
15570 | 1084 |
in getOpt (rew1 [] skel0 prf, prf) end; |
11519 | 1085 |
|
1086 |
fun rewrite_proof tsig = rewrite_prf (fn (tab, f) => |
|
1087 |
Type.typ_match tsig (tab, f ()) handle Type.TYPE_MATCH => raise PMatch); |
|
1088 |
||
11715
592923615f77
Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents:
11652
diff
changeset
|
1089 |
fun rewrite_proof_notypes rews = rewrite_prf fst rews; |
11615 | 1090 |
|
11519 | 1091 |
(**** theory data ****) |
1092 |
||
1093 |
(* data kind 'Pure/proof' *) |
|
1094 |
||
1095 |
structure ProofArgs = |
|
1096 |
struct |
|
1097 |
val name = "Pure/proof"; |
|
1098 |
type T = ((proof * proof) list * |
|
12233 | 1099 |
(string * (typ list -> proof -> proof option)) list); |
11519 | 1100 |
|
12233 | 1101 |
val empty = ([], []); |
1102 |
val copy = I; |
|
1103 |
val prep_ext = I; |
|
1104 |
fun merge ((rules1, procs1), (rules2, procs2)) = |
|
12293 | 1105 |
(merge_lists rules1 rules2, merge_alists procs1 procs2); |
11519 | 1106 |
fun print _ _ = (); |
1107 |
end; |
|
1108 |
||
1109 |
structure ProofData = TheoryDataFun(ProofArgs); |
|
1110 |
||
1111 |
val init = ProofData.init; |
|
1112 |
||
12233 | 1113 |
fun add_prf_rrules rs thy = |
11519 | 1114 |
let val r = ProofData.get thy |
12233 | 1115 |
in ProofData.put (rs @ fst r, snd r) thy end; |
11519 | 1116 |
|
12233 | 1117 |
fun add_prf_rprocs ps thy = |
11519 | 1118 |
let val r = ProofData.get thy |
12233 | 1119 |
in ProofData.put (fst r, ps @ snd r) thy end; |
11519 | 1120 |
|
1121 |
fun thm_proof sign (name, tags) hyps prop prf = |
|
1122 |
let |
|
12923 | 1123 |
val prop = Logic.list_implies (hyps, prop); |
11519 | 1124 |
val nvs = needed_vars prop; |
1125 |
val args = map (fn (v as Var (ixn, _)) => |
|
15531 | 1126 |
if ixn mem nvs then SOME v else NONE) (vars_of prop) @ |
1127 |
map SOME (sort (make_ord atless) (term_frees prop)); |
|
11543
d61b913431c5
renamed `keep_derivs' to `proofs', and made an integer;
wenzelm
parents:
11540
diff
changeset
|
1128 |
val opt_prf = if ! proofs = 2 then |
12233 | 1129 |
#4 (shrink [] 0 (rewrite_prf fst (ProofData.get_sg sign) |
15574
b1d1b5bfc464
Removed practically all references to Library.foldr.
skalberg
parents:
15570
diff
changeset
|
1130 |
(foldr (uncurry implies_intr_proof) prf hyps))) |
11519 | 1131 |
else MinProof (mk_min_proof ([], prf)); |
12233 | 1132 |
val head = (case strip_combt (fst (strip_combP prf)) of |
15531 | 1133 |
(PThm ((old_name, _), prf', prop', NONE), args') => |
11519 | 1134 |
if (old_name="" orelse old_name=name) andalso |
1135 |
prop = prop' andalso args = args' then |
|
15531 | 1136 |
PThm ((name, tags), prf', prop, NONE) |
11519 | 1137 |
else |
15531 | 1138 |
PThm ((name, tags), opt_prf, prop, NONE) |
1139 |
| _ => PThm ((name, tags), opt_prf, prop, NONE)) |
|
11519 | 1140 |
in |
12923 | 1141 |
proof_combP (proof_combt' (head, args), map Hyp hyps) |
11519 | 1142 |
end; |
1143 |
||
12923 | 1144 |
fun get_name_tags hyps prop prf = |
1145 |
let val prop = Logic.list_implies (hyps, prop) in |
|
1146 |
(case strip_combt (fst (strip_combP prf)) of |
|
11519 | 1147 |
(PThm ((name, tags), _, prop', _), _) => |
1148 |
if prop=prop' then (name, tags) else ("", []) |
|
1149 |
| (PAxm (name, prop', _), _) => |
|
1150 |
if prop=prop' then (name, []) else ("", []) |
|
12923 | 1151 |
| _ => ("", [])) |
1152 |
end; |
|
11519 | 1153 |
|
1154 |
end; |
|
1155 |
||
1156 |
structure BasicProofterm : BASIC_PROOFTERM = Proofterm; |
|
1157 |
open BasicProofterm; |