src/HOL/Hoare/Hoare_Logic.thy
author wenzelm
Wed, 23 Dec 2020 22:25:22 +0100
changeset 72990 db8f94656024
parent 72987 b1be35908165
child 74503 403ce50e6a2a
permissions -rw-r--r--
tuned document, notably authors and sections;
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
72806
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
     4
    Author:     Walter Guttmann (extension to total-correctness proofs)
1335
5e1c0540f285 New directory.
nipkow
parents:
diff changeset
     5
*)
5e1c0540f285 New directory.
nipkow
parents:
diff changeset
     6
72990
db8f94656024 tuned document, notably authors and sections;
wenzelm
parents: 72987
diff changeset
     7
section \<open>Hoare logic\<close>
db8f94656024 tuned document, notably authors and sections;
wenzelm
parents: 72987
diff changeset
     8
db8f94656024 tuned document, notably authors and sections;
wenzelm
parents: 72987
diff changeset
     9
theory Hoare_Logic
db8f94656024 tuned document, notably authors and sections;
wenzelm
parents: 72987
diff changeset
    10
  imports Hoare_Syntax Hoare_Tac
db8f94656024 tuned document, notably authors and sections;
wenzelm
parents: 72987
diff changeset
    11
begin
db8f94656024 tuned document, notably authors and sections;
wenzelm
parents: 72987
diff changeset
    12
db8f94656024 tuned document, notably authors and sections;
wenzelm
parents: 72987
diff changeset
    13
subsection \<open>Sugared semantic embedding of Hoare logic\<close>
72987
b1be35908165 clarified modules: avoid multiple uses of the same ML file;
wenzelm
parents: 72985
diff changeset
    14
b1be35908165 clarified modules: avoid multiple uses of the same ML file;
wenzelm
parents: 72985
diff changeset
    15
text \<open>
b1be35908165 clarified modules: avoid multiple uses of the same ML file;
wenzelm
parents: 72985
diff changeset
    16
  Strictly speaking a shallow embedding (as implemented by Norbert Galm
b1be35908165 clarified modules: avoid multiple uses of the same ML file;
wenzelm
parents: 72985
diff changeset
    17
  following Mike Gordon) would suffice. Maybe the datatype com comes in useful
b1be35908165 clarified modules: avoid multiple uses of the same ML file;
wenzelm
parents: 72985
diff changeset
    18
  later.
b1be35908165 clarified modules: avoid multiple uses of the same ML file;
wenzelm
parents: 72985
diff changeset
    19
\<close>
b1be35908165 clarified modules: avoid multiple uses of the same ML file;
wenzelm
parents: 72985
diff changeset
    20
42174
d0be2722ce9f modernized specifications;
wenzelm
parents: 42153
diff changeset
    21
type_synonym 'a bexp = "'a set"
d0be2722ce9f modernized specifications;
wenzelm
parents: 42153
diff changeset
    22
type_synonym 'a assn = "'a set"
72806
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
    23
type_synonym 'a var = "'a \<Rightarrow> nat"
5646
7c2ddbaf8b8c New many-sorted version.
nipkow
parents: 5565
diff changeset
    24
58310
91ea607a34d8 updated news
blanchet
parents: 58305
diff changeset
    25
datatype 'a com =
58305
57752a91eec4 renamed 'datatype' to 'old_datatype'; 'datatype' is now alias for 'datatype_new'
blanchet
parents: 55660
diff changeset
    26
  Basic "'a \<Rightarrow> 'a"
72987
b1be35908165 clarified modules: avoid multiple uses of the same ML file;
wenzelm
parents: 72985
diff changeset
    27
| Seq "'a com" "'a com"
b1be35908165 clarified modules: avoid multiple uses of the same ML file;
wenzelm
parents: 72985
diff changeset
    28
| Cond "'a bexp" "'a com" "'a com"
b1be35908165 clarified modules: avoid multiple uses of the same ML file;
wenzelm
parents: 72985
diff changeset
    29
| While "'a bexp" "'a assn" "'a var" "'a com"
35113
1a0c129bb2e0 modernized translations;
wenzelm
parents: 35054
diff changeset
    30
35054
a5db9779b026 modernized some syntax translations;
wenzelm
parents: 32149
diff changeset
    31
abbreviation annskip ("SKIP") where "SKIP == Basic id"
5646
7c2ddbaf8b8c New many-sorted version.
nipkow
parents: 5565
diff changeset
    32
