src/HOL/Hoare/Hoare_Logic.thy
author wenzelm
Wed, 11 Aug 2010 18:41:06 +0200
changeset 38353 d98baa2cf589
parent 37591 d3daea901123
child 41959 b460124855b8
permissions -rw-r--r--
modernized specifications; tuned headers;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1476
608483c2122a expanded tabs; incorporated Konrad's changes
clasohm
parents: 1384
diff changeset
     1
(*  Title:      HOL/Hoare/Hoare.thy
5646
7c2ddbaf8b8c New many-sorted version.
nipkow
parents: 5565
diff changeset
     2
    Author:     Leonor Prensa Nieto & Tobias Nipkow
7c2ddbaf8b8c New many-sorted version.
nipkow
parents: 5565
diff changeset
     3
    Copyright   1998 TUM
1335
5e1c0540f285 New directory.
nipkow
parents:
diff changeset
     4
5e1c0540f285 New directory.
nipkow
parents:
diff changeset
     5
Sugared semantic embedding of Hoare logic.
5646
7c2ddbaf8b8c New many-sorted version.
nipkow
parents: 5565
diff changeset
     6
Strictly speaking a shallow embedding (as implemented by Norbert Galm
7c2ddbaf8b8c New many-sorted version.
nipkow
parents: 5565
diff changeset
     7
following Mike Gordon) would suffice. Maybe the datatype com comes in useful
7c2ddbaf8b8c New many-sorted version.
nipkow
parents: 5565
diff changeset
     8
later.
1335
5e1c0540f285 New directory.
nipkow
parents:
diff changeset
     9
*)
5e1c0540f285 New directory.
nipkow
parents:
diff changeset
    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
5e1c0540f285 New directory.
nipkow
parents:
diff changeset
    15
5e1c0540f285 New directory.
nipkow
parents:
diff changeset
    16
types
13682
91674c8a008b conversion ML -> thy
nipkow
parents: 11606
diff changeset
    17
    'a bexp = "'a set"
91674c8a008b conversion ML -> thy
nipkow
parents: 11606
diff changeset
    18
    'a assn = "'a set"
5646
7c2ddbaf8b8c New many-sorted version.
nipkow
parents: 5565
diff changeset
    19
7c2ddbaf8b8c New many-sorted version.
nipkow
parents: 5565
diff changeset
    20
datatype
35113
1a0c129bb2e0 modernized translations;
wenzelm
parents: 35054
diff changeset
    21
 'a com = Basic "'a \<Rightarrow> 'a"
13682
91674c8a008b conversion ML -> thy
nipkow
parents: 11606
diff changeset
    22
   | Seq "'a com" "'a com"               ("(_;/ _)"      [61,60] 60)
91674c8a008b conversion ML -> thy
nipkow
parents: 11606
diff changeset
    23
   | Cond "'a bexp" "'a com" "'a com"    ("(1IF _/ THEN _ / ELSE _/ FI)"  [0,0,0] 61)
91674c8a008b conversion ML -> thy
nipkow
parents: 11606
diff changeset
    24
   | While "'a bexp" "'a assn" "'a com"  ("(1WHILE _/ INV {_} //DO _ /OD)"  [0,0,0] 61)
35113
1a0c129bb2e0 modernized translations;
wenzelm
parents: 35054
diff changeset
    25
35054
a5db9779b026 modernized some syntax translations;
wenzelm
parents: 32149
diff changeset
    26
abbreviation annskip ("SKIP") where "SKIP == Basic id"
5646
7c2ddbaf8b8c New many-sorted version.
nipkow
parents: 5565
diff changeset
    27
13682
91674c8a008b conversion ML -> thy
nipkow
parents: 11606
diff changeset
    28
types 'a sem = "'a => 'a => bool"
5646
7c2ddbaf8b8c New many-sorted version.
nipkow
parents: 5565
diff changeset
    29
36643
f36588af1ba1 Turned Sem into an inductive definition.
berghofe
parents: 35416
diff changeset
    30
inductive Sem :: "'a com \<Rightarrow> 'a sem"
f36588af1ba1 Turned Sem into an inductive definition.
berghofe
parents: 35416
diff changeset
    31
where
f36588af1ba1 Turned Sem into an inductive definition.
berghofe
parents: 35416
diff changeset
    32
  "Sem (Basic f) s (f s)"
f36588af1ba1 Turned Sem into an inductive definition.
berghofe
parents: 35416
diff changeset
    33
