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