42174
d0be2722ce9f modernized specifications;
wenzelm
parents: 42153
diff changeset
    33
type_synonym 'a sem = "'a => 'a => bool"
5646
7c2ddbaf8b8c New many-sorted version.
nipkow
parents: 5565
diff changeset
    34
36643
f36588af1ba1 Turned Sem into an inductive definition.
berghofe
parents: 35416
diff changeset
    35
inductive Sem :: "'a com \<Rightarrow> 'a sem"
f36588af1ba1 Turned Sem into an inductive definition.
berghofe
parents: 35416
diff changeset
    36
where
f36588af1ba1 Turned Sem into an inductive definition.
berghofe
parents: 35416
diff changeset
    37
  "Sem (Basic f) s (f s)"
72987
b1be35908165 clarified modules: avoid multiple uses of the same ML file;
wenzelm
parents: 72985
diff changeset
    38
| "Sem c1 s s'' \<Longrightarrow> Sem c2 s'' s' \<Longrightarrow> Sem (Seq c1 c2) s s'"
b1be35908165 clarified modules: avoid multiple uses of the same ML file;
wenzelm
parents: 72985
diff changeset
    39
| "s \<in> b \<Longrightarrow> Sem c1 s s' \<Longrightarrow> Sem (Cond b c1 c2) s s'"
b1be35908165 clarified modules: avoid multiple uses of the same ML file;
wenzelm
parents: 72985
diff changeset
    40
| "s \<notin> b \<Longrightarrow> Sem c2 s s' \<Longrightarrow> Sem (Cond b c1 c2) s s'"
72806
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
    41
| "s \<notin> b \<Longrightarrow> Sem (While b x y c) s s"
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
    42
| "s \<in> b \<Longrightarrow> Sem c s s'' \<Longrightarrow> Sem (While b x y c) s'' s' \<Longrightarrow>
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
    43
   Sem (While b x y c) s s'"
5646
7c2ddbaf8b8c New many-sorted version.
nipkow
parents: 5565
diff changeset
    44
72987
b1be35908165 clarified modules: avoid multiple uses of the same ML file;
wenzelm
parents: 72985
diff changeset
    45
definition Valid :: "'a bexp \<Rightarrow> 'a com \<Rightarrow> 'a bexp \<Rightarrow> bool"
b1be35908165 clarified modules: avoid multiple uses of the same ML file;
wenzelm
parents: 72985
diff changeset
    46
  where "Valid p c q \<equiv> \<forall>s s'. Sem c s s' \<longrightarrow> s \<in> p \<longrightarrow> s' \<in> q"
b1be35908165 clarified modules: avoid multiple uses of the same ML file;
wenzelm
parents: 72985
diff changeset
    47
b1be35908165 clarified modules: avoid multiple uses of the same ML file;
wenzelm
parents: 72985
diff changeset
    48
definition ValidTC :: "'a bexp \<Rightarrow> 'a com \<Rightarrow> 'a bexp \<Rightarrow> bool"
b1be35908165 clarified modules: avoid multiple uses of the same ML file;
wenzelm
parents: 72985
diff changeset
    49
  where "ValidTC p c q \<equiv> \<forall>s. s \<in> p \<longrightarrow> (\<exists>t. Sem c s t \<and> t \<in> q)"
b1be35908165 clarified modules: avoid multiple uses of the same ML file;
wenzelm
parents: 72985
diff changeset
    50
36643
f36588af1ba1 Turned Sem into an inductive definition.
berghofe
parents: 35416
diff changeset
    51
inductive_cases [elim!]:
72987
b1be35908165 clarified modules: avoid multiple uses of the same ML file;
wenzelm
parents: 72985
diff changeset
    52
  "Sem (Basic f) s s'" "Sem (Seq c1 c2) s s'"
b1be35908165 clarified modules: avoid multiple uses of the same ML file;
wenzelm
parents: 72985
diff changeset
    53
  "Sem (Cond b c1 c2) s s'"
5646
7c2ddbaf8b8c New many-sorted version.
nipkow
parents: 5565
diff changeset
    54
72806
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
    55
lemma Sem_deterministic:
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
    56
  assumes "Sem c s s1"
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
    57
      and "Sem c s s2"
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
    58
    shows "s1 = s2"
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
    59
