11522
|
1 |
(* Title: Pure/Proof/proofchecker.ML
|
|
2 |
ID: $Id$
|
11539
|
3 |
Author: Stefan Berghofer, TU Muenchen
|
|
4 |
License: GPL (GNU GENERAL PUBLIC LICENSE)
|
11522
|
5 |
|
|
6 |
Simple proof checker based only on the core inference rules
|
|
7 |
of Isabelle/Pure.
|
|
8 |
*)
|
|
9 |
|
|
10 |
signature PROOF_CHECKER =
|
|
11 |
sig
|
|
12 |
val thm_of_proof : theory -> Proofterm.proof -> thm
|
|
13 |
end;
|
|
14 |
|
11612
|
15 |
structure ProofChecker : PROOF_CHECKER =
|
11522
|
16 |
struct
|
|
17 |
|
|
18 |
open Proofterm;
|
|
19 |
|
|
20 |
(***** construct a theorem out of a proof term *****)
|
|
21 |
|
|
22 |
fun lookup_thm thy =
|
|
23 |
let val tab = foldr Symtab.update
|
|
24 |
(flat (map thms_of (thy :: Theory.ancestors_of thy)), Symtab.empty)
|
|
25 |
in
|
|
26 |
(fn s => case Symtab.lookup (tab, s) of
|
|
27 |
None => error ("Unknown theorem " ^ quote s)
|
|
28 |
| Some thm => thm)
|
|
29 |
end;
|
|
30 |
|
|
31 |
fun beta_eta_convert thm =
|
|
32 |
let
|
|
33 |
val beta_thm = beta_conversion true (cprop_of thm);
|
|
34 |
val (_, rhs) = Drule.dest_equals (cprop_of beta_thm);
|
|
35 |
in Thm.equal_elim (Thm.transitive beta_thm (eta_conversion rhs)) thm end;
|
|
36 |
|
|
37 |
fun thm_of_proof thy prf =
|
|
38 |
let
|
|
39 |
val names = add_prf_names ([], prf);
|
|
40 |
val sg = sign_of thy;
|
|
41 |
val lookup = lookup_thm thy;
|
|
42 |
|
|
43 |
fun thm_of _ _ (PThm ((name, _), _, prop', Some Ts)) =
|
|
44 |
let
|
|
45 |
val thm = lookup name;
|
|
46 |
val {prop, ...} = rep_thm thm;
|
|
47 |
val _ = if prop=prop' then () else
|
|
48 |
error ("Duplicate use of theorem name " ^ quote name);
|
|
49 |
val tvars = term_tvars prop;
|
|
50 |
val ctye = map fst tvars ~~ map (Thm.ctyp_of sg) Ts
|
|
51 |
in
|
|
52 |
Thm.instantiate (ctye, []) (forall_intr_vars thm)
|
|
53 |
end
|
|
54 |
|
|
55 |
| thm_of _ _ (PAxm (name, _, Some Ts)) =
|
|
56 |
let
|
|
57 |
val thm = get_axiom thy name;
|
|
58 |
val {prop, ...} = rep_thm thm;
|
|
59 |
val tvars = term_tvars prop;
|
|
60 |
val ctye = map fst tvars ~~ map (Thm.ctyp_of sg) Ts
|
|
61 |
in
|
|
62 |
Thm.instantiate (ctye, []) (forall_intr_vars thm)
|
|
63 |
end
|
|
64 |
|
|
65 |
| thm_of _ Hs (PBound i) = nth_elem (i, Hs)
|
|
66 |
|
|
67 |
| thm_of vs Hs (Abst (s, Some T, prf)) =
|
|
68 |
let
|
|
69 |
val x = variant (names @ map fst vs) s;
|
|
70 |
val thm = thm_of ((x, T) :: vs) Hs prf
|
|
71 |
in
|
|
72 |
Thm.forall_intr (Thm.cterm_of sg (Free (x, T))) thm
|
|
73 |
end
|
|
74 |
|
11612
|
75 |
| thm_of vs Hs (prf % Some t) =
|
11522
|
76 |
let
|
|
77 |
val thm = thm_of vs Hs prf
|
|
78 |
val ct = Thm.cterm_of sg (Term.subst_bounds (map Free vs, t))
|
|
79 |
in Thm.forall_elim ct thm end
|
|
80 |
|
|
81 |
| thm_of vs Hs (AbsP (s, Some t, prf)) =
|
|
82 |
let
|
|
83 |
val ct = Thm.cterm_of sg (Term.subst_bounds (map Free vs, t));
|
|
84 |
val thm = thm_of vs (Thm.assume ct :: Hs) prf
|
|
85 |
in
|
|
86 |
Thm.implies_intr ct thm
|
|
87 |
end
|
|
88 |
|
11612
|
89 |
| thm_of vs Hs (prf %% prf') =
|
11522
|
90 |
let
|
|
91 |
val thm = beta_eta_convert (thm_of vs Hs prf);
|
|
92 |
val thm' = beta_eta_convert (thm_of vs Hs prf')
|
|
93 |
in
|
|
94 |
Thm.implies_elim thm thm'
|
|
95 |
end
|
|
96 |
|
|
97 |
| thm_of _ _ (Hyp t) = Thm.assume (Thm.cterm_of sg t)
|
|
98 |
|
|
99 |
| thm_of _ _ _ = error "thm_of_proof: partial proof term";
|
|
100 |
|
|
101 |
in thm_of [] [] prf end;
|
|
102 |
|
|
103 |
end;
|
|
104 |
|