| "Sem c1 s s'' \<Longrightarrow> Sem c2 s'' s' \<Longrightarrow> Sem (c1;c2) s s'"
f36588af1ba1 Turned Sem into an inductive definition.
berghofe
parents: 35416
diff changeset
    34
| "s \<in> b \<Longrightarrow> Sem c1 s s' \<Longrightarrow> Sem (IF b THEN c1 ELSE c2 FI) s s'"
f36588af1ba1 Turned Sem into an inductive definition.
berghofe
parents: 35416
diff changeset
    35
| "s \<notin> b \<Longrightarrow> Sem c2 s s' \<Longrightarrow> Sem (IF b THEN c1 ELSE c2 FI) s s'"
f36588af1ba1 Turned Sem into an inductive definition.
berghofe
parents: 35416
diff changeset
    36
| "s \<notin> b \<Longrightarrow> Sem (While b x c) s s"
f36588af1ba1 Turned Sem into an inductive definition.
berghofe
parents: 35416
diff changeset
    37
| "s \<in> b \<Longrightarrow> Sem c s s'' \<Longrightarrow> Sem (While b x c) s'' s' \<Longrightarrow>
f36588af1ba1 Turned Sem into an inductive definition.
berghofe
parents: 35416
diff changeset
    38
   Sem (While b x c) s s'"
5646
7c2ddbaf8b8c New many-sorted version.
nipkow
parents: 5565
diff changeset
    39
36643
f36588af1ba1 Turned Sem into an inductive definition.
berghofe
parents: 35416
diff changeset
    40
inductive_cases [elim!]:
f36588af1ba1 Turned Sem into an inductive definition.
berghofe
parents: 35416
diff changeset
    41
  "Sem (Basic f) s s'" "Sem (c1;c2) s s'"
f36588af1ba1 Turned Sem into an inductive definition.
berghofe
parents: 35416
diff changeset
    42
  "Sem (IF b THEN c1 ELSE c2 FI) s s'"
5646
7c2ddbaf8b8c New many-sorted version.
nipkow
parents: 5565
diff changeset
    43
38353
d98baa2cf589 modernized specifications;
wenzelm
parents: 37591
diff changeset
    44
definition Valid :: "'a bexp \<Rightarrow> 'a com \<Rightarrow> 'a bexp \<Rightarrow> bool"
d98baa2cf589 modernized specifications;
wenzelm
parents: 37591
diff changeset
    45
  where "Valid p c q \<longleftrightarrow> (!s s'. Sem c s s' --> s : p --> s' : q)"
5007
0ebd6c91088a nonterminals prog;
wenzelm
parents: 3842
diff changeset
    46
0ebd6c91088a nonterminals prog;
wenzelm
parents: 3842
diff changeset
    47
1335
5e1c0540f285 New directory.
nipkow
parents:
diff changeset
    48
5646
7c2ddbaf8b8c New many-sorted version.
nipkow
parents: 5565
diff changeset
    49
(** parse translations **)
1335
5e1c0540f285 New directory.
nipkow
parents:
diff changeset
    50
35054
a5db9779b026 modernized some syntax translations;
wenzelm
parents: 32149
diff changeset
    51
syntax
a5db9779b026 modernized some syntax translations;
wenzelm
parents: 32149
diff changeset
    52
  "_assign"  :: "id => 'b => 'a com"        ("(2_ :=/ _)" [70,65] 61)
a5db9779b026 modernized some syntax translations;
wenzelm
parents: 32149
diff changeset
    53
a5db9779b026 modernized some syntax translations;
wenzelm
parents: 32149
diff changeset
    54
syntax
a5db9779b026 modernized some syntax translations;
wenzelm
parents: 32149
diff changeset
    55
 "_hoare_vars" :: "[idts, 'a assn,'a com,'a assn] => bool"
a5db9779b026 modernized some syntax translations;
wenzelm
parents: 32149
diff changeset
    56
                 ("VARS _// {_} // _ // {_}" [0,0,55,0] 50)
a5db9779b026 modernized some syntax translations;
wenzelm
parents: 32149
diff changeset
    57
syntax ("" output)
a5db9779b026 modernized some syntax translations;
wenzelm
parents: 32149
diff changeset
    58
 "_hoare"      :: "['a assn,'a com,'a assn] => bool"
a5db9779b026 modernized some syntax translations;
wenzelm
parents: 32149
diff changeset
    59
                 ("{_} // _ // {_}" [0,55,0] 50)
a5db9779b026 modernized some syntax translations;
wenzelm
parents: 32149
diff changeset
    60
