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