proof -
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
    60
  have "Sem c s s1 \<Longrightarrow> (\<forall>s2. Sem c s s2 \<longrightarrow> s1 = s2)"
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
    61
    by (induct rule: Sem.induct) (subst Sem.simps, blast)+
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
    62
  thus ?thesis
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
    63
    using assms by simp
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
    64
qed
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
    65
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
    66
lemma tc_implies_pc:
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
    67
  "ValidTC p c q \<Longrightarrow> Valid p c q"
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
    68
  by (metis Sem_deterministic Valid_def ValidTC_def)
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
    69
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
    70
lemma tc_extract_function:
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
    71
  "ValidTC p c q \<Longrightarrow> \<exists>f . \<forall>s . s \<in> p \<longrightarrow> f s \<in> q"
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
    72
  by (metis ValidTC_def)
5007
0ebd6c91088a nonterminals prog;
wenzelm
parents: 3842
diff changeset
    73
13682
91674c8a008b conversion ML -> thy
nipkow
parents: 11606
diff changeset
    74
13857
11d7c5a8dbb7 *** empty log message ***
nipkow
parents: 13764
diff changeset
    75
lemma SkipRule: "p \<subseteq> q \<Longrightarrow> Valid p (Basic id) q"
11d7c5a8dbb7 *** empty log message ***
nipkow
parents: 13764
diff changeset
    76
by (auto simp:Valid_def)
11d7c5a8dbb7 *** empty log message ***
nipkow
parents: 13764
diff changeset
    77
11d7c5a8dbb7 *** empty log message ***
nipkow
parents: 13764
diff changeset
    78
lemma BasicRule: "p \<subseteq> {s. f s \<in> q} \<Longrightarrow> Valid p (Basic f) q"
11d7c5a8dbb7 *** empty log message ***
nipkow
parents: 13764
diff changeset
    79
by (auto simp:Valid_def)
11d7c5a8dbb7 *** empty log message ***
nipkow
parents: 13764
diff changeset
    80
72987
b1be35908165 clarified modules: avoid multiple uses of the same ML file;
wenzelm
parents: 72985
diff changeset
    81
lemma SeqRule: "Valid P c1 Q \<Longrightarrow> Valid Q c2 R \<Longrightarrow> Valid P (Seq c1 c2) R"
13857
11d7c5a8dbb7 *** empty log message ***
nipkow
parents: 13764
diff changeset
    82
by (auto simp:Valid_def)
11d7c5a8dbb7 *** empty log message ***
nipkow
parents: 13764
diff changeset
    83
11d7c5a8dbb7 *** empty log message ***
nipkow
parents: 13764
diff changeset
    84
lemma CondRule:
11d7c5a8dbb7 *** empty log message ***
nipkow
parents: 13764
diff changeset
    85
 "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
    86
  \<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
    87
by (auto simp:Valid_def)
11d7c5a8dbb7 *** empty log message ***
nipkow
parents: 13764
diff changeset
    88
36643
f36588af1ba1 Turned Sem into an inductive definition.
berghofe
parents: 35416
diff changeset
    89
lemma While_aux:
72987
b1be35908165 clarified modules: avoid multiple uses of the same ML file;
wenzelm
parents: 72985
diff changeset
    90
  assumes "Sem (While b i v c) s s'"
36643
f36588af1ba1 Turned Sem into an inductive definition.
berghofe
parents: 35416
diff changeset
    91
  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
    92
    s \<in> I \<Longrightarrow> s' \<in> I \<and> s' \<notin> b"
f36588af1ba1 Turned Sem into an inductive definition.
berghofe
parents: 35416
diff changeset
    93
  using assms
