author | wenzelm |
Thu, 30 Nov 2006 14:17:29 +0100 | |
changeset 21604 | 1af327306c8e |
parent 21579 | abd2b4386a63 |
child 21687 | f689f729afab |
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 |
|
21604
1af327306c8e
added norm/close_result (supercede local_standard etc.);
wenzelm
parents:
21579
diff
changeset
|
20 |
val norm_result: thm -> thm |
1af327306c8e
added norm/close_result (supercede local_standard etc.);
wenzelm
parents:
21579
diff
changeset
|
21 |
val close_result: 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 |
20250
c3f209752749
prove: proper assumption context, more tactic arguments;
wenzelm
parents:
20228
diff
changeset
|
25 |
val prove_raw: cterm list -> cterm -> (thm list -> tactic) -> thm |
20290 | 26 |
val prove_multi: Proof.context -> string list -> term list -> term list -> |
27 |
({prems: thm list, context: Proof.context} -> tactic) -> thm list |
|
28 |
val prove: Proof.context -> string list -> term list -> term -> |
|
29 |
({prems: thm list, context: Proof.context} -> tactic) -> thm |
|
20056 | 30 |
val prove_global: theory -> string list -> term list -> term -> (thm list -> tactic) -> thm |
19184 | 31 |
val extract: int -> int -> thm -> thm Seq.seq |
32 |
val retrofit: int -> int -> thm -> thm -> thm Seq.seq |
|
17980 | 33 |
end; |
34 |
||
35 |
structure Goal: GOAL = |
|
36 |
struct |
|
37 |
||
18027
09ab79d4e8e1
renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents:
17986
diff
changeset
|
38 |
(** goals **) |
09ab79d4e8e1
renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents:
17986
diff
changeset
|
39 |
|
09ab79d4e8e1
renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents:
17986
diff
changeset
|
40 |
(* |
09ab79d4e8e1
renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents:
17986
diff
changeset
|
41 |
-------- (init) |
09ab79d4e8e1
renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents:
17986
diff
changeset
|
42 |
C ==> #C |
09ab79d4e8e1
renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents:
17986
diff
changeset
|
43 |
*) |
20290 | 44 |
val init = |
45 |
let val A = #1 (Drule.dest_implies (Thm.cprop_of Drule.protectI)) |
|
46 |
in fn C => Thm.instantiate ([], [(A, C)]) Drule.protectI end; |
|
17980 | 47 |
|
48 |
(* |
|
18119 | 49 |
C |
50 |
--- (protect) |
|
51 |
#C |
|
17980 | 52 |
*) |
21579 | 53 |
fun protect th = th COMP_INCR Drule.protectI; |
17980 | 54 |
|
55 |
(* |
|
18027
09ab79d4e8e1
renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents:
17986
diff
changeset
|
56 |
A ==> ... ==> #C |
09ab79d4e8e1
renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents:
17986
diff
changeset
|
57 |
---------------- (conclude) |
17980 | 58 |
A ==> ... ==> C |
59 |
*) |
|
60 |
fun conclude th = |
|
18497 | 61 |
(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
|
62 |
(Drule.incr_indexes th Drule.protectD) of |
17980 | 63 |
SOME th' => th' |
64 |
| NONE => raise THM ("Failed to conclude goal", 0, [th])); |
|
65 |
||
66 |
(* |
|
18027
09ab79d4e8e1
renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents:
17986
diff
changeset
|
67 |
#C |
09ab79d4e8e1
renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents:
17986
diff
changeset
|
68 |
--- (finish) |
09ab79d4e8e1
renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents:
17986
diff
changeset
|
69 |
C |
17983 | 70 |
*) |
17980 | 71 |
fun finish th = |
72 |
(case Thm.nprems_of th of |
|
73 |
0 => conclude th |
|
74 |
| n => raise THM ("Proof failed.\n" ^ |
|
75 |
Pretty.string_of (Pretty.chunks (Display.pretty_goals n th)) ^ |
|
76 |
("\n" ^ string_of_int n ^ " unsolved goal(s)!"), 0, [th])); |
|
77 |
||
78 |
||
18027
09ab79d4e8e1
renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents:
17986
diff
changeset
|
79 |
|
09ab79d4e8e1
renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents:
17986
diff
changeset
|
80 |
(** results **) |
09ab79d4e8e1
renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents:
17986
diff
changeset
|
81 |
|
21604
1af327306c8e
added norm/close_result (supercede local_standard etc.);
wenzelm
parents:
21579
diff
changeset
|
82 |
(* normal form *) |
1af327306c8e
added norm/close_result (supercede local_standard etc.);
wenzelm
parents:
21579
diff
changeset
|
83 |
|
1af327306c8e
added norm/close_result (supercede local_standard etc.);
wenzelm
parents:
21579
diff
changeset
|
84 |
val norm_result = |
1af327306c8e
added norm/close_result (supercede local_standard etc.);
wenzelm
parents:
21579
diff
changeset
|
85 |
Drule.flexflex_unique |
1af327306c8e
added norm/close_result (supercede local_standard etc.);
wenzelm
parents:
21579
diff
changeset
|
86 |
#> MetaSimplifier.norm_hhf_protect |
1af327306c8e
added norm/close_result (supercede local_standard etc.);
wenzelm
parents:
21579
diff
changeset
|
87 |
#> Thm.strip_shyps |
1af327306c8e
added norm/close_result (supercede local_standard etc.);
wenzelm
parents:
21579
diff
changeset
|
88 |
#> Drule.zero_var_indexes; |
1af327306c8e
added norm/close_result (supercede local_standard etc.);
wenzelm
parents:
21579
diff
changeset
|
89 |
|
1af327306c8e
added norm/close_result (supercede local_standard etc.);
wenzelm
parents:
21579
diff
changeset
|
90 |
val close_result = |
1af327306c8e
added norm/close_result (supercede local_standard etc.);
wenzelm
parents:
21579
diff
changeset
|
91 |
Thm.compress |
1af327306c8e
added norm/close_result (supercede local_standard etc.);
wenzelm
parents:
21579
diff
changeset
|
92 |
#> Drule.close_derivation; |
1af327306c8e
added norm/close_result (supercede local_standard etc.);
wenzelm
parents:
21579
diff
changeset
|
93 |
|
1af327306c8e
added norm/close_result (supercede local_standard etc.);
wenzelm
parents:
21579
diff
changeset
|
94 |
|
18027
09ab79d4e8e1
renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents:
17986
diff
changeset
|
95 |
(* composition of normal results *) |
09ab79d4e8e1
renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents:
17986
diff
changeset
|
96 |
|
09ab79d4e8e1
renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents:
17986
diff
changeset
|
97 |
fun compose_hhf tha i thb = |
18145 | 98 |
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
|
99 |
|
18119 | 100 |
fun compose_hhf_tac th i = PRIMSEQ (compose_hhf th i); |
101 |
||
18027
09ab79d4e8e1
renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents:
17986
diff
changeset
|
102 |
fun comp_hhf tha thb = |
19862 | 103 |
(case Seq.chop 2 (compose_hhf tha 1 thb) of |
18119 | 104 |
([th], _) => th |
105 |
| ([], _) => raise THM ("comp_hhf: no unifiers", 1, [tha, thb]) |
|
106 |
| _ => raise THM ("comp_hhf: multiple unifiers", 1, [tha, thb])); |
|
17986 | 107 |
|
108 |
||
18027
09ab79d4e8e1
renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents:
17986
diff
changeset
|
109 |
|
09ab79d4e8e1
renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents:
17986
diff
changeset
|
110 |
(** tactical theorem proving **) |
09ab79d4e8e1
renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents:
17986
diff
changeset
|
111 |
|
20250
c3f209752749
prove: proper assumption context, more tactic arguments;
wenzelm
parents:
20228
diff
changeset
|
112 |
(* prove_raw -- no checks, no normalization of result! *) |
c3f209752749
prove: proper assumption context, more tactic arguments;
wenzelm
parents:
20228
diff
changeset
|
113 |
|
c3f209752749
prove: proper assumption context, more tactic arguments;
wenzelm
parents:
20228
diff
changeset
|
114 |
fun prove_raw casms cprop tac = |
c3f209752749
prove: proper assumption context, more tactic arguments;
wenzelm
parents:
20228
diff
changeset
|
115 |
(case SINGLE (tac (map Assumption.assume casms)) (init cprop) of |
c3f209752749
prove: proper assumption context, more tactic arguments;
wenzelm
parents:
20228
diff
changeset
|
116 |
SOME th => Drule.implies_intr_list casms (finish th) |
c3f209752749
prove: proper assumption context, more tactic arguments;
wenzelm
parents:
20228
diff
changeset
|
117 |
| NONE => error "Tactic failed."); |
c3f209752749
prove: proper assumption context, more tactic arguments;
wenzelm
parents:
20228
diff
changeset
|
118 |
|
c3f209752749
prove: proper assumption context, more tactic arguments;
wenzelm
parents:
20228
diff
changeset
|
119 |
|
18119 | 120 |
(* prove_multi *) |
17986 | 121 |
|
20056 | 122 |
fun prove_multi ctxt xs asms props tac = |
17980 | 123 |
let |
21516 | 124 |
val thy = ProofContext.theory_of ctxt; |
20056 | 125 |
val string_of_term = Sign.string_of_term thy; |
126 |
||
20250
c3f209752749
prove: proper assumption context, more tactic arguments;
wenzelm
parents:
20228
diff
changeset
|
127 |
fun err msg = cat_error msg |
c3f209752749
prove: proper assumption context, more tactic arguments;
wenzelm
parents:
20228
diff
changeset
|
128 |
("The error(s) above occurred for the goal statement:\n" ^ |
c3f209752749
prove: proper assumption context, more tactic arguments;
wenzelm
parents:
20228
diff
changeset
|
129 |
string_of_term (Logic.list_implies (asms, Logic.mk_conjunction_list props))); |
17980 | 130 |
|
20250
c3f209752749
prove: proper assumption context, more tactic arguments;
wenzelm
parents:
20228
diff
changeset
|
131 |
fun cert_safe t = Thm.cterm_of thy (Envir.beta_norm (Term.no_dummy_patterns t)) |
17980 | 132 |
handle TERM (msg, _) => err msg | TYPE (msg, _, _) => err msg; |
20250
c3f209752749
prove: proper assumption context, more tactic arguments;
wenzelm
parents:
20228
diff
changeset
|
133 |
val casms = map cert_safe asms; |
c3f209752749
prove: proper assumption context, more tactic arguments;
wenzelm
parents:
20228
diff
changeset
|
134 |
val cprops = map cert_safe props; |
17980 | 135 |
|
20250
c3f209752749
prove: proper assumption context, more tactic arguments;
wenzelm
parents:
20228
diff
changeset
|
136 |
val (prems, ctxt') = ctxt |
c3f209752749
prove: proper assumption context, more tactic arguments;
wenzelm
parents:
20228
diff
changeset
|
137 |
|> Variable.add_fixes_direct xs |
c3f209752749
prove: proper assumption context, more tactic arguments;
wenzelm
parents:
20228
diff
changeset
|
138 |
|> fold Variable.declare_internal (asms @ props) |
c3f209752749
prove: proper assumption context, more tactic arguments;
wenzelm
parents:
20228
diff
changeset
|
139 |
|> Assumption.add_assumes casms; |
17980 | 140 |
|
20250
c3f209752749
prove: proper assumption context, more tactic arguments;
wenzelm
parents:
20228
diff
changeset
|
141 |
val goal = init (Conjunction.mk_conjunction_list cprops); |
19774
5fe7731d0836
allow non-trivial schematic goals (via embedded term vars);
wenzelm
parents:
19619
diff
changeset
|
142 |
val res = |
20250
c3f209752749
prove: proper assumption context, more tactic arguments;
wenzelm
parents:
20228
diff
changeset
|
143 |
(case SINGLE (tac {prems = prems, context = ctxt'}) goal of |
19774
5fe7731d0836
allow non-trivial schematic goals (via embedded term vars);
wenzelm
parents:
19619
diff
changeset
|
144 |
NONE => err "Tactic failed." |
5fe7731d0836
allow non-trivial schematic goals (via embedded term vars);
wenzelm
parents:
19619
diff
changeset
|
145 |
| SOME res => res); |
20250
c3f209752749
prove: proper assumption context, more tactic arguments;
wenzelm
parents:
20228
diff
changeset
|
146 |
val [results] = Conjunction.elim_precise [length props] (finish res) |
c3f209752749
prove: proper assumption context, more tactic arguments;
wenzelm
parents:
20228
diff
changeset
|
147 |
handle THM (msg, _, _) => err msg; |
c3f209752749
prove: proper assumption context, more tactic arguments;
wenzelm
parents:
20228
diff
changeset
|
148 |
val _ = Unify.matches_list thy (map Thm.term_of cprops) (map Thm.prop_of results) |
20056 | 149 |
orelse err ("Proved a different theorem: " ^ string_of_term (Thm.prop_of res)); |
17980 | 150 |
in |
20056 | 151 |
results |
20290 | 152 |
|> map (Assumption.export false ctxt' ctxt) |
20056 | 153 |
|> Variable.export ctxt' ctxt |
20250
c3f209752749
prove: proper assumption context, more tactic arguments;
wenzelm
parents:
20228
diff
changeset
|
154 |
|> map Drule.zero_var_indexes |
17980 | 155 |
end; |
156 |
||
157 |
||
18119 | 158 |
(* prove *) |
17980 | 159 |
|
20056 | 160 |
fun prove ctxt xs asms prop tac = hd (prove_multi ctxt xs asms [prop] tac); |
161 |
||
162 |
fun prove_global thy xs asms prop tac = |
|
21516 | 163 |
Drule.standard (prove (ProofContext.init thy) xs asms prop (fn {prems, ...} => tac prems)); |
18027
09ab79d4e8e1
renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents:
17986
diff
changeset
|
164 |
|
09ab79d4e8e1
renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents:
17986
diff
changeset
|
165 |
|
17980 | 166 |
|
19184 | 167 |
(** local goal states **) |
18207 | 168 |
|
19184 | 169 |
fun extract i n st = |
170 |
(if i < 1 orelse n < 1 orelse i + n - 1 > Thm.nprems_of st then Seq.empty |
|
171 |
else if n = 1 then Seq.single (Thm.cprem_of st i) |
|
19423 | 172 |
else Seq.single (foldr1 Conjunction.mk_conjunction (map (Thm.cprem_of st) (i upto i + n - 1)))) |
20260 | 173 |
|> Seq.map (Thm.adjust_maxidx_cterm ~1 #> init); |
17980 | 174 |
|
19221 | 175 |
fun retrofit i n st' st = |
176 |
(if n = 1 then st |
|
19423 | 177 |
else st |> Drule.rotate_prems (i - 1) |> Conjunction.uncurry n |> Drule.rotate_prems (1 - i)) |
19221 | 178 |
|> Thm.compose_no_flatten false (conclude st', Thm.nprems_of st') i; |
18207 | 179 |
|
17980 | 180 |
fun SELECT_GOAL tac i st = |
19191 | 181 |
if Thm.nprems_of st = 1 andalso i = 1 then tac st |
19184 | 182 |
else Seq.lifts (retrofit i 1) (Seq.maps tac (extract i 1 st)) st; |
17980 | 183 |
|
18207 | 184 |
end; |
185 |
||
17980 | 186 |
structure BasicGoal: BASIC_GOAL = Goal; |
187 |
open BasicGoal; |