| author | berghofe | 
| Tue, 04 May 2010 14:11:28 +0200 | |
| changeset 36643 | f36588af1ba1 | 
| parent 35416 | d8d7d1b785af | 
| child 37591 | d3daea901123 | 
| permissions | -rw-r--r-- | 
| 1476 | 1  | 
(* Title: HOL/Hoare/Hoare.thy  | 
| 5646 | 2  | 
Author: Leonor Prensa Nieto & Tobias Nipkow  | 
3  | 
Copyright 1998 TUM  | 
|
| 1335 | 4  | 
|
5  | 
Sugared semantic embedding of Hoare logic.  | 
|
| 5646 | 6  | 
Strictly speaking a shallow embedding (as implemented by Norbert Galm  | 
7  | 
following Mike Gordon) would suffice. Maybe the datatype com comes in useful  | 
|
8  | 
later.  | 
|
| 1335 | 9  | 
*)  | 
10  | 
||
| 
35316
 
870dfea4f9c0
dropped axclass; dropped Id; session theory Hoare.thy
 
haftmann 
parents: 
35113 
diff
changeset
 | 
11  | 
theory Hoare_Logic  | 
| 
28457
 
25669513fd4c
major cleanup of hoare_tac.ML: just one copy for Hoare.thy and HoareAbort.thy (only 1 line different), refrain from inspecting the main goal, proper context;
 
wenzelm 
parents: 
24472 
diff
changeset
 | 
12  | 
imports Main  | 
| 
24472
 
943ef707396c
added Hoare/hoare_tac.ML (code from Hoare/Hoare.thy, also required in Isar_examples/Hoare.thy);
 
wenzelm 
parents: 
24470 
diff
changeset
 | 
13  | 
uses ("hoare_tac.ML")
 | 
| 
24470
 
41c81e23c08d
removed Hoare/hoare.ML, Hoare/hoareAbort.ML, ex/svc_oracle.ML (which can be mistaken as attached ML script on case-insensitive file-system);
 
wenzelm 
parents: 
21588 
diff
changeset
 | 
14  | 
begin  | 
| 1335 | 15  | 
|
16  | 
types  | 
|
| 13682 | 17  | 
'a bexp = "'a set"  | 
18  | 
'a assn = "'a set"  | 
|
| 5646 | 19  | 
|
20  | 
datatype  | 
|
| 35113 | 21  | 
'a com = Basic "'a \<Rightarrow> 'a"  | 
| 13682 | 22  | 
   | Seq "'a com" "'a com"               ("(_;/ _)"      [61,60] 60)
 | 
23  | 
   | Cond "'a bexp" "'a com" "'a com"    ("(1IF _/ THEN _ / ELSE _/ FI)"  [0,0,0] 61)
 | 
|
24  | 
   | While "'a bexp" "'a assn" "'a com"  ("(1WHILE _/ INV {_} //DO _ /OD)"  [0,0,0] 61)
 | 
|
| 35113 | 25  | 
|
| 35054 | 26  | 
abbreviation annskip ("SKIP") where "SKIP == Basic id"
 | 
| 5646 | 27  | 
|
| 13682 | 28  | 
types 'a sem = "'a => 'a => bool"  | 
| 5646 | 29  | 
|
| 36643 | 30  | 
inductive Sem :: "'a com \<Rightarrow> 'a sem"  | 
31  | 
where  | 
|
32  | 
"Sem (Basic f) s (f s)"  | 
|
33  | 
| "Sem c1 s s'' \<Longrightarrow> Sem c2 s'' s' \<Longrightarrow> Sem (c1;c2) s s'"  | 
|
34  | 
| "s \<in> b \<Longrightarrow> Sem c1 s s' \<Longrightarrow> Sem (IF b THEN c1 ELSE c2 FI) s s'"  | 
|
35  | 
| "s \<notin> b \<Longrightarrow> Sem c2 s s' \<Longrightarrow> Sem (IF b THEN c1 ELSE c2 FI) s s'"  | 
|
36  | 
| "s \<notin> b \<Longrightarrow> Sem (While b x c) s s"  | 
|
37  | 
| "s \<in> b \<Longrightarrow> Sem c s s'' \<Longrightarrow> Sem (While b x c) s'' s' \<Longrightarrow>  | 
|
38  | 
Sem (While b x c) s s'"  | 
|
| 5646 | 39  | 
|
| 36643 | 40  | 
inductive_cases [elim!]:  | 
41  | 
"Sem (Basic f) s s'" "Sem (c1;c2) s s'"  | 
|
42  | 
"Sem (IF b THEN c1 ELSE c2 FI) s s'"  | 
|
| 5646 | 43  | 
|
| 
35416
 