72987
b1be35908165 clarified modules: avoid multiple uses of the same ML file;
wenzelm
parents: 72985
diff changeset
    94
  by (induct "While b i v c" s s') auto
13857
11d7c5a8dbb7 *** empty log message ***
nipkow
parents: 13764
diff changeset
    95
11d7c5a8dbb7 *** empty log message ***
nipkow
parents: 13764
diff changeset
    96
lemma WhileRule:
72806
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
    97
 "p \<subseteq> i \<Longrightarrow> Valid (i \<inter> b) c i \<Longrightarrow> i \<inter> (-b) \<subseteq> q \<Longrightarrow> Valid p (While b i v c) q"
13857
11d7c5a8dbb7 *** empty log message ***
nipkow
parents: 13764
diff changeset
    98
apply (clarsimp simp:Valid_def)
36643
f36588af1ba1 Turned Sem into an inductive definition.
berghofe
parents: 35416
diff changeset
    99
apply(drule While_aux)
f36588af1ba1 Turned Sem into an inductive definition.
berghofe
parents: 35416
diff changeset
   100
  apply assumption
13857
11d7c5a8dbb7 *** empty log message ***
nipkow
parents: 13764
diff changeset
   101
 apply blast
11d7c5a8dbb7 *** empty log message ***
nipkow
parents: 13764
diff changeset
   102
apply blast
11d7c5a8dbb7 *** empty log message ***
nipkow
parents: 13764
diff changeset
   103
done
11d7c5a8dbb7 *** empty log message ***
nipkow
parents: 13764
diff changeset
   104
72806
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
   105
lemma SkipRuleTC:
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
   106
  assumes "p \<subseteq> q"
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
   107
    shows "ValidTC p (Basic id) q"
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
   108
  by (metis assms Sem.intros(1) ValidTC_def id_apply subsetD)
13857
11d7c5a8dbb7 *** empty log message ***
nipkow
parents: 13764
diff changeset
   109
72806
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
   110
lemma BasicRuleTC:
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
   111
  assumes "p \<subseteq> {s. f s \<in> q}"
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
   112
    shows "ValidTC p (Basic f) q"
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
   113
  by (metis assms Ball_Collect Sem.intros(1) ValidTC_def)
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
   114
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
   115
lemma SeqRuleTC:
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
   116
  assumes "ValidTC p c1 q"
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
   117
      and "ValidTC q c2 r"
72987
b1be35908165 clarified modules: avoid multiple uses of the same ML file;
wenzelm
parents: 72985
diff changeset
   118
    shows "ValidTC p (Seq c1 c2) r"
72806
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
   119
  by (meson assms Sem.intros(2) ValidTC_def)
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
   120
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
   121
lemma CondRuleTC:
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
   122
 assumes "p \<subseteq> {s. (s \<in> b \<longrightarrow> s \<in> w) \<and> (s \<notin> b \<longrightarrow> s \<in> w')}"
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
   123
     and "ValidTC w c1 q"
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
   124
     and "ValidTC w' c2 q"
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
   125
   shows "ValidTC p (Cond b c1 c2) q"
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
   126
proof (unfold ValidTC_def, rule allI)
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
   127
  fix s
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
   128
  show "s \<in> p \<longrightarrow> (\<exists>t . Sem (Cond b c1 c2) s t \<and> t \<in> q)"
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
   129
    apply (cases "s \<in> b")
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
   130
    apply (metis (mono_tags, lifting) assms(1,2) Ball_Collect Sem.intros(3) ValidTC_def)
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
   131
    by (metis (mono_tags, lifting) assms(1,3) Ball_Collect Sem.intros(4) ValidTC_def)
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
   132
qed
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
   133
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
   134
lemma WhileRuleTC:
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
   135
  assumes "p \<subseteq> i"
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
   136
      and "\<And>n::nat . ValidTC (i \<inter> b \<inter> {s . v s = n}) c (i \<inter> {s . v s < n})"
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
   137
      and "i \<inter> uminus b \<subseteq> q"
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
   138
    shows "ValidTC p (While b i v c) q"
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
   139
proof -
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
   140
  {
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
   141
    fix s n
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
   142
    have "s \<in> i \<and> v s = n \<longrightarrow> (\<exists>t . Sem (While b i v c) s t \<and> t \<in> q)"
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
   143
    proof (induction "n" arbitrary: s rule: less_induct)
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
   144
      fix n :: nat
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
   145
      fix s :: 'a
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
   146
      assume 1: "\<And>(m::nat) s::'a . m < n \<Longrightarrow> s \<in> i \<and> v s = m \<longrightarrow> (\<exists>t . Sem (While b i v c) s t \<and> t \<in> q)"
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
   147
      show "s \<in> i \<and> v s = n \<longrightarrow> (\<exists>t . Sem (While b i v c) s t \<and> t \<in> q)"
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
   148
      proof (rule impI, cases "s \<in> b")
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
   149
        assume 2: "s \<in> b" and "s \<in> i \<and> v s = n"
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
   150
        hence "s \<in> i \<inter> b \<inter> {s . v s = n}"
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
   151
          using assms(1) by auto
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
   152
        hence "\<exists>t . Sem c s t \<and> t \<in> i \<inter> {s . v s < n}"
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
   153
          by (metis assms(2) ValidTC_def)
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
   154
        from this obtain t where 3: "Sem c s t \<and> t \<in> i \<inter> {s . v s < n}"
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
   155
          by auto
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
   156
        hence "\<exists>u . Sem (While b i v c) t u \<and> u \<in> q"
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
   157
          using 1 by auto
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
   158
        thus "\<exists>t . Sem (While b i v c) s t \<and> t \<in> q"
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
   159
          using 2 3 Sem.intros(6) by force
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
   160
      next
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
   161
        assume "s \<notin> b" and "s \<in> i \<and> v s = n"
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
   162
        thus "\<exists>t . Sem (While b i v c) s t \<and> t \<in> q"
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
   163
          using Sem.intros(5) assms(3) by fastforce
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
   164
      qed
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
   165
    qed
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
   166
  }
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
   167
  thus ?thesis
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
   168
    using assms(1) ValidTC_def by force
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
   169
qed
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
   170
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
   171
72990
db8f94656024 tuned document, notably authors and sections;
wenzelm
parents: 72987
diff changeset
   172
subsubsection \<open>Concrete syntax\<close>
72987
b1be35908165 clarified modules: avoid multiple uses of the same ML file;
wenzelm
parents: 72985
diff changeset
   173
b1be35908165 clarified modules: avoid multiple uses of the same ML file;
wenzelm
parents: 72985
diff changeset
   174
setup \<open>
b1be35908165 clarified modules: avoid multiple uses of the same ML file;
wenzelm
parents: 72985
diff changeset
   175
  Hoare_Syntax.setup
b1be35908165 clarified modules: avoid multiple uses of the same ML file;
wenzelm
parents: 72985
diff changeset
   176
   {Basic = \<^const_syntax>\<open>Basic\<close>,
b1be35908165 clarified modules: avoid multiple uses of the same ML file;
wenzelm
parents: 72985
diff changeset
   177
    Skip = \<^const_syntax>\<open>annskip\<close>,
b1be35908165 clarified modules: avoid multiple uses of the same ML file;
wenzelm
parents: 72985
diff changeset
   178
    Seq = \<^const_syntax>\<open>Seq\<close>,
b1be35908165 clarified modules: avoid multiple uses of the same ML file;
wenzelm
parents: 72985
diff changeset
   179
    Cond = \<^const_syntax>\<open>Cond\<close>,
b1be35908165 clarified modules: avoid multiple uses of the same ML file;
wenzelm
parents: 72985
diff changeset
   180
    While = \<^const_syntax>\<open>While\<close>,
b1be35908165 clarified modules: avoid multiple uses of the same ML file;
wenzelm
parents: 72985
diff changeset
   181
    Valid = \<^const_syntax>\<open>Valid\<close>,
b1be35908165 clarified modules: avoid multiple uses of the same ML file;
wenzelm
parents: 72985
diff changeset
   182
    ValidTC = \<^const_syntax>\<open>ValidTC\<close>}
b1be35908165 clarified modules: avoid multiple uses of the same ML file;
wenzelm
parents: 72985
diff changeset
   183
\<close>
b1be35908165 clarified modules: avoid multiple uses of the same ML file;
wenzelm
parents: 72985
diff changeset
   184
b1be35908165 clarified modules: avoid multiple uses of the same ML file;
wenzelm
parents: 72985
diff changeset
   185
72990
db8f94656024 tuned document, notably authors and sections;
wenzelm
parents: 72987
diff changeset
   186
subsubsection \<open>Proof methods: VCG\<close>
72987
b1be35908165 clarified modules: avoid multiple uses of the same ML file;
wenzelm
parents: 72985
diff changeset
   187
72985
9cc431444435 clarified modules: avoid multiple uses of the same ML file;
wenzelm
parents: 72984
diff changeset
   188
declare BasicRule [Hoare_Tac.BasicRule]
9cc431444435 clarified modules: avoid multiple uses of the same ML file;
wenzelm
parents: 72984
diff changeset
   189
  and SkipRule [Hoare_Tac.SkipRule]
9cc431444435 clarified modules: avoid multiple uses of the same ML file;
wenzelm
parents: 72984
diff changeset
   190
  and SeqRule [Hoare_Tac.SeqRule]
9cc431444435 clarified modules: avoid multiple uses of the same ML file;
wenzelm
parents: 72984
diff changeset
   191
  and CondRule [Hoare_Tac.CondRule]
9cc431444435 clarified modules: avoid multiple uses of the same ML file;
wenzelm
parents: 72984
diff changeset
   192
  and WhileRule [Hoare_Tac.WhileRule]
9cc431444435 clarified modules: avoid multiple uses of the same ML file;
wenzelm
parents: 72984
diff changeset
   193
9cc431444435 clarified modules: avoid multiple uses of the same ML file;
wenzelm
parents: 72984
diff changeset
   194
declare BasicRuleTC [Hoare_Tac.BasicRuleTC]
9cc431444435 clarified modules: avoid multiple uses of the same ML file;
wenzelm
parents: 72984
diff changeset
   195
  and SkipRuleTC [Hoare_Tac.SkipRuleTC]
9cc431444435 clarified modules: avoid multiple uses of the same ML file;
wenzelm
parents: 72984
diff changeset
   196
  and SeqRuleTC [Hoare_Tac.SeqRuleTC]
9cc431444435 clarified modules: avoid multiple uses of the same ML file;
wenzelm
parents: 72984
diff changeset
   197
  and CondRuleTC [Hoare_Tac.CondRuleTC]
9cc431444435 clarified modules: avoid multiple uses of the same ML file;
wenzelm
parents: 72984
diff changeset
   198
  and WhileRuleTC [Hoare_Tac.WhileRuleTC]
13682
91674c8a008b conversion ML -> thy
nipkow
parents: 11606
diff changeset
   199
62042
6c6ccf573479 isabelle update_cartouches -c -t;
wenzelm
parents: 58310
diff changeset
   200
method_setup vcg = \<open>
72985
9cc431444435 clarified modules: avoid multiple uses of the same ML file;
wenzelm
parents: 72984
diff changeset
   201
  Scan.succeed (fn ctxt => SIMPLE_METHOD' (Hoare_Tac.hoare_tac ctxt (K all_tac)))\<close>
13682
91674c8a008b conversion ML -> thy
nipkow
parents: 11606
diff changeset
   202
  "verification condition generator"
91674c8a008b conversion ML -> thy
nipkow
parents: 11606
diff changeset
   203
62042
6c6ccf573479 isabelle update_cartouches -c -t;
wenzelm
parents: 58310
diff changeset
   204
method_setup vcg_simp = \<open>
30549
d2d7874648bd simplified method setup;
wenzelm
parents: 30510
diff changeset
   205
  Scan.succeed (fn ctxt =>
72985
9cc431444435 clarified modules: avoid multiple uses of the same ML file;
wenzelm
parents: 72984
diff changeset
   206
    SIMPLE_METHOD' (Hoare_Tac.hoare_tac ctxt (asm_full_simp_tac ctxt)))\<close>
13682
91674c8a008b conversion ML -> thy
nipkow
parents: 11606
diff changeset
   207
  "verification condition generator plus simplification"
91674c8a008b conversion ML -> thy
nipkow
parents: 11606
diff changeset
   208
72806
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
   209
method_setup vcg_tc = \<open>
72985
9cc431444435 clarified modules: avoid multiple uses of the same ML file;
wenzelm
parents: 72984
diff changeset
   210
  Scan.succeed (fn ctxt => SIMPLE_METHOD' (Hoare_Tac.hoare_tc_tac ctxt (K all_tac)))\<close>
72806
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
   211
  "verification condition generator"
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
   212
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
   213
method_setup vcg_tc_simp = \<open>
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
   214
  Scan.succeed (fn ctxt =>
72985
9cc431444435 clarified modules: avoid multiple uses of the same ML file;
wenzelm
parents: 72984
diff changeset
   215
    SIMPLE_METHOD' (Hoare_Tac.hoare_tc_tac ctxt (asm_full_simp_tac ctxt)))\<close>
72806
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
   216
  "verification condition generator plus simplification"
4fa08e083865 Extension of session HOL/Hoare with total correctness proof system by Walter Guttmann
nipkow
parents: 69605
diff changeset
   217
13682
91674c8a008b conversion ML -> thy
nipkow
parents: 11606
diff changeset
   218
end