ML {*
13764
3e180bf68496 removed some problems with print translations
nipkow
parents: 13737
diff changeset
    61
3e180bf68496 removed some problems with print translations
nipkow
parents: 13737
diff changeset
    62
local
13857
11d7c5a8dbb7 *** empty log message ***
nipkow
parents: 13764
diff changeset
    63
13764
3e180bf68496 removed some problems with print translations
nipkow
parents: 13737
diff changeset
    64
fun abs((a,T),body) =
3e180bf68496 removed some problems with print translations
nipkow
parents: 13737
diff changeset
    65
  let val a = absfree(a, dummyT, body)
3e180bf68496 removed some problems with print translations
nipkow
parents: 13737
diff changeset
    66
  in if T = Bound 0 then a else Const(Syntax.constrainAbsC,dummyT) $ a $ T end
3e180bf68496 removed some problems with print translations
nipkow
parents: 13737
diff changeset
    67
in
1335
5e1c0540f285 New directory.
nipkow
parents:
diff changeset
    68
13764
3e180bf68496 removed some problems with print translations
nipkow
parents: 13737
diff changeset
    69
fun mk_abstuple [x] body = abs (x, body)
3e180bf68496 removed some problems with print translations
nipkow
parents: 13737
diff changeset
    70
  | mk_abstuple (x::xs) body =
37591
d3daea901123 merged constants "split" and "prod_case"
haftmann
parents: 36643
diff changeset
    71
      Syntax.const @{const_syntax prod_case} $ abs (x, mk_abstuple xs body);
1335
5e1c0540f285 New directory.
nipkow
parents:
diff changeset
    72
13857
11d7c5a8dbb7 *** empty log message ***
nipkow
parents: 13764
diff changeset
    73
fun mk_fbody a e [x as (b,_)] = if a=b then e else Syntax.free b
13764
3e180bf68496 removed some problems with print translations
nipkow
parents: 13737
diff changeset
    74
  | mk_fbody a e ((b,_)::xs) =
35113
1a0c129bb2e0 modernized translations;
wenzelm
parents: 35054
diff changeset
    75
      Syntax.const @{const_syntax Pair} $ (if a=b then e else Syntax.free b) $ mk_fbody a e xs;
13764
3e180bf68496 removed some problems with print translations
nipkow
parents: 13737
diff changeset
    76
3e180bf68496 removed some problems with print translations
nipkow
parents: 13737
diff changeset
    77
fun mk_fexp a e xs = mk_abstuple xs (mk_fbody a e xs)
3e180bf68496 removed some problems with print translations
nipkow
parents: 13737
diff changeset
    78
end
13682
91674c8a008b conversion ML -> thy
nipkow
parents: 11606
diff changeset
    79
*}
1335
5e1c0540f285 New directory.
nipkow
parents:
diff changeset
    80
5646
7c2ddbaf8b8c New many-sorted version.
nipkow
parents: 5565
diff changeset
    81
(* bexp_tr & assn_tr *)
9397
358e67410253 Updating of some comments
prensani
parents: 6055
diff changeset
    82
(*all meta-variables for bexp except for TRUE are translated as if they
5646
7c2ddbaf8b8c New many-sorted version.
nipkow
parents: 5565
diff changeset
    83
  were boolean expressions*)
13682
91674c8a008b conversion ML -> thy
nipkow
parents: 11606
diff changeset
    84
ML{*
35113
1a0c129bb2e0 modernized translations;
wenzelm
parents: 35054
diff changeset
    85
fun bexp_tr (Const ("TRUE", _)) xs = Syntax.const "TRUE"   (* FIXME !? *)
1a0c129bb2e0 modernized translations;
wenzelm
parents: 35054
diff changeset
    86
  | bexp_tr b xs = Syntax.const @{const_syntax Collect} $ mk_abstuple xs b;
1a0c129bb2e0 modernized translations;
wenzelm
parents: 35054
diff changeset
    87
1a0c129bb2e0 modernized translations;
wenzelm
parents: 35054
diff changeset
    88
fun assn_tr r xs = Syntax.const @{const_syntax Collect} $ mk_abstuple xs r;
13682
91674c8a008b conversion ML -> thy
nipkow
parents: 11606
diff changeset
    89
*}
5646
7c2ddbaf8b8c New many-sorted version.
nipkow
parents: 5565
diff changeset
    90
(* com_tr *)
13682
91674c8a008b conversion ML -> thy
nipkow
parents: 11606
diff changeset
    91