d8d7d1b785af
replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
 
haftmann 
parents: 
35316 
diff
changeset
 | 
44  | 
definition Valid :: "'a bexp \<Rightarrow> 'a com \<Rightarrow> 'a bexp \<Rightarrow> bool" where  | 
| 5646 | 45  | 
"Valid p c q == !s s'. Sem c s s' --> s : p --> s' : q"  | 
| 5007 | 46  | 
|
47  | 
||
| 1335 | 48  | 
|
| 5646 | 49  | 
(** parse translations **)  | 
| 1335 | 50  | 
|
| 35054 | 51  | 
syntax  | 
52  | 
  "_assign"  :: "id => 'b => 'a com"        ("(2_ :=/ _)" [70,65] 61)
 | 
|
53  | 
||
54  | 
syntax  | 
|
55  | 
"_hoare_vars" :: "[idts, 'a assn,'a com,'a assn] => bool"  | 
|
56  | 
                 ("VARS _// {_} // _ // {_}" [0,0,55,0] 50)
 | 
|
57  | 
syntax ("" output)
 | 
|
58  | 
"_hoare" :: "['a assn,'a com,'a assn] => bool"  | 
|
59  | 
                 ("{_} // _ // {_}" [0,55,0] 50)
 | 
|
60  | 
ML {*
 | 
|
| 13764 | 61  | 
|
62  | 
local  | 
|
| 13857 | 63  | 
|
| 13764 | 64  | 
fun abs((a,T),body) =  | 
65  | 
let val a = absfree(a, dummyT, body)  | 
|
66  | 
in if T = Bound 0 then a else Const(Syntax.constrainAbsC,dummyT) $ a $ T end  | 
|
67  | 
in  | 
|
| 1335 | 68  | 
|
| 13764 | 69  | 
fun mk_abstuple [x] body = abs (x, body)  | 
70  | 
| mk_abstuple (x::xs) body =  | 
|
| 35113 | 71  | 
      Syntax.const @{const_syntax split} $ abs (x, mk_abstuple xs body);
 | 
| 1335 | 72  | 
|
| 13857 | 73  | 
fun mk_fbody a e [x as (b,_)] = if a=b then e else Syntax.free b  | 
| 13764 | 74  | 
| mk_fbody a e ((b,_)::xs) =  | 
| 35113 | 75  | 
      Syntax.const @{const_syntax Pair} $ (if a=b then e else Syntax.free b) $ mk_fbody a e xs;
 | 
| 13764 | 76  | 
|
77  | 
fun mk_fexp a e xs = mk_abstuple xs (mk_fbody a e xs)  | 
|
78  | 
end  | 
|
| 13682 | 79  | 
*}  | 
| 1335 | 80  | 
|
| 5646 | 81  | 
(* bexp_tr & assn_tr *)  | 
| 9397 | 82  | 
(*all meta-variables for bexp except for TRUE are translated as if they  | 
| 5646 | 83  | 
were boolean expressions*)  | 
| 13682 | 84  | 
ML{*
 | 
| 35113 | 85  | 
fun bexp_tr (Const ("TRUE", _)) xs = Syntax.const "TRUE"   (* FIXME !? *)
 | 
86  | 
  | bexp_tr b xs = Syntax.const @{const_syntax Collect} $ mk_abstuple xs b;
 | 
|
87  | 
||
88  | 
fun assn_tr r xs = Syntax.const @{const_syntax Collect} $ mk_abstuple xs r;
 | 
|
| 13682 | 89  | 
*}  | 
| 5646 | 90  | 
(* com_tr *)  | 
| 13682 | 91  | 
ML{*
 | 
| 35113 | 92  | 
fun com_tr (Const(@{syntax_const "_assign"},_) $ Free (a,_) $ e) xs =
 | 
93  | 
      Syntax.const @{const_syntax Basic} $ mk_fexp a e xs
 | 
|
94  | 
  | com_tr (Const (@{const_syntax Basic},_) $ f) xs = Syntax.const @{const_syntax Basic} $ f
 | 
|
95  | 
  | com_tr (Const (@{const_syntax Seq},_) $ c1 $ c2) xs =
 | 
|
96  | 
      Syntax.const @{const_syntax Seq} $ com_tr c1 xs $ com_tr c2 xs
 | 
|
97  | 
  | com_tr (Const (@{const_syntax Cond},_) $ b $ c1 $ c2) xs =
 | 
|
98  | 
      Syntax.const @{const_syntax Cond} $ bexp_tr b xs $ com_tr c1 xs $ com_tr c2 xs
 | 
|
99  | 
  | com_tr (Const (@{const_syntax While},_) $ b $ I $ c) xs =
 | 
|
100  | 
      Syntax.const @{const_syntax While} $ bexp_tr b xs $ assn_tr I xs $ com_tr c xs
 | 
|
| 13764 | 101  | 
| com_tr t _ = t (* if t is just a Free/Var *)  | 
| 13682 | 102  | 
*}  | 
| 5646 | 103  | 
|
| 17781 | 104  | 
(* triple_tr *) (* FIXME does not handle "_idtdummy" *)  | 
| 13682 | 105  | 
ML{*
 | 
| 13764 | 106  | 
local  | 
107  | 
||
108  | 
fun var_tr(Free(a,_)) = (a,Bound 0) (* Bound 0 = dummy term *)  | 
|
| 35113 | 109  | 
  | var_tr(Const (@{syntax_const "_constrain"}, _) $ (Free (a,_)) $ T) = (a,T);
 | 
| 5646 | 110  | 
|
| 35113 | 111  | 
fun vars_tr (Const (@{syntax_const "_idts"}, _) $ idt $ vars) = var_tr idt :: vars_tr vars
 | 
| 13764 | 112  | 
| vars_tr t = [var_tr t]  | 
113  | 
||
114  | 
in  | 
|
| 5646 | 115  | 
fun hoare_vars_tr [vars, pre, prg, post] =  | 
116  | 
let val xs = vars_tr vars  | 
|
| 35113 | 117  | 
      in Syntax.const @{const_syntax Valid} $
 | 
| 13764 | 118  | 
assn_tr pre xs $ com_tr prg xs $ assn_tr post xs  | 
| 5646 | 119  | 
end  | 
120  | 
  | hoare_vars_tr ts = raise TERM ("hoare_vars_tr", ts);
 | 
|
| 13764 | 121  | 
end  | 
| 13682 | 122  | 
*}  | 
| 5646 | 123  | 
|
| 35113 | 124  | 
parse_translation {* [(@{syntax_const "_hoare_vars"}, hoare_vars_tr)] *}
 | 
