src/HOL/Hoare/Hoare_Logic.thy
author wenzelm
Tue, 29 Mar 2011 21:11:02 +0200
changeset 42152 6c17259724b2
parent 42054 8cd4783904d8
child 42153 fa108629d132
permissions -rw-r--r--
Hoare syntax: standard abstraction syntax admits source positions; re-unified some clones (!);
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
41959
b460124855b8 tuned headers;
wenzelm
parents: 38353
diff changeset
     1
(*  Title:      HOL/Hoare/Hoare_Logic.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
42152
6c17259724b2 Hoare syntax: standard abstraction syntax admits source positions;
wenzelm
parents: 42054
diff changeset
    52
  "_assign" :: "idt => 'b => 'a com"  ("(2_ :=/ _)" [70, 65] 61)
35054
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)
13764
3e180bf68496 removed some problems with print translations
nipkow
parents: 13737
diff changeset
    60
42152
6c17259724b2 Hoare syntax: standard abstraction syntax admits source positions;
wenzelm
parents: 42054
diff changeset
    61
parse_translation {*
6c17259724b2 Hoare syntax: standard abstraction syntax admits source positions;
wenzelm
parents: 42054
diff changeset
    62
  let
6c17259724b2 Hoare syntax: standard abstraction syntax admits source positions;
wenzelm
parents: 42054
diff changeset
    63
    fun mk_abstuple [x] body = Syntax.abs_tr [x, body]
6c17259724b2 Hoare syntax: standard abstraction syntax admits source positions;
wenzelm
parents: 42054
diff changeset
    64
      | mk_abstuple (x :: xs) body =
6c17259724b2 Hoare syntax: standard abstraction syntax admits source positions;
wenzelm
parents: 42054
diff changeset
    65
          Syntax.const @{const_syntax prod_case} $ Syntax.abs_tr [x, mk_abstuple xs body];
13857
11d7c5a8dbb7 *** empty log message ***
nipkow
parents: 13764
diff changeset
    66
42152
6c17259724b2 Hoare syntax: standard abstraction syntax admits source positions;
wenzelm
parents: 42054
diff changeset
    67
    fun mk_fbody x e [y] = if Syntax.eq_idt (x, y) then e else y
6c17259724b2 Hoare syntax: standard abstraction syntax admits source positions;
wenzelm
parents: 42054
diff changeset
    68
      | mk_fbody x e (y :: xs) =
6c17259724b2 Hoare syntax: standard abstraction syntax admits source positions;
wenzelm
parents: 42054
diff changeset
    69
          Syntax.const @{const_syntax Pair} $
6c17259724b2 Hoare syntax: standard abstraction syntax admits source positions;
wenzelm
parents: 42054
diff changeset
    70
            (if Syntax.eq_idt (x, y) then e else y) $ mk_fbody x e xs;
6c17259724b2 Hoare syntax: standard abstraction syntax admits source positions;
wenzelm
parents: 42054
diff changeset
    71
6c17259724b2 Hoare syntax: standard abstraction syntax admits source positions;
wenzelm
parents: 42054
diff changeset
    72
    fun mk_fexp x e xs = mk_abstuple xs (mk_fbody x e xs);
1335
5e1c0540f285 New directory.
nipkow
parents:
diff changeset
    73
42152
6c17259724b2 Hoare syntax: standard abstraction syntax admits source positions;
wenzelm
parents: 42054
diff changeset
    74
    (* bexp_tr & assn_tr *)
6c17259724b2 Hoare syntax: standard abstraction syntax admits source positions;
wenzelm
parents: 42054
diff changeset
    75
    (*all meta-variables for bexp except for TRUE are translated as if they
6c17259724b2 Hoare syntax: standard abstraction syntax admits source positions;
wenzelm
parents: 42054
diff changeset
    76
      were boolean expressions*)
6c17259724b2 Hoare syntax: standard abstraction syntax admits source positions;
wenzelm
parents: 42054
diff changeset
    77
6c17259724b2 Hoare syntax: standard abstraction syntax admits source positions;
wenzelm
parents: 42054
diff changeset
    78
    fun bexp_tr (Const ("TRUE", _)) xs = Syntax.const "TRUE"   (* FIXME !? *)
6c17259724b2 Hoare syntax: standard abstraction syntax admits source positions;
wenzelm
parents: 42054
diff changeset
    79
      | bexp_tr b xs = Syntax.const @{const_syntax Collect} $ mk_abstuple xs b;
6c17259724b2 Hoare syntax: standard abstraction syntax admits source positions;
wenzelm
parents: 42054
diff changeset
    80
6c17259724b2 Hoare syntax: standard abstraction syntax admits source positions;
wenzelm
parents: 42054
diff changeset
    81
    fun assn_tr r xs = Syntax.const @{const_syntax Collect} $ mk_abstuple xs r;
1335
5e1c0540f285 New directory.
nipkow
parents:
diff changeset
    82
42152
6c17259724b2 Hoare syntax: standard abstraction syntax admits source positions;
wenzelm
parents: 42054
diff changeset
    83
    (* com_tr *)
1335
5e1c0540f285 New directory.
nipkow
parents:
diff changeset
    84
42152
6c17259724b2 Hoare syntax: standard abstraction syntax admits source positions;
wenzelm
parents: 42054
diff changeset
    85
    fun com_tr (Const (@{syntax_const "_assign"}, _) $ x $ e) xs =
6c17259724b2 Hoare syntax: standard abstraction syntax admits source positions;
wenzelm
parents: 42054
diff changeset
    86
          Syntax.const @{const_syntax Basic} $ mk_fexp x e xs
6c17259724b2 Hoare syntax: standard abstraction syntax admits source positions;
wenzelm
parents: 42054
diff changeset
    87
      | com_tr (Const (@{const_syntax Basic},_) $ f) xs = Syntax.const @{const_syntax Basic} $ f
6c17259724b2 Hoare syntax: standard abstraction syntax admits source positions;
wenzelm
parents: 42054
diff changeset
    88
      | com_tr (Const (@{const_syntax Seq},_) $ c1 $ c2) xs =
6c17259724b2 Hoare syntax: standard abstraction syntax admits source positions;
wenzelm
parents: 42054
diff changeset
    89
          Syntax.const @{const_syntax Seq} $ com_tr c1 xs $ com_tr c2 xs
6c17259724b2 Hoare syntax: standard abstraction syntax admits source positions;
wenzelm
parents: 42054
diff changeset
    90
      | com_tr (Const (@{const_syntax Cond},_) $ b $ c1 $ c2) xs =
6c17259724b2 Hoare syntax: standard abstraction syntax admits source positions;
wenzelm
parents: 42054
diff changeset
    91
          Syntax.const @{const_syntax Cond} $ bexp_tr b xs $ com_tr c1 xs $ com_tr c2 xs
6c17259724b2 Hoare syntax: standard abstraction syntax admits source positions;
wenzelm
parents: 42054
diff changeset
    92
      | com_tr (Const (@{const_syntax While},_) $ b $ I $ c) xs =
6c17259724b2 Hoare syntax: standard abstraction syntax admits source positions;
wenzelm
parents: 42054
diff changeset
    93
          Syntax.const @{const_syntax While} $ bexp_tr b xs $ assn_tr I xs $ com_tr c xs
6c17259724b2 Hoare syntax: standard abstraction syntax admits source positions;
wenzelm
parents: 42054
diff changeset
    94
      | com_tr t _ = t;
35113
1a0c129bb2e0 modernized translations;
wenzelm
parents: 35054
diff changeset
    95
42152
6c17259724b2 Hoare syntax: standard abstraction syntax admits source positions;
wenzelm
parents: 42054
diff changeset
    96
    fun vars_tr (Const (@{syntax_const "_idts"}, _) $ idt $ vars) = idt :: vars_tr vars
6c17259724b2 Hoare syntax: standard abstraction syntax admits source positions;
wenzelm
parents: 42054
diff changeset
    97
      | vars_tr t = [t];
6c17259724b2 Hoare syntax: standard abstraction syntax admits source positions;
wenzelm
parents: 42054
diff changeset
    98
6c17259724b2 Hoare syntax: standard abstraction syntax admits source positions;
wenzelm
parents: 42054
diff changeset
    99
    fun hoare_vars_tr [vars, pre, prg, post] =
6c17259724b2 Hoare syntax: standard abstraction syntax admits source positions;
wenzelm
parents: 42054
diff changeset
   100
          let val xs = vars_tr vars
6c17259724b2 Hoare syntax: standard abstraction syntax admits source positions;
wenzelm
parents: 42054
diff changeset
   101
          in Syntax.const @{const_syntax Valid} $
6c17259724b2 Hoare syntax: standard abstraction syntax admits source positions;
wenzelm
parents: 42054
diff changeset
   102
             assn_tr pre xs $ com_tr prg xs $ assn_tr post xs
6c17259724b2 Hoare syntax: standard abstraction syntax admits source positions;
wenzelm
parents: 42054
diff changeset
   103
          end
6c17259724b2 Hoare syntax: standard abstraction syntax admits source positions;
wenzelm
parents: 42054
diff changeset
   104
      | hoare_vars_tr ts = raise TERM ("hoare_vars_tr", ts);
6c17259724b2 Hoare syntax: standard abstraction syntax admits source positions;
wenzelm
parents: 42054
diff changeset
   105
6c17259724b2 Hoare syntax: standard abstraction syntax admits source positions;
wenzelm
parents: 42054
diff changeset
   106
  in [(@{syntax_const "_hoare_vars"}, hoare_vars_tr)] end
13682
91674c8a008b conversion ML -> thy
nipkow
parents: 11606
diff changeset
   107
*}
1335
5e1c0540f285 New directory.
nipkow
parents:
diff changeset
   108