ML{*
35113
1a0c129bb2e0 modernized translations;
wenzelm
parents: 35054
diff changeset
    92
fun com_tr (Const(@{syntax_const "_assign"},_) $ Free (a,_) $ e) xs =
1a0c129bb2e0 modernized translations;
wenzelm
parents: 35054
diff changeset
    93
      Syntax.const @{const_syntax Basic} $ mk_fexp a e xs
1a0c129bb2e0 modernized translations;
wenzelm
parents: 35054
diff changeset
    94
  | com_tr (Const (@{const_syntax Basic},_) $ f) xs = Syntax.const @{const_syntax Basic} $ f
1a0c129bb2e0 modernized translations;
wenzelm
parents: 35054
diff changeset
    95
  | com_tr (Const (@{const_syntax Seq},_) $ c1 $ c2) xs =
1a0c129bb2e0 modernized translations;
wenzelm
parents: 35054
diff changeset
    96
      Syntax.const @{const_syntax Seq} $ com_tr c1 xs $ com_tr c2 xs
1a0c129bb2e0 modernized translations;
wenzelm
parents: 35054
diff changeset
    97
  | com_tr (Const (@{const_syntax Cond},_) $ b $ c1 $ c2) xs =
1a0c129bb2e0 modernized translations;
wenzelm
parents: 35054
diff changeset
    98
      Syntax.const @{const_syntax Cond} $ bexp_tr b xs $ com_tr c1 xs $ com_tr c2 xs
1a0c129bb2e0 modernized translations;
wenzelm
parents: 35054
diff changeset
    99
  | com_tr (Const (@{const_syntax While},_) $ b $ I $ c) xs =
1a0c129bb2e0 modernized translations;
wenzelm
parents: 35054
diff changeset
   100
      Syntax.const @{const_syntax While} $ bexp_tr b xs $ assn_tr I xs $ com_tr c xs
13764
3e180bf68496 removed some problems with print translations
nipkow
parents: 13737
diff changeset
   101
  | com_tr t _ = t (* if t is just a Free/Var *)
13682
91674c8a008b conversion ML -> thy
nipkow
parents: 11606
diff changeset
   102
*}
5646
7c2ddbaf8b8c New many-sorted version.
nipkow
parents: 5565
diff changeset
   103
17781
32bb237158a5 print_translation: does not handle _idtdummy;
wenzelm
parents: 16417
diff changeset
   104
(* triple_tr *)    (* FIXME does not handle "_idtdummy" *)
13682
91674c8a008b conversion ML -> thy
nipkow
parents: 11606
diff changeset
   105
ML{*
13764
3e180bf68496 removed some problems with print translations
nipkow
parents: 13737
diff changeset
   106
local
3e180bf68496 removed some problems with print translations
nipkow
parents: 13737
diff changeset
   107
3e180bf68496 removed some problems with print translations
nipkow
parents: 13737
diff changeset
   108
fun var_tr(Free(a,_)) = (a,Bound 0) (* Bound 0 = dummy term *)
35113
1a0c129bb2e0 modernized translations;
wenzelm
parents: 35054
diff changeset
   109
  | var_tr(Const (@{syntax_const "_constrain"}, _) $ (Free (a,_)) $ T) = (a,T);
5646
7c2ddbaf8b8c New many-sorted version.
nipkow
parents: 5565
diff changeset
   110
35113
1a0c129bb2e0 modernized translations;
wenzelm
parents: 35054
diff changeset
   111
fun vars_tr (Const (@{syntax_const "_idts"}, _) $ idt $ vars) = var_tr idt :: vars_tr vars
13764
3e180bf68496 removed some problems with print translations
nipkow
parents: 13737
diff changeset
   112
  | vars_tr t = [var_tr t]
3e180bf68496 removed some problems with print translations
nipkow
parents: 13737
diff changeset
   113
3e180bf68496 removed some problems with print translations
nipkow
parents: 13737
diff changeset
   114
in
5646
7c2ddbaf8b8c New many-sorted version.
nipkow
parents: 5565
diff changeset
   115
fun hoare_vars_tr [vars, pre, prg, post] =
7c2ddbaf8b8c New many-sorted version.
nipkow
parents: 5565
diff changeset
   116
      let val xs = vars_tr vars
35113
1a0c129bb2e0 modernized translations;
wenzelm
parents: 35054
diff changeset
   117
      in Syntax.const @{const_syntax Valid} $
13764
3e180bf68496 removed some problems with print translations
nipkow
parents: 13737
diff changeset
   118
         assn_tr pre xs $ com_tr prg xs $ assn_tr post xs
5646
7c2ddbaf8b8c New many-sorted version.
nipkow
parents: 5565
diff changeset
   119
      end
7c2ddbaf8b8c New many-sorted version.
nipkow
parents: 5565
diff changeset
   120
  | hoare_vars_tr ts = raise TERM ("hoare_vars_tr", ts);
13764
3e180bf68496 removed some problems with print translations
nipkow
parents: 13737
diff changeset
   121
end
13682
91674c8a008b conversion ML -> thy
nipkow
parents: 11606
diff changeset
   122
*}
5646
7c2ddbaf8b8c New many-sorted version.
nipkow
parents: 5565
diff changeset
   123
