author | wenzelm |
Mon, 12 Jun 2006 21:19:02 +0200 | |
changeset 19862 | 7f29aa958b72 |
parent 19774 | 5fe7731d0836 |
child 20056 | 0698a403a066 |
permissions | -rw-r--r-- |
17980 | 1 |
(* Title: Pure/goal.ML |
2 |
ID: $Id$ |
|
3 |
Author: Makarius and Lawrence C Paulson |
|
4 |
||
18139 | 5 |
Goals in tactical theorem proving. |
17980 | 6 |
*) |
7 |
||
8 |
signature BASIC_GOAL = |
|
9 |
sig |
|
10 |
val SELECT_GOAL: tactic -> int -> tactic |
|
11 |
end; |
|
12 |
||
13 |
signature GOAL = |
|
14 |
sig |
|
15 |
include BASIC_GOAL |
|
16 |
val init: cterm -> thm |
|
18027
09ab79d4e8e1
renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents:
17986
diff
changeset
|
17 |
val protect: thm -> thm |
17980 | 18 |
val conclude: thm -> thm |
19 |
val finish: thm -> thm |
|
18027
09ab79d4e8e1
renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents:
17986
diff
changeset
|
20 |
val norm_hhf: thm -> thm |
18252 | 21 |
val norm_hhf_protect: thm -> thm |
18119 | 22 |
val compose_hhf: thm -> int -> thm -> thm Seq.seq |
23 |
val compose_hhf_tac: thm -> int -> tactic |
|
18027
09ab79d4e8e1
renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents:
17986
diff
changeset
|
24 |
val comp_hhf: thm -> thm -> thm |
17980 | 25 |
val prove_multi: theory -> string list -> term list -> term list -> |
26 |
(thm list -> tactic) -> thm list |
|
18139 | 27 |
val prove: theory -> string list -> term list -> term -> (thm list -> tactic) -> thm |
18027
09ab79d4e8e1
renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents:
17986
diff
changeset
|
28 |
val prove_raw: cterm list -> cterm -> (thm list -> tactic) -> thm |
19184 | 29 |
val extract: int -> int -> thm -> thm Seq.seq |
30 |
val retrofit: int -> int -> thm -> thm -> thm Seq.seq |
|
17980 | 31 |
end; |
32 |
||
33 |
structure Goal: GOAL = |
|
34 |
struct |
|
35 |
||
18027
09ab79d4e8e1
renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents:
17986
diff
changeset
|
36 |
(** goals **) |
09ab79d4e8e1
renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents:
17986
diff
changeset
|
37 |
|
09ab79d4e8e1
renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents:
17986
diff
changeset
|
38 |
(* |
09ab79d4e8e1
renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents:
17986
diff
changeset
|
39 |
-------- (init) |
09ab79d4e8e1
renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents:
17986
diff
changeset
|
40 |
C ==> #C |
09ab79d4e8e1
renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents:
17986
diff
changeset
|
41 |
*) |
09ab79d4e8e1
renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents:
17986
diff
changeset
|
42 |
fun init ct = Drule.instantiate' [] [SOME ct] Drule.protectI; |
17980 | 43 |
|
44 |
(* |
|
18119 | 45 |
C |
46 |
--- (protect) |
|
47 |
#C |
|
17980 | 48 |
*) |
18027
09ab79d4e8e1
renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents:
17986
diff
changeset
|
49 |
fun protect th = th COMP Drule.incr_indexes th Drule.protectI; |
17980 | 50 |
|
51 |
(* |
|
18027
09ab79d4e8e1
renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents:
17986
diff
changeset
|
52 |
A ==> ... ==> #C |
09ab79d4e8e1
renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents:
17986
diff
changeset
|
53 |
---------------- (conclude) |
17980 | 54 |
A ==> ... ==> C |
55 |
*) |
|
56 |
fun conclude th = |
|
18497 | 57 |
(case SINGLE (Thm.compose_no_flatten false (th, Thm.nprems_of th) 1) |
18027
09ab79d4e8e1
renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents:
17986
diff
changeset
|
58 |
(Drule.incr_indexes th Drule.protectD) of |
17980 | 59 |
SOME th' => th' |
60 |
| NONE => raise THM ("Failed to conclude goal", 0, [th])); |
|
61 |
||
62 |
(* |
|
18027
09ab79d4e8e1
renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents:
17986
diff
changeset
|
63 |
#C |
09ab79d4e8e1
renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents:
17986
diff
changeset
|
64 |
--- (finish) |
09ab79d4e8e1
renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents:
17986
diff
changeset
|
65 |
C |
17983 | 66 |
*) |
17980 | 67 |
fun finish th = |
68 |
(case Thm.nprems_of th of |
|
69 |
0 => conclude th |
|
70 |
| n => raise THM ("Proof failed.\n" ^ |
|
71 |
Pretty.string_of (Pretty.chunks (Display.pretty_goals n th)) ^ |
|
72 |
("\n" ^ string_of_int n ^ " unsolved goal(s)!"), 0, [th])); |
|
73 |
||
74 |
||
18027
09ab79d4e8e1
renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents:
17986
diff
changeset
|
75 |
|
09ab79d4e8e1
renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents:
17986
diff
changeset
|
76 |
(** results **) |
09ab79d4e8e1
renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents:
17986
diff
changeset
|
77 |
|
18207 | 78 |
(* HHF normal form: !! before ==>, outermost !! generalized *) |
79 |
||
80 |
local |
|
17980 | 81 |
|
18207 | 82 |
fun gen_norm_hhf ss = |
83 |
(not o Drule.is_norm_hhf o Thm.prop_of) ? |
|
84 |
Drule.fconv_rule (MetaSimplifier.rewrite_cterm (true, false, false) (K (K NONE)) ss) |
|
85 |
#> Thm.adjust_maxidx_thm |
|
86 |
#> Drule.gen_all; |
|
87 |
||
88 |
val ss = |
|
18180 | 89 |
MetaSimplifier.theory_context ProtoPure.thy MetaSimplifier.empty_ss |
90 |
addsimps [Drule.norm_hhf_eq]; |
|
91 |
||
18207 | 92 |
in |
18180 | 93 |
|
18207 | 94 |
val norm_hhf = gen_norm_hhf ss; |
18252 | 95 |
val norm_hhf_protect = gen_norm_hhf (ss addeqcongs [Drule.protect_cong]); |
17980 | 96 |
|
18207 | 97 |
end; |
18180 | 98 |
|
18027
09ab79d4e8e1
renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents:
17986
diff
changeset
|
99 |
|
09ab79d4e8e1
renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents:
17986
diff
changeset
|
100 |
(* composition of normal results *) |
09ab79d4e8e1
renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents:
17986
diff
changeset
|
101 |
|
09ab79d4e8e1
renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents:
17986
diff
changeset
|
102 |
fun compose_hhf tha i thb = |
18145 | 103 |
Thm.bicompose false (false, Drule.lift_all (Thm.cprem_of thb i) tha, 0) i thb; |
18027
09ab79d4e8e1
renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents:
17986
diff
changeset
|
104 |
|
18119 | 105 |
fun compose_hhf_tac th i = PRIMSEQ (compose_hhf th i); |
106 |
||
18027
09ab79d4e8e1
renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents:
17986
diff
changeset
|
107 |
fun comp_hhf tha thb = |
19862 | 108 |
(case Seq.chop 2 (compose_hhf tha 1 thb) of |
18119 | 109 |
([th], _) => th |
110 |
| ([], _) => raise THM ("comp_hhf: no unifiers", 1, [tha, thb]) |
|
111 |
| _ => raise THM ("comp_hhf: multiple unifiers", 1, [tha, thb])); |
|
17986 | 112 |
|
113 |
||
18027
09ab79d4e8e1
renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents:
17986
diff
changeset
|
114 |
|
09ab79d4e8e1
renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents:
17986
diff
changeset
|
115 |
(** tactical theorem proving **) |
09ab79d4e8e1
renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents:
17986
diff
changeset
|
116 |
|
18119 | 117 |
(* prove_multi *) |
17986 | 118 |
|
18119 | 119 |
fun prove_multi thy xs asms props tac = |
17980 | 120 |
let |
121 |
val prop = Logic.mk_conjunction_list props; |
|
122 |
val statement = Logic.list_implies (asms, prop); |
|
18139 | 123 |
val frees = Term.add_frees statement []; |
17980 | 124 |
val fixed_frees = filter_out (member (op =) xs o #1) frees; |
18139 | 125 |
val fixed_tfrees = fold (Term.add_tfreesT o #2) fixed_frees []; |
19482
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
wenzelm
parents:
19423
diff
changeset
|
126 |
val params = map_filter (fn x => Option.map (pair x) (AList.lookup (op =) frees x)) xs; |
17980 | 127 |
|
18678 | 128 |
fun err msg = cat_error msg |
129 |
("The error(s) above occurred for the goal statement:\n" ^ |
|
17980 | 130 |
Sign.string_of_term thy (Term.list_all_free (params, statement))); |
131 |
fun cert_safe t = Thm.cterm_of thy (Envir.beta_norm t) |
|
132 |
handle TERM (msg, _) => err msg | TYPE (msg, _, _) => err msg; |
|
133 |
||
134 |
val _ = cert_safe statement; |
|
135 |
val _ = Term.no_dummy_patterns statement handle TERM (msg, _) => err msg; |
|
136 |
||
137 |
val cparams = map (cert_safe o Free) params; |
|
138 |
val casms = map cert_safe asms; |
|
18027
09ab79d4e8e1
renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents:
17986
diff
changeset
|
139 |
val prems = map (norm_hhf o Thm.assume) casms; |
17980 | 140 |
|
19774
5fe7731d0836
allow non-trivial schematic goals (via embedded term vars);
wenzelm
parents:
19619
diff
changeset
|
141 |
val res = |
5fe7731d0836
allow non-trivial schematic goals (via embedded term vars);
wenzelm
parents:
19619
diff
changeset
|
142 |
(case SINGLE (tac prems) (init (cert_safe prop)) of |
5fe7731d0836
allow non-trivial schematic goals (via embedded term vars);
wenzelm
parents:
19619
diff
changeset
|
143 |
NONE => err "Tactic failed." |
5fe7731d0836
allow non-trivial schematic goals (via embedded term vars);
wenzelm
parents:
19619
diff
changeset
|
144 |
| SOME res => res); |
5fe7731d0836
allow non-trivial schematic goals (via embedded term vars);
wenzelm
parents:
19619
diff
changeset
|
145 |
val [results] = |
5fe7731d0836
allow non-trivial schematic goals (via embedded term vars);
wenzelm
parents:
19619
diff
changeset
|
146 |
Conjunction.elim_precise [length props] (finish res) handle THM (msg, _, _) => err msg; |
19862 | 147 |
val _ = Unify.matches_list thy (map (Thm.term_of o cert_safe) props) (map Thm.prop_of results) |
19774
5fe7731d0836
allow non-trivial schematic goals (via embedded term vars);
wenzelm
parents:
19619
diff
changeset
|
148 |
orelse err ("Proved a different theorem: " ^ Sign.string_of_term thy (Thm.prop_of res)); |
17980 | 149 |
in |
19774
5fe7731d0836
allow non-trivial schematic goals (via embedded term vars);
wenzelm
parents:
19619
diff
changeset
|
150 |
results |> map |
17980 | 151 |
(Drule.implies_intr_list casms |
152 |
#> Drule.forall_intr_list cparams |
|
18119 | 153 |
#> norm_hhf |
18139 | 154 |
#> Thm.varifyT' fixed_tfrees |
155 |
#-> K Drule.zero_var_indexes) |
|
17980 | 156 |
end; |
157 |
||
158 |
||
18119 | 159 |
(* prove *) |
17980 | 160 |
|
161 |
fun prove thy xs asms prop tac = hd (prove_multi thy xs asms [prop] tac); |
|
162 |
||
163 |
||
18027
09ab79d4e8e1
renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents:
17986
diff
changeset
|
164 |
(* prove_raw -- no checks, no normalization of result! *) |
09ab79d4e8e1
renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents:
17986
diff
changeset
|
165 |
|
09ab79d4e8e1
renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents:
17986
diff
changeset
|
166 |
fun prove_raw casms cprop tac = |
09ab79d4e8e1
renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents:
17986
diff
changeset
|
167 |
(case SINGLE (tac (map (norm_hhf o Thm.assume) casms)) (init cprop) of |
09ab79d4e8e1
renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents:
17986
diff
changeset
|
168 |
SOME th => Drule.implies_intr_list casms (finish th) |
18678 | 169 |
| NONE => error "Tactic failed."); |
18027
09ab79d4e8e1
renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents:
17986
diff
changeset
|
170 |
|
09ab79d4e8e1
renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents:
17986
diff
changeset
|
171 |
|
17980 | 172 |
|
19184 | 173 |
(** local goal states **) |
18207 | 174 |
|
19184 | 175 |
fun extract i n st = |
176 |
(if i < 1 orelse n < 1 orelse i + n - 1 > Thm.nprems_of st then Seq.empty |
|
177 |
else if n = 1 then Seq.single (Thm.cprem_of st i) |
|
19423 | 178 |
else Seq.single (foldr1 Conjunction.mk_conjunction (map (Thm.cprem_of st) (i upto i + n - 1)))) |
19184 | 179 |
|> Seq.map (Thm.adjust_maxidx #> init); |
17980 | 180 |
|
19221 | 181 |
fun retrofit i n st' st = |
182 |
(if n = 1 then st |
|
19423 | 183 |
else st |> Drule.rotate_prems (i - 1) |> Conjunction.uncurry n |> Drule.rotate_prems (1 - i)) |
19221 | 184 |
|> Thm.compose_no_flatten false (conclude st', Thm.nprems_of st') i; |
18207 | 185 |
|
17980 | 186 |
fun SELECT_GOAL tac i st = |
19191 | 187 |
if Thm.nprems_of st = 1 andalso i = 1 then tac st |
19184 | 188 |
else Seq.lifts (retrofit i 1) (Seq.maps tac (extract i 1 st)) st; |
17980 | 189 |
|
18207 | 190 |
end; |
191 |
||
17980 | 192 |
structure BasicGoal: BASIC_GOAL = Goal; |
193 |
open BasicGoal; |