5e1c0540f285 New directory.
nipkow
parents:
diff changeset
   109
5646
7c2ddbaf8b8c New many-sorted version.
nipkow
parents: 5565
diff changeset
   110
(*****************************************************************************)
7c2ddbaf8b8c New many-sorted version.
nipkow
parents: 5565
diff changeset
   111
7c2ddbaf8b8c New many-sorted version.
nipkow
parents: 5565
diff changeset
   112
(*** print translations ***)
13682
91674c8a008b conversion ML -> thy
nipkow
parents: 11606
diff changeset
   113
ML{*
37591
d3daea901123 merged constants "split" and "prod_case"
haftmann
parents: 36643
diff changeset
   114
fun dest_abstuple (Const (@{const_syntax prod_case},_) $ (Abs(v,_, body))) =
5646
7c2ddbaf8b8c New many-sorted version.
nipkow
parents: 5565
diff changeset
   115
                            subst_bound (Syntax.free v, dest_abstuple body)
7c2ddbaf8b8c New many-sorted version.
nipkow
parents: 5565
diff changeset
   116
  | dest_abstuple (Abs(v,_, body)) = subst_bound (Syntax.free v, body)
7c2ddbaf8b8c New many-sorted version.
nipkow
parents: 5565
diff changeset
   117
  | dest_abstuple trm = trm;
1335
5e1c0540f285 New directory.
nipkow
parents:
diff changeset
   118
37591
d3daea901123 merged constants "split" and "prod_case"
haftmann
parents: 36643
diff changeset
   119
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
   120
  | abs2list (Abs(x,T,t)) = [Free (x, T)]
7c2ddbaf8b8c New many-sorted version.
nipkow
parents: 5565
diff changeset
   121
  | abs2list _ = [];
1335
5e1c0540f285 New directory.
nipkow
parents:
diff changeset
   122
37591
d3daea901123 merged constants "split" and "prod_case"
haftmann
parents: 36643
diff changeset
   123
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
   124
  | mk_ts (Abs(x,_,t)) = mk_ts t
35113
1a0c129bb2e0 modernized translations;
wenzelm
parents: 35054
diff changeset
   125
  | mk_ts (Const (@{const_syntax Pair},_) $ a $ b) = a::(mk_ts b)
5646
7c2ddbaf8b8c New many-sorted version.
nipkow
parents: 5565
diff changeset
   126
  | mk_ts t = [t];
1335
5e1c0540f285 New directory.
nipkow
parents:
diff changeset
   127
37591
d3daea901123 merged constants "split" and "prod_case"
haftmann
parents: 36643
diff changeset
   128
fun mk_vts (Const (@{const_syntax prod_case},_) $ (Abs(x,_,t))) =
5646
7c2ddbaf8b8c New many-sorted version.
nipkow
parents: 5565
diff changeset
   129
           ((Syntax.free x)::(abs2list t), mk_ts t)
7c2ddbaf8b8c New many-sorted version.
nipkow
parents: 5565
diff changeset
   130
  | mk_vts (Abs(x,_,t)) = ([Syntax.free x], [t])
7c2ddbaf8b8c New many-sorted version.
nipkow
parents: 5565
diff changeset
   131
  | mk_vts t = raise Match;
35113
1a0c129bb2e0 modernized translations;
wenzelm
parents: 35054
diff changeset
   132
1a0c129bb2e0 modernized translations;
wenzelm
parents: 35054
diff changeset
   133
fun find_ch [] i xs = (false, (Syntax.free "not_ch", Syntax.free "not_ch"))
1a0c129bb2e0 modernized translations;
wenzelm
parents: 35054
diff changeset
   134
  | find_ch ((v,t)::vts) i xs =
1a0c129bb2e0 modernized translations;
wenzelm
parents: 35054
diff changeset
   135
      if t = Bound i then find_ch vts (i-1) xs
1a0c129bb2e0 modernized translations;
wenzelm
parents: 35054
diff changeset
   136
      else (true, (v, subst_bounds (xs, t)));
1a0c129bb2e0 modernized translations;
wenzelm
parents: 35054
diff changeset
   137
37591
d3daea901123 merged constants "split" and "prod_case"
haftmann
parents: 36643
diff changeset
   138
fun is_f (Const (@{const_syntax prod_case},_) $ (Abs(x,_,t))) = true
5646
7c2ddbaf8b8c New many-sorted version.
nipkow
parents: 5565
diff changeset
   139
  | is_f (Abs(x,_,t)) = true
7c2ddbaf8b8c New many-sorted version.
nipkow
parents: 5565
diff changeset
   140
  | is_f t = false;
13682
91674c8a008b conversion ML -> thy
nipkow
parents: 11606
diff changeset
   141
*}
91674c8a008b conversion ML -> thy
nipkow
parents: 11606
diff changeset
   142