35113
1a0c129bb2e0 modernized translations;
wenzelm
parents: 35054
diff changeset
   124
parse_translation {* [(@{syntax_const "_hoare_vars"}, hoare_vars_tr)] *}
1335
5e1c0540f285 New directory.
nipkow
parents:
diff changeset
   125
5e1c0540f285 New directory.
nipkow
parents:
diff changeset
   126
5646
7c2ddbaf8b8c New many-sorted version.
nipkow
parents: 5565
diff changeset
   127
(*****************************************************************************)
7c2ddbaf8b8c New many-sorted version.
nipkow
parents: 5565
diff changeset
   128
7c2ddbaf8b8c New many-sorted version.
nipkow
parents: 5565
diff changeset
   129
(*** print translations ***)
13682
91674c8a008b conversion ML -> thy
nipkow
parents: 11606
diff changeset
   130
ML{*
37591
d3daea901123 merged constants "split" and "prod_case"
haftmann
parents: 36643
diff changeset
   131
fun dest_abstuple (Const (@{const_syntax prod_case},_) $ (Abs(v,_, body))) =
5646
7c2ddbaf8b8c New many-sorted version.
nipkow
parents: 5565
diff changeset
   132
                            subst_bound (Syntax.free v, dest_abstuple body)
7c2ddbaf8b8c New many-sorted version.
nipkow
parents: 5565
diff changeset
   133
  | dest_abstuple (Abs(v,_, body)) = subst_bound (Syntax.free v, body)
7c2ddbaf8b8c New many-sorted version.
nipkow
parents: 5565
diff changeset
   134
  | dest_abstuple trm = trm;
1335
5e1c0540f285 New directory.
nipkow
parents:
diff changeset
   135
37591
d3daea901123 merged constants "split" and "prod_case"
haftmann
parents: 36643
diff changeset
   136
fun abs2list (Const (@{const_syntax prod_case},_) $ (Abs(x,T,t))) = Free (x, T)::abs2list t
5646
7c2ddbaf8b8c New many-sorted version.
nipkow
parents: 5565
diff changeset
   137
  | abs2list (Abs(x,T,t)) = [Free (x, T)]
7c2ddbaf8b8c New many-sorted version.
nipkow
parents: 5565
diff changeset
   138
  | abs2list _ = [];
1335
5e1c0540f285 New directory.
nipkow
parents:
diff changeset
   139
37591
d3daea901123 merged constants "split" and "prod_case"
haftmann
parents: 36643
diff changeset
   140
fun mk_ts (Const (@{const_syntax prod_case},_) $ (Abs(x,_,t))) = mk_ts t
5646
7c2ddbaf8b8c New many-sorted version.
nipkow
parents: 5565
diff changeset
   141
  | mk_ts (Abs(x,_,t)) = mk_ts t
35113
1a0c129bb2e0 modernized translations;
wenzelm
parents: 35054
diff changeset
   142
  | mk_ts (Const (@{const_syntax Pair},_) $ a $ b) = a::(mk_ts b)
5646
7c2ddbaf8b8c New many-sorted version.
nipkow
parents: 5565
diff changeset
   143
  | mk_ts t = [t];
1335
5e1c0540f285 New directory.
nipkow
parents:
diff changeset
   144
37591
d3daea901123 merged constants "split" and "prod_case"
haftmann
parents: 36643
diff changeset
   145
fun mk_vts (Const (@{const_syntax prod_case},_) $ (Abs(x,_,t))) =
5646
7c2ddbaf8b8c New many-sorted version.
nipkow
parents: 5565
diff changeset
   146
           ((Syntax.free x)::(abs2list t), mk_ts t)
7c2ddbaf8b8c New many-sorted version.
nipkow
parents: 5565
diff changeset
   147
  | mk_vts (Abs(x,_,t)) = ([Syntax.free x], [t])
7c2ddbaf8b8c New many-sorted version.
nipkow
parents: 5565
diff changeset
   148
  | mk_vts t = raise Match;
35113
1a0c129bb2e0 modernized translations;
wenzelm
parents: 35054
diff changeset
   149
1a0c129bb2e0 modernized translations;
wenzelm
parents: 35054
diff changeset
   150
fun find_ch [] i xs = (false, (Syntax.free "not_ch", Syntax.free "not_ch"))
1a0c129bb2e0 modernized translations;
wenzelm
parents: 35054
diff changeset
   151
  | find_ch ((v,t)::vts) i xs =
1a0c129bb2e0 modernized translations;
wenzelm
parents: 35054
diff changeset
   152
      if t = Bound i then find_ch vts (i-1) xs
1a0c129bb2e0 modernized translations;
wenzelm
parents: 35054
diff changeset
   153
      else (true, (v, subst_bounds (xs, t)));
1a0c129bb2e0 modernized translations;
wenzelm
parents: 35054
diff changeset
   154
37591
d3daea901123 merged constants "split" and "prod_case"
haftmann
parents: 36643
diff changeset
   155
fun is_f (Const (@{const_syntax prod_case},_) $ (Abs(x,_,t))) = true
5646
7c2ddbaf8b8c New many-sorted version.
nipkow
parents: 5565
diff changeset
   156
  | is_f (Abs(x,_,t)) = true
7c2ddbaf8b8c New many-sorted version.
nipkow
parents: 5565
diff changeset
   157
  | is_f t = false;
13682
91674c8a008b conversion ML -> thy
nipkow
parents: 11606
diff changeset
   158
*}
91674c8a008b conversion ML -> thy
nipkow
parents: 11606
diff changeset
   159
