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