| 1335 | 125  | 
|
126  | 
||
| 5646 | 127  | 
(*****************************************************************************)  | 
128  | 
||
129  | 
(*** print translations ***)  | 
|
| 13682 | 130  | 
ML{*
 | 
| 35113 | 131  | 
fun dest_abstuple (Const (@{const_syntax split},_) $ (Abs(v,_, body))) =
 | 
| 5646 | 132  | 
subst_bound (Syntax.free v, dest_abstuple body)  | 
133  | 
| dest_abstuple (Abs(v,_, body)) = subst_bound (Syntax.free v, body)  | 
|
134  | 
| dest_abstuple trm = trm;  | 
|
| 1335 | 135  | 
|
| 35113 | 136  | 
fun abs2list (Const (@{const_syntax split},_) $ (Abs(x,T,t))) = Free (x, T)::abs2list t
 | 
| 5646 | 137  | 
| abs2list (Abs(x,T,t)) = [Free (x, T)]  | 
138  | 
| abs2list _ = [];  | 
|
| 1335 | 139  | 
|
| 35113 | 140  | 
fun mk_ts (Const (@{const_syntax split},_) $ (Abs(x,_,t))) = mk_ts t
 | 
| 5646 | 141  | 
| mk_ts (Abs(x,_,t)) = mk_ts t  | 
| 35113 | 142  | 
  | mk_ts (Const (@{const_syntax Pair},_) $ a $ b) = a::(mk_ts b)
 | 
| 5646 | 143  | 
| mk_ts t = [t];  | 
| 1335 | 144  | 
|
| 35113 | 145  | 
fun mk_vts (Const (@{const_syntax split},_) $ (Abs(x,_,t))) =
 | 
| 5646 | 146  | 
((Syntax.free x)::(abs2list t), mk_ts t)  | 
147  | 
| mk_vts (Abs(x,_,t)) = ([Syntax.free x], [t])  | 
|
148  | 
| mk_vts t = raise Match;  | 
|
| 35113 | 149  | 
|
150  | 
fun find_ch [] i xs = (false, (Syntax.free "not_ch", Syntax.free "not_ch"))  | 
|
151  | 
| find_ch ((v,t)::vts) i xs =  | 
|
152  | 
if t = Bound i then find_ch vts (i-1) xs  | 
|
153  | 
else (true, (v, subst_bounds (xs, t)));  | 
|
154  | 
||
155  | 
fun is_f (Const (@{const_syntax split},_) $ (Abs(x,_,t))) = true
 | 
|
| 5646 | 156  | 
| is_f (Abs(x,_,t)) = true  | 
157  | 
| is_f t = false;  | 
|
| 13682 | 158  | 
*}  | 
159  | 
||
| 5646 | 160  | 
(* assn_tr' & bexp_tr'*)  | 
| 35113 | 161  | 
ML{*
 | 
162  | 
fun assn_tr' (Const (@{const_syntax Collect},_) $ T) = dest_abstuple T
 | 
|
163  | 
  | assn_tr' (Const (@{const_syntax inter}, _) $
 | 
|
164  | 
        (Const (@{const_syntax Collect},_) $ T1) $ (Const (@{const_syntax Collect},_) $ T2)) =
 | 