5646
7c2ddbaf8b8c New many-sorted version.
nipkow
parents: 5565
diff changeset
   160
(* assn_tr' & bexp_tr'*)
35113
1a0c129bb2e0 modernized translations;
wenzelm
parents: 35054
diff changeset
   161
ML{*
1a0c129bb2e0 modernized translations;
wenzelm
parents: 35054
diff changeset
   162
fun assn_tr' (Const (@{const_syntax Collect},_) $ T) = dest_abstuple T
1a0c129bb2e0 modernized translations;
wenzelm
parents: 35054
diff changeset
   163
  | assn_tr' (Const (@{const_syntax inter}, _) $
1a0c129bb2e0 modernized translations;
wenzelm
parents: 35054
diff changeset
   164
        (Const (@{const_syntax Collect},_) $ T1) $ (Const (@{const_syntax Collect},_) $ T2)) =
1a0c129bb2e0 modernized translations;
wenzelm
parents: 35054
diff changeset
   165
      Syntax.const @{const_syntax inter} $ dest_abstuple T1 $ dest_abstuple T2
5646
7c2ddbaf8b8c New many-sorted version.
nipkow
parents: 5565
diff changeset
   166
  | assn_tr' t = t;
1335
5e1c0540f285 New directory.
nipkow
parents:
diff changeset
   167
35113
1a0c129bb2e0 modernized translations;
wenzelm
parents: 35054
diff changeset
   168
fun bexp_tr' (Const (@{const_syntax Collect},_) $ T) = dest_abstuple T
5646
7c2ddbaf8b8c New many-sorted version.
nipkow
parents: 5565
diff changeset
   169
  | bexp_tr' t = t;
13682
91674c8a008b conversion ML -> thy
nipkow
parents: 11606
diff changeset
   170
*}
5646
7c2ddbaf8b8c New many-sorted version.
nipkow
parents: 5565
diff changeset
   171
7c2ddbaf8b8c New many-sorted version.
nipkow
parents: 5565
diff changeset
   172