5646
7c2ddbaf8b8c New many-sorted version.
nipkow
parents: 5565
diff changeset
   143
(* assn_tr' & bexp_tr'*)
35113
1a0c129bb2e0 modernized translations;
wenzelm
parents: 35054
diff changeset
   144
ML{*
1a0c129bb2e0 modernized translations;
wenzelm
parents: 35054
diff changeset
   145
fun assn_tr' (Const (@{const_syntax Collect},_) $ T) = dest_abstuple T
1a0c129bb2e0 modernized translations;
wenzelm
parents: 35054
diff changeset
   146
  | assn_tr' (Const (@{const_syntax inter}, _) $
1a0c129bb2e0 modernized translations;
wenzelm
parents: 35054
diff changeset
   147
        (Const (@{const_syntax Collect},_) $ T1) $ (Const (@{const_syntax Collect},_) $ T2)) =
1a0c129bb2e0 modernized translations;
wenzelm
parents: 35054
diff changeset
   148
      Syntax.const @{const_syntax inter} $ dest_abstuple T1 $ dest_abstuple T2
5646
7c2ddbaf8b8c New many-sorted version.
nipkow
parents: 5565
diff changeset
   149
  | assn_tr' t = t;
1335
5e1c0540f285 New directory.
nipkow
parents:
diff changeset
   150