|
165  | 
      Syntax.const @{const_syntax inter} $ dest_abstuple T1 $ dest_abstuple T2
 | 
|
| 5646 | 166  | 
| assn_tr' t = t;  | 
| 1335 | 167  | 
|
| 35113 | 168  | 
fun bexp_tr' (Const (@{const_syntax Collect},_) $ T) = dest_abstuple T
 | 
| 5646 | 169  | 
| bexp_tr' t = t;  | 
| 13682 | 170  | 
*}  | 
| 5646 | 171  | 
|
172  | 
(*com_tr' *)  | 
|
| 13682 | 173  | 
ML{*
 | 
| 5646 | 174  | 
fun mk_assign f =  | 
175  | 
let val (vs, ts) = mk_vts f;  | 
|
176  | 
val (ch, which) = find_ch (vs~~ts) ((length vs)-1) (rev vs)  | 
|
| 35113 | 177  | 
in  | 
178  | 
    if ch then Syntax.const @{syntax_const "_assign"} $ fst which $ snd which
 | 
|
179  | 
    else Syntax.const @{const_syntax annskip}
 | 
|
180  | 
end;  | 
|
| 1335 | 181  | 
|
| 35113 | 182  | 
fun com_tr' (Const (@{const_syntax Basic},_) $ f) =
 | 
183  | 
if is_f f then mk_assign f  | 
|
184  | 
      else Syntax.const @{const_syntax Basic} $ f
 | 
|
185  | 
  | com_tr' (Const (@{const_syntax Seq},_) $ c1 $ c2) =
 | 
|
186  | 
      Syntax.const @{const_syntax Seq} $ com_tr' c1 $ com_tr' c2
 | 
|
187  | 
  | com_tr' (Const (@{const_syntax Cond},_) $ b $ c1 $ c2) =
 | 
|
188  | 
      Syntax.const @{const_syntax Cond} $ bexp_tr' b $ com_tr' c1 $ com_tr' c2
 | 
|
189  | 
  | com_tr' (Const (@{const_syntax While},_) $ b $ I $ c) =
 | 
|
190  | 
      Syntax.const @{const_syntax While} $ bexp_tr' b $ assn_tr' I $ com_tr' c
 | 
|
| 5646 | 191  | 
| com_tr' t = t;  | 
| 1335 | 192  | 
|
| 5646 | 193  | 
fun spec_tr' [p, c, q] =  | 
| 35113 | 194  | 
  Syntax.const @{syntax_const "_hoare"} $ assn_tr' p $ com_tr' c $ assn_tr' q
 | 
| 13682 | 195  | 
*}  | 
196  | 
||
| 35054 | 197  | 
print_translation {* [(@{const_syntax Valid}, spec_tr')] *}
 | 
| 13682 | 198  | 
|
| 13857 | 199  | 
lemma SkipRule: "p \<subseteq> q \<Longrightarrow> Valid p (Basic id) q"  | 
200  | 
by (auto simp:Valid_def)  | 
|
201  | 
||
202  | 
lemma BasicRule: "p \<subseteq> {s. f s \<in> q} \<Longrightarrow> Valid p (Basic f) q"
 | 
|
203  | 
by (auto simp:Valid_def)  | 
|
204  | 
||
205  | 
lemma SeqRule: "Valid P c1 Q \<Longrightarrow> Valid Q c2 R \<Longrightarrow> Valid P (c1;c2) R"  | 
|
206  | 
by (auto simp:Valid_def)  | 
|
207  | 
||
208  | 
lemma CondRule:  | 
|
209  | 
 "p \<subseteq> {s. (s \<in> b \<longrightarrow> s \<in> w) \<and> (s \<notin> b \<longrightarrow> s \<in> w')}
 | 
|
210  | 
\<Longrightarrow> Valid w c1 q \<Longrightarrow> Valid w' c2 q \<Longrightarrow> Valid p (Cond b c1 c2) q"  | 
|
211  | 
by (auto simp:Valid_def)  | 
|
212  | 
||
| 36643 | 213  | 
lemma While_aux:  | 
214  | 
  assumes "Sem (WHILE b INV {i} DO c OD) s s'"
 | 
|
215  | 
shows "\<forall>s s'. Sem c s s' \<longrightarrow> s \<in> I \<and> s \<in> b \<longrightarrow> s' \<in> I \<Longrightarrow>  | 
|
216  | 
s \<in> I \<Longrightarrow> s' \<in> I \<and> s' \<notin> b"  | 
|
217  | 
using assms  | 
|
218  | 
  by (induct "WHILE b INV {i} DO c OD" s s') auto
 | 
|
| 13857 | 219  | 
|
220  | 
lemma WhileRule:  | 
|
221  | 
"p \<subseteq> i \<Longrightarrow> Valid (i \<inter> b) c i \<Longrightarrow> i \<inter> (-b) \<subseteq> q \<Longrightarrow> Valid p (While b i c) q"  | 
|
222  | 
apply (clarsimp simp:Valid_def)  | 
|
| 36643 | 223  | 
apply(drule While_aux)  | 
224  | 
apply assumption  | 
|
| 13857 | 225  | 
apply blast  | 
226  | 
apply blast  | 
|
227  | 
done  | 
|
228  | 
||
229  | 
||
| 
24470
 
41c81e23c08d
removed Hoare/hoare.ML, Hoare/hoareAbort.ML, ex/svc_oracle.ML (which can be mistaken as attached ML script on case-insensitive file-system);
 
wenzelm 
parents: 
21588 
diff
changeset
 | 
230  | 
lemma Compl_Collect: "-(Collect b) = {x. ~(b x)}"
 | 
| 
 
41c81e23c08d
removed Hoare/hoare.ML, Hoare/hoareAbort.ML, ex/svc_oracle.ML (which can be mistaken as attached ML script on case-insensitive file-system);
 
wenzelm 
parents: 
21588 
diff
changeset
 | 
231  | 
by blast  | 
| 
 
41c81e23c08d
removed Hoare/hoare.ML, Hoare/hoareAbort.ML, ex/svc_oracle.ML (which can be mistaken as attached ML script on case-insensitive file-system);
 
wenzelm 
parents: 
21588 
diff
changeset
 | 
232  | 
|
| 
28457
 
25669513fd4c
major cleanup of hoare_tac.ML: just one copy for Hoare.thy and HoareAbort.thy (only 1 line different), refrain from inspecting the main goal, proper context;
 
wenzelm 
parents: 
24472 
diff
changeset
 | 
233  | 
lemmas AbortRule = SkipRule -- "dummy version"  | 
| 
24472
 
943ef707396c
added Hoare/hoare_tac.ML (code from Hoare/Hoare.thy, also required in Isar_examples/Hoare.thy);
 
wenzelm 
parents: 
24470 
diff
changeset
 | 
234  | 
use "hoare_tac.ML"  | 
| 13682 | 235  | 
|
236  | 
method_setup vcg = {*
 | 
|
| 30549 | 237  | 
Scan.succeed (fn ctxt => SIMPLE_METHOD' (hoare_tac ctxt (K all_tac))) *}  | 
| 13682 | 238  | 
"verification condition generator"  | 
239  | 
||
240  | 
method_setup vcg_simp = {*
 | 
|
| 30549 | 241  | 
Scan.succeed (fn ctxt =>  | 
| 
32149
 
ef59550a55d3
renamed simpset_of to global_simpset_of, and local_simpset_of to simpset_of -- same for claset and clasimpset;
 
wenzelm 
parents: 
32134 
diff
changeset
 | 
242  | 
SIMPLE_METHOD' (hoare_tac ctxt (asm_full_simp_tac (simpset_of ctxt)))) *}  | 
| 13682 | 243  | 
"verification condition generator plus simplification"  | 
244  | 
||
245  | 
end  |