(*com_tr' *)
13682
91674c8a008b conversion ML -> thy
nipkow
parents: 11606
diff changeset
   173
ML{*
5646
7c2ddbaf8b8c New many-sorted version.
nipkow
parents: 5565
diff changeset
   174
fun mk_assign f =
7c2ddbaf8b8c New many-sorted version.
nipkow
parents: 5565
diff changeset
   175
  let val (vs, ts) = mk_vts f;
7c2ddbaf8b8c New many-sorted version.
nipkow
parents: 5565
diff changeset
   176
      val (ch, which) = find_ch (vs~~ts) ((length vs)-1) (rev vs)
35113
1a0c129bb2e0 modernized translations;
wenzelm
parents: 35054
diff changeset
   177
  in
1a0c129bb2e0 modernized translations;
wenzelm
parents: 35054
diff changeset
   178
    if ch then Syntax.const @{syntax_const "_assign"} $ fst which $ snd which
1a0c129bb2e0 modernized translations;
wenzelm
parents: 35054
diff changeset
   179
    else Syntax.const @{const_syntax annskip}
1a0c129bb2e0 modernized translations;
wenzelm
parents: 35054
diff changeset
   180
  end;
1335
5e1c0540f285 New directory.
nipkow
parents:
diff changeset
   181
35113
1a0c129bb2e0 modernized translations;
wenzelm
parents: 35054
diff changeset
   182
fun com_tr' (Const (@{const_syntax Basic},_) $ f) =
1a0c129bb2e0 modernized translations;
wenzelm
parents: 35054
diff changeset
   183
      if is_f f then mk_assign f
1a0c129bb2e0 modernized translations;
wenzelm
parents: 35054
diff changeset
   184
      else Syntax.const @{const_syntax Basic} $ f
1a0c129bb2e0 modernized translations;
wenzelm
parents: 35054
diff changeset
   185
  | com_tr' (Const (@{const_syntax Seq},_) $ c1 $ c2) =
1a0c129bb2e0 modernized translations;
wenzelm
parents: 35054
diff changeset
   186
      Syntax.const @{const_syntax Seq} $ com_tr' c1 $ com_tr' c2
1a0c129bb2e0 modernized translations;
wenzelm
parents: 35054
diff changeset
   187
  | com_tr' (Const (@{const_syntax Cond},_) $ b $ c1 $ c2) =
1a0c129bb2e0 modernized translations;
wenzelm
parents: 35054
diff changeset
   188
      Syntax.const @{const_syntax Cond} $ bexp_tr' b $ com_tr' c1 $ com_tr' c2
1a0c129bb2e0 modernized translations;
wenzelm
parents: 35054
diff changeset
   189
  | com_tr' (Const (@{const_syntax While},_) $ b $ I $ c) =
1a0c129bb2e0 modernized translations;
wenzelm
parents: 35054
diff changeset
   190
      Syntax.const @{const_syntax While} $ bexp_tr' b $ assn_tr' I $ com_tr' c
5646
7c2ddbaf8b8c New many-sorted version.
nipkow
parents: 5565
diff changeset
   191
  | com_tr' t = t;
1335
5e1c0540f285 New directory.
nipkow
parents:
diff changeset
   192
5646
7c2ddbaf8b8c New many-sorted version.
nipkow
parents: 5565
diff changeset
   193
fun spec_tr' [p, c, q] =
35113
1a0c129bb2e0 modernized translations;
wenzelm
parents: 35054
diff changeset
   194
  Syntax.const @{syntax_const "_hoare"} $ assn_tr' p $ com_tr' c $ assn_tr' q
13682
91674c8a008b conversion ML -> thy
nipkow
parents: 11606
diff changeset
   195
*}
91674c8a008b conversion ML -> thy
nipkow
parents: 11606
diff changeset
   196
35054
a5db9779b026 modernized some syntax translations;
wenzelm
parents: 32149
diff changeset
   197
print_translation {* [(@{const_syntax Valid}, spec_tr')] *}
13682
91674c8a008b conversion ML -> thy
nipkow
parents: 11606
diff changeset
   198
13857
11d7c5a8dbb7 *** empty log message ***
nipkow
parents: 13764
diff changeset
   199
lemma SkipRule: "p \<subseteq> q \<Longrightarrow> Valid p (Basic id) q"
11d7c5a8dbb7 *** empty log message ***
nipkow
parents: 13764
diff changeset
   200
by (auto simp:Valid_def)
11d7c5a8dbb7 *** empty log message ***
nipkow
parents: 13764
diff changeset
   201
11d7c5a8dbb7 *** empty log message ***
nipkow
parents: 13764
diff changeset
   202
lemma BasicRule: "p \<subseteq> {s. f s \<in> q} \<Longrightarrow> Valid p (Basic f) q"
11d7c5a8dbb7 *** empty log message ***
nipkow
parents: 13764
diff changeset
   203
by (auto simp:Valid_def)
11d7c5a8dbb7 *** empty log message ***
nipkow
parents: 13764
diff changeset
   204
11d7c5a8dbb7 *** empty log message ***
nipkow
parents: 13764
diff changeset
   205
lemma SeqRule: "Valid P c1 Q \<Longrightarrow> Valid Q c2 R \<Longrightarrow> Valid P (c1;c2) R"
11d7c5a8dbb7 *** empty log message ***
nipkow
parents: 13764
diff changeset
   206
by (auto simp:Valid_def)
11d7c5a8dbb7 *** empty log message ***
nipkow
parents: 13764
diff changeset
   207
11d7c5a8dbb7 *** empty log message ***
nipkow
parents: 13764
diff changeset
   208
lemma CondRule:
11d7c5a8dbb7 *** empty log message ***
nipkow
parents: 13764
diff changeset
   209
 "p \<subseteq> {s. (s \<in> b \<longrightarrow> s \<in> w) \<and> (s \<notin> b \<longrightarrow> s \<in> w')}
11d7c5a8dbb7 *** empty log message ***
nipkow
parents: 13764
diff changeset
   210
  \<Longrightarrow> Valid w c1 q \<Longrightarrow> Valid w' c2 q \<Longrightarrow> Valid p (Cond b c1 c2) q"
11d7c5a8dbb7 *** empty log message ***
nipkow
parents: 13764
diff changeset
   211
by (auto simp:Valid_def)
11d7c5a8dbb7 *** empty log message ***
nipkow
parents: 13764
diff changeset
   212
36643
f36588af1ba1 Turned Sem into an inductive definition.
berghofe
parents: 35416
diff changeset
   213
lemma While_aux:
f36588af1ba1 Turned Sem into an inductive definition.
berghofe
parents: 35416
diff changeset
   214
  assumes "Sem (WHILE b INV {i} DO c OD) s s'"
f36588af1ba1 Turned Sem into an inductive definition.
berghofe
parents: 35416
diff changeset
   215
  shows "\<forall>s s'. Sem c s s' \<longrightarrow> s \<in> I \<and> s \<in> b \<longrightarrow> s' \<in> I \<Longrightarrow>
f36588af1ba1 Turned Sem into an inductive definition.
berghofe
parents: 35416
diff changeset
   216
    s \<in> I \<Longrightarrow> s' \<in> I \<and> s' \<notin> b"
f36588af1ba1 Turned Sem into an inductive definition.
berghofe
parents: 35416
diff changeset
   217
  using assms
f36588af1ba1 Turned Sem into an inductive definition.
berghofe
parents: 35416
diff changeset
   218
  by (induct "WHILE b INV {i} DO c OD" s s') auto
13857
11d7c5a8dbb7 *** empty log message ***
nipkow
parents: 13764
diff changeset
   219
11d7c5a8dbb7 *** empty log message ***
nipkow
parents: 13764
diff changeset
   220
lemma WhileRule:
11d7c5a8dbb7 *** empty log message ***
nipkow
parents: 13764
diff changeset
   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"
11d7c5a8dbb7 *** empty log message ***
nipkow
parents: 13764
diff changeset
   222
apply (clarsimp simp:Valid_def)
36643
f36588af1ba1 Turned Sem into an inductive definition.
berghofe
parents: 35416
diff changeset
   223
apply(drule While_aux)
f36588af1ba1 Turned Sem into an inductive definition.
berghofe
parents: 35416
diff changeset
   224
  apply assumption
13857
11d7c5a8dbb7 *** empty log message ***
nipkow
parents: 13764
diff changeset
   225
 apply blast
11d7c5a8dbb7 *** empty log message ***
nipkow
parents: 13764
diff changeset
   226
apply blast
11d7c5a8dbb7 *** empty log message ***
nipkow
parents: 13764
diff changeset
   227
done
11d7c5a8dbb7 *** empty log message ***
nipkow
parents: 13764
diff changeset
   228
11d7c5a8dbb7 *** empty log message ***
nipkow
parents: 13764
diff changeset
   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
91674c8a008b conversion ML -> thy
nipkow
parents: 11606
diff changeset
   235
91674c8a008b conversion ML -> thy
nipkow
parents: 11606
diff changeset
   236
method_setup vcg = {*
30549
d2d7874648bd simplified method setup;
wenzelm
parents: 30510
diff changeset
   237
  Scan.succeed (fn ctxt => SIMPLE_METHOD' (hoare_tac ctxt (K all_tac))) *}
13682
91674c8a008b conversion ML -> thy
nipkow
parents: 11606
diff changeset
   238
  "verification condition generator"
91674c8a008b conversion ML -> thy
nipkow
parents: 11606
diff changeset
   239
91674c8a008b conversion ML -> thy
nipkow
parents: 11606
diff changeset
   240
method_setup vcg_simp = {*
30549
d2d7874648bd simplified method setup;
wenzelm
parents: 30510
diff changeset
   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
91674c8a008b conversion ML -> thy
nipkow
parents: 11606
diff changeset
   243
  "verification condition generator plus simplification"
91674c8a008b conversion ML -> thy
nipkow
parents: 11606
diff changeset
   244
91674c8a008b conversion ML -> thy
nipkow
parents: 11606
diff changeset
   245
end