35113
1a0c129bb2e0 modernized translations;
wenzelm
parents: 35054
diff changeset
   151
fun bexp_tr' (Const (@{const_syntax Collect},_) $ T) = dest_abstuple T
5646
7c2ddbaf8b8c New many-sorted version.
nipkow
parents: 5565
diff changeset
   152
  | bexp_tr' t = t;
13682
91674c8a008b conversion ML -> thy
nipkow
parents: 11606
diff changeset
   153
*}
5646
7c2ddbaf8b8c New many-sorted version.
nipkow
parents: 5565
diff changeset
   154
7c2ddbaf8b8c New many-sorted version.
nipkow
parents: 5565
diff changeset
   155
(*com_tr' *)
13682
91674c8a008b conversion ML -> thy
nipkow
parents: 11606
diff changeset
   156
ML{*
5646
7c2ddbaf8b8c New many-sorted version.
nipkow
parents: 5565
diff changeset
   157
fun mk_assign f =
7c2ddbaf8b8c New many-sorted version.
nipkow
parents: 5565
diff changeset
   158
  let val (vs, ts) = mk_vts f;
7c2ddbaf8b8c New many-sorted version.
nipkow
parents: 5565
diff changeset
   159
      val (ch, which) = find_ch (vs~~ts) ((length vs)-1) (rev vs)
35113
1a0c129bb2e0 modernized translations;
wenzelm
parents: 35054
diff changeset
   160
  in
1a0c129bb2e0 modernized translations;
wenzelm
parents: 35054
diff changeset
   161
    if ch then Syntax.const @{syntax_const "_assign"} $ fst which $ snd which
1a0c129bb2e0 modernized translations;
wenzelm
parents: 35054
diff changeset
   162
    else Syntax.const @{const_syntax annskip}
1a0c129bb2e0 modernized translations;
wenzelm
parents: 35054
diff changeset
   163
  end;
1335
5e1c0540f285 New directory.
nipkow
parents:
diff changeset
   164
35113
1a0c129bb2e0 modernized translations;
wenzelm
parents: 35054
diff changeset
   165
fun com_tr' (Const (@{const_syntax Basic},_) $ f) =
1a0c129bb2e0 modernized translations;
wenzelm
parents: 35054
diff changeset
   166
      if is_f f then mk_assign f
1a0c129bb2e0 modernized translations;
wenzelm
parents: 35054
diff changeset
   167
      else Syntax.const @{const_syntax Basic} $ f
1a0c129bb2e0 modernized translations;
wenzelm
parents: 35054
diff changeset
   168
  | com_tr' (Const (@{const_syntax Seq},_) $ c1 $ c2) =
1a0c129bb2e0 modernized translations;
wenzelm
parents: 35054
diff changeset
   169
      Syntax.const @{const_syntax Seq} $ com_tr' c1 $ com_tr' c2
1a0c129bb2e0 modernized translations;
wenzelm
parents: 35054
diff changeset
   170
  | com_tr' (Const (@{const_syntax Cond},_) $ b $ c1 $ c2) =
1a0c129bb2e0 modernized translations;
wenzelm
parents: 35054
diff changeset
   171
      Syntax.const @{const_syntax Cond} $ bexp_tr' b $ com_tr' c1 $ com_tr' c2
1a0c129bb2e0 modernized translations;
wenzelm
parents: 35054
diff changeset
   172
  | com_tr' (Const (@{const_syntax While},_) $ b $ I $ c) =
1a0c129bb2e0 modernized translations;
wenzelm
parents: 35054
diff changeset
   173
      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
   174
  | com_tr' t = t;
1335
5e1c0540f285 New directory.
nipkow
parents:
diff changeset
   175
5646
7c2ddbaf8b8c New many-sorted version.
nipkow
parents: 5565
diff changeset
   176
fun spec_tr' [p, c, q] =
35113
1a0c129bb2e0 modernized translations;
wenzelm
parents: 35054
diff changeset
   177
  Syntax.const @{syntax_const "_hoare"} $ assn_tr' p $ com_tr' c $ assn_tr' q
13682
91674c8a008b conversion ML -> thy
nipkow
parents: 11606
diff changeset
   178
*}
91674c8a008b conversion ML -> thy
nipkow
parents: 11606
diff changeset
   179
35054
a5db9779b026 modernized some syntax translations;
wenzelm
parents: 32149
diff changeset
   180
print_translation {* [(@{const_syntax Valid}, spec_tr')] *}
13682
91674c8a008b conversion ML -> thy
nipkow
parents: 11606
diff changeset
   181
13857
11d7c5a8dbb7 *** empty log message ***
nipkow
parents: 13764
diff changeset
   182
lemma SkipRule: "p \<subseteq> q \<Longrightarrow> Valid p (Basic id) q"
11d7c5a8dbb7 *** empty log message ***
nipkow
parents: 13764
diff changeset
   183
by (auto simp:Valid_def)
11d7c5a8dbb7 *** empty log message ***
nipkow
parents: 13764
diff changeset
   184
11d7c5a8dbb7 *** empty log message ***
nipkow
parents: 13764
diff changeset
   185
lemma BasicRule: "p \<subseteq> {s. f s \<in> q} \<Longrightarrow> Valid p (Basic f) q"
11d7c5a8dbb7 *** empty log message ***
nipkow
parents: 13764
diff changeset
   186
by (auto simp:Valid_def)
11d7c5a8dbb7 *** empty log message ***
nipkow
parents: 13764
diff changeset
   187
11d7c5a8dbb7 *** empty log message ***
nipkow
parents: 13764
diff changeset
   188
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
   189
by (auto simp:Valid_def)
11d7c5a8dbb7 *** empty log message ***
nipkow
parents: 13764
diff changeset
   190
11d7c5a8dbb7 *** empty log message ***
nipkow
parents: 13764
diff changeset
   191
lemma CondRule:
11d7c5a8dbb7 *** empty log message ***
nipkow
parents: 13764
diff changeset
   192
 "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
   193
  \<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
   194
by (auto simp:Valid_def)
11d7c5a8dbb7 *** empty log message ***
nipkow
parents: 13764
diff changeset
   195
36643
f36588af1ba1 Turned Sem into an inductive definition.
berghofe
parents: 35416
diff changeset
   196
lemma While_aux:
f36588af1ba1 Turned Sem into an inductive definition.
berghofe
parents: 35416
diff changeset
   197
  assumes "Sem (WHILE b INV {i} DO c OD) s s'"
f36588af1ba1 Turned Sem into an inductive definition.
berghofe
parents: 35416
diff changeset
   198
  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
   199
    s \<in> I \<Longrightarrow> s' \<in> I \<and> s' \<notin> b"
f36588af1ba1 Turned Sem into an inductive definition.
berghofe
parents: 35416
diff changeset
   200
  using assms
f36588af1ba1 Turned Sem into an inductive definition.
berghofe
parents: 35416
diff changeset
   201
  by (induct "WHILE b INV {i} DO c OD" s s') auto
13857
11d7c5a8dbb7 *** empty log message ***
nipkow
parents: 13764
diff changeset
   202
11d7c5a8dbb7 *** empty log message ***
nipkow
parents: 13764
diff changeset
   203
lemma WhileRule:
11d7c5a8dbb7 *** empty log message ***
nipkow
parents: 13764
diff changeset
   204
 "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
   205
apply (clarsimp simp:Valid_def)
36643
f36588af1ba1 Turned Sem into an inductive definition.
berghofe
parents: 35416
diff changeset
   206
apply(drule While_aux)
f36588af1ba1 Turned Sem into an inductive definition.
berghofe
parents: 35416
diff changeset
   207
  apply assumption
13857
11d7c5a8dbb7 *** empty log message ***
nipkow
parents: 13764
diff changeset
   208
 apply blast
11d7c5a8dbb7 *** empty log message ***
nipkow
parents: 13764
diff changeset
   209
apply blast
11d7c5a8dbb7 *** empty log message ***
nipkow
parents: 13764
diff changeset
   210
done
11d7c5a8dbb7 *** empty log message ***
nipkow
parents: 13764
diff changeset
   211
11d7c5a8dbb7 *** empty log message ***
nipkow
parents: 13764
diff changeset
   212
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
   213
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
   214
  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
   215
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
   216
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
   217
use "hoare_tac.ML"
13682
91674c8a008b conversion ML -> thy
nipkow
parents: 11606
diff changeset
   218
91674c8a008b conversion ML -> thy
nipkow
parents: 11606
diff changeset
   219
method_setup vcg = {*
30549
d2d7874648bd simplified method setup;
wenzelm
parents: 30510
diff changeset
   220
  Scan.succeed (fn ctxt => SIMPLE_METHOD' (hoare_tac ctxt (K all_tac))) *}
13682
91674c8a008b conversion ML -> thy
nipkow
parents: 11606
diff changeset
   221
  "verification condition generator"
91674c8a008b conversion ML -> thy
nipkow
parents: 11606
diff changeset
   222
91674c8a008b conversion ML -> thy
nipkow
parents: 11606
diff changeset
   223
method_setup vcg_simp = {*
30549
d2d7874648bd simplified method setup;
wenzelm
parents: 30510
diff changeset
   224
  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
   225
    SIMPLE_METHOD' (hoare_tac ctxt (asm_full_simp_tac (simpset_of ctxt)))) *}
13682
91674c8a008b conversion ML -> thy
nipkow
parents: 11606
diff changeset
   226
  "verification condition generator plus simplification"
91674c8a008b conversion ML -> thy
nipkow
parents: 11606
diff changeset
   227
91674c8a008b conversion ML -> thy
nipkow
parents: 11606
diff changeset
   228
end