src/HOL/UNITY/WFair.thy
author aspinall
Fri, 07 May 2004 13:34:13 +0200
changeset 14712 81362115cedd
parent 14150 9a23e4eb5eb3
child 15045 d59f7e2e18d3
permissions -rw-r--r--
Add -X option to trigger PGIP interaction mode.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
     1
(*  Title:      HOL/UNITY/WFair
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
     2
    ID:         $Id$
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
     3
    Author:     Lawrence C Paulson, Cambridge University Computer Laboratory
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
     4
    Copyright   1998  University of Cambridge
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
     5
13812
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13805
diff changeset
     6
Conditional Fairness versions of transient, ensures, leadsTo.
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
     7
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
     8
From Misra, "A Logic for Concurrent Programming", 1994
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
     9
*)
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    10
13812
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13805
diff changeset
    11
header{*Progress*}
13798
4c1a53627500 conversion to new-style theories and tidying
paulson
parents: 13797
diff changeset
    12
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
    13
theory WFair = UNITY:
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    14
13812
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13805
diff changeset
    15
text{*The original version of this theory was based on weak fairness.  (Thus,
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13805
diff changeset
    16
the entire UNITY development embodied this assumption, until February 2003.)
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13805
diff changeset
    17
Weak fairness states that if a command is enabled continuously, then it is
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13805
diff changeset
    18
eventually executed.  Ernie Cohen suggested that I instead adopt unconditional
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13805
diff changeset
    19
fairness: every command is executed infinitely often.  
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13805
diff changeset
    20
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13805
diff changeset
    21
In fact, Misra's paper on "Progress" seems to be ambiguous about the correct
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13805
diff changeset
    22
interpretation, and says that the two forms of fairness are equivalent.  They
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13805
diff changeset
    23
differ only on their treatment of partial transitions, which under
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13805
diff changeset
    24
unconditional fairness behave magically.  That is because if there are partial
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13805
diff changeset
    25
transitions then there may be no fair executions, making all leads-to
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13805
diff changeset
    26
properties hold vacuously.
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13805
diff changeset
    27
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13805
diff changeset
    28
Unconditional fairness has some great advantages.  By distinguishing partial
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13805
diff changeset
    29
transitions from total ones that are the identity on part of their domain, it
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13805
diff changeset
    30
is more expressive.  Also, by simplifying the definition of the transient
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13805
diff changeset
    31
property, it simplifies many proofs.  A drawback is that some laws only hold
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13805
diff changeset
    32
under the assumption that all transitions are total.  The best-known of these
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13805
diff changeset
    33
is the impossibility law for leads-to.
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13805
diff changeset
    34
*}
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13805
diff changeset
    35
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    36
constdefs
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    37
13812
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13805
diff changeset
    38
  --{*This definition specifies conditional fairness.  The rest of the theory
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13805
diff changeset
    39
      is generic to all forms of fairness.  To get weak fairness, conjoin
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13805
diff changeset
    40
      the inclusion below with @{term "A \<subseteq> Domain act"}, which specifies 
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13805
diff changeset
    41
      that the action is enabled over all of @{term A}.*}
5648
fe887910e32e specifications as sets of programs
paulson
parents: 5340
diff changeset
    42
  transient :: "'a set => 'a program set"
13812
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13805
diff changeset
    43
    "transient A == {F. \<exists>act\<in>Acts F. act``A \<subseteq> -A}"
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    44
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
    45
  ensures :: "['a set, 'a set] => 'a program set"       (infixl "ensures" 60)
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
    46
    "A ensures B == (A-B co A \<union> B) \<inter> transient (A-B)"
8006
paulson
parents: 7346
diff changeset
    47
6536
281d44905cab made many specification operators infix
paulson
parents: 5931
diff changeset
    48
281d44905cab made many specification operators infix
paulson
parents: 5931
diff changeset
    49
consts
281d44905cab made many specification operators infix
paulson
parents: 5931
diff changeset
    50
6801
9e0037839d63 renamed the underlying relation of leadsTo from "leadsto"
paulson
parents: 6536
diff changeset
    51
  leads :: "'a program => ('a set * 'a set) set"
13812
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13805
diff changeset
    52
    --{*LEADS-TO constant for the inductive definition*}
5648
fe887910e32e specifications as sets of programs
paulson
parents: 5340
diff changeset
    53
6801
9e0037839d63 renamed the underlying relation of leadsTo from "leadsto"
paulson
parents: 6536
diff changeset
    54
9e0037839d63 renamed the underlying relation of leadsTo from "leadsto"
paulson
parents: 6536
diff changeset
    55
inductive "leads F"
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
    56
  intros 
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    57
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
    58
    Basis:  "F \<in> A ensures B ==> (A,B) \<in> leads F"
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    59
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
    60
    Trans:  "[| (A,B) \<in> leads F;  (B,C) \<in> leads F |] ==> (A,C) \<in> leads F"
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    61
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
    62
    Union:  "\<forall>A \<in> S. (A,B) \<in> leads F ==> (Union S, B) \<in> leads F"
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    63
5155
21177b8a4d7f added comments
paulson
parents: 4776
diff changeset
    64
8006
paulson
parents: 7346
diff changeset
    65
constdefs
6536
281d44905cab made many specification operators infix
paulson
parents: 5931
diff changeset
    66
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
    67
  leadsTo :: "['a set, 'a set] => 'a program set"    (infixl "leadsTo" 60)
13812
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13805
diff changeset
    68
     --{*visible version of the LEADS-TO relation*}
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
    69
    "A leadsTo B == {F. (A,B) \<in> leads F}"
5648
fe887910e32e specifications as sets of programs
paulson
parents: 5340
diff changeset
    70
  
fe887910e32e specifications as sets of programs
paulson
parents: 5340
diff changeset
    71
  wlt :: "['a program, 'a set] => 'a set"
13812
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13805
diff changeset
    72
     --{*predicate transformer: the largest set that leads to @{term B}*}
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
    73
    "wlt F B == Union {A. F \<in> A leadsTo B}"
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    74
9685
6d123a7e30bd xsymbols for leads-to and Join
paulson
parents: 8006
diff changeset
    75
syntax (xsymbols)
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
    76
  "op leadsTo" :: "['a set, 'a set] => 'a program set" (infixl "\<longmapsto>" 60)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
    77
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
    78
13798
4c1a53627500 conversion to new-style theories and tidying
paulson
parents: 13797
diff changeset
    79
subsection{*transient*}
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
    80
13812
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13805
diff changeset
    81
lemma stable_transient: 
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13805
diff changeset
    82
    "[| F \<in> stable A; F \<in> transient A |] ==> \<exists>act\<in>Acts F. A \<subseteq> - (Domain act)"
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13805
diff changeset
    83
apply (simp add: stable_def constrains_def transient_def, clarify)
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13805
diff changeset
    84
apply (rule rev_bexI, auto)  
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13805
diff changeset
    85
done
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13805
diff changeset
    86
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
    87
lemma stable_transient_empty: 
13812
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13805
diff changeset
    88
    "[| F \<in> stable A; F \<in> transient A; all_total F |] ==> A = {}"
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13805
diff changeset
    89
apply (drule stable_transient, assumption)
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13805
diff changeset
    90
apply (simp add: all_total_def)
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13805
diff changeset
    91
done
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
    92
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
    93
lemma transient_strengthen: 
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
    94
    "[| F \<in> transient A; B \<subseteq> A |] ==> F \<in> transient B"
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
    95
apply (unfold transient_def, clarify)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
    96
apply (blast intro!: rev_bexI)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
    97
done
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
    98
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
    99
lemma transientI: 
13812
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13805
diff changeset
   100
    "[| act: Acts F;  act``A \<subseteq> -A |] ==> F \<in> transient A"
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   101
by (unfold transient_def, blast)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   102
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   103
lemma transientE: 
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   104
    "[| F \<in> transient A;   
13812
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13805
diff changeset
   105
        !!act. [| act: Acts F;  act``A \<subseteq> -A |] ==> P |]  
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   106
     ==> P"
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   107
by (unfold transient_def, blast)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   108
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   109
lemma transient_empty [simp]: "transient {} = UNIV"
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   110
by (unfold transient_def, auto)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   111
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   112
13812
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13805
diff changeset
   113
text{*This equation recovers the notion of weak fairness.  A totalized
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13805
diff changeset
   114
      program satisfies a transient assertion just if the original program
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13805
diff changeset
   115
      contains a suitable action that is also enabled.*}
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13805
diff changeset
   116
lemma totalize_transient_iff:
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13805
diff changeset
   117
   "(totalize F \<in> transient A) = (\<exists>act\<in>Acts F. A \<subseteq> Domain act & act``A \<subseteq> -A)"
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13805
diff changeset
   118
apply (simp add: totalize_def totalize_act_def transient_def 
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13805
diff changeset
   119
                 Un_Image Un_subset_iff, safe)
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13805
diff changeset
   120
apply (blast intro!: rev_bexI)+
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13805
diff changeset
   121
done
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13805
diff changeset
   122
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13805
diff changeset
   123
lemma totalize_transientI: 
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13805
diff changeset
   124
    "[| act: Acts F;  A \<subseteq> Domain act;  act``A \<subseteq> -A |] 
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13805
diff changeset
   125
     ==> totalize F \<in> transient A"
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13805
diff changeset
   126
by (simp add: totalize_transient_iff, blast)
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13805
diff changeset
   127
13798
4c1a53627500 conversion to new-style theories and tidying
paulson
parents: 13797
diff changeset
   128
subsection{*ensures*}
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   129
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   130
lemma ensuresI: 
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   131
    "[| F \<in> (A-B) co (A \<union> B); F \<in> transient (A-B) |] ==> F \<in> A ensures B"
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   132
by (unfold ensures_def, blast)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   133
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   134
lemma ensuresD: 
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   135
    "F \<in> A ensures B ==> F \<in> (A-B) co (A \<union> B) & F \<in> transient (A-B)"
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   136
by (unfold ensures_def, blast)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   137
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   138
lemma ensures_weaken_R: 
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   139
    "[| F \<in> A ensures A'; A'<=B' |] ==> F \<in> A ensures B'"
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   140
apply (unfold ensures_def)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   141
apply (blast intro: constrains_weaken transient_strengthen)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   142
done
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   143
13812
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13805
diff changeset
   144
text{*The L-version (precondition strengthening) fails, but we have this*}
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   145
lemma stable_ensures_Int: 
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   146
    "[| F \<in> stable C;  F \<in> A ensures B |]    
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   147
    ==> F \<in> (C \<inter> A) ensures (C \<inter> B)"
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   148
apply (unfold ensures_def)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   149
apply (auto simp add: ensures_def Int_Un_distrib [symmetric] Diff_Int_distrib [symmetric])
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   150
prefer 2 apply (blast intro: transient_strengthen)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   151
apply (blast intro: stable_constrains_Int constrains_weaken)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   152
done
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   153
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   154
lemma stable_transient_ensures:
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   155
     "[| F \<in> stable A;  F \<in> transient C;  A \<subseteq> B \<union> C |] ==> F \<in> A ensures B"
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   156
apply (simp add: ensures_def stable_def)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   157
apply (blast intro: constrains_weaken transient_strengthen)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   158
done
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   159
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   160
lemma ensures_eq: "(A ensures B) = (A unless B) \<inter> transient (A-B)"
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   161
by (simp (no_asm) add: ensures_def unless_def)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   162
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   163
13798
4c1a53627500 conversion to new-style theories and tidying
paulson
parents: 13797
diff changeset
   164
subsection{*leadsTo*}
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   165
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   166
lemma leadsTo_Basis [intro]: "F \<in> A ensures B ==> F \<in> A leadsTo B"
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   167
apply (unfold leadsTo_def)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   168
apply (blast intro: leads.Basis)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   169
done
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   170
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   171
lemma leadsTo_Trans: 
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   172
     "[| F \<in> A leadsTo B;  F \<in> B leadsTo C |] ==> F \<in> A leadsTo C"
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   173
apply (unfold leadsTo_def)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   174
apply (blast intro: leads.Trans)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   175
done
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   176
14112
95d51043d2a3 tidying
paulson
parents: 13812
diff changeset
   177
lemma leadsTo_Basis':
95d51043d2a3 tidying
paulson
parents: 13812
diff changeset
   178
     "[| F \<in> A co A \<union> B; F \<in> transient A |] ==> F \<in> A leadsTo B"
95d51043d2a3 tidying
paulson
parents: 13812
diff changeset
   179
apply (drule_tac B = "A-B" in constrains_weaken_L)
95d51043d2a3 tidying
paulson
parents: 13812
diff changeset
   180
apply (drule_tac [2] B = "A-B" in transient_strengthen)
95d51043d2a3 tidying
paulson
parents: 13812
diff changeset
   181
apply (rule_tac [3] ensuresI [THEN leadsTo_Basis])
95d51043d2a3 tidying
paulson
parents: 13812
diff changeset
   182
apply (blast+)
95d51043d2a3 tidying
paulson
parents: 13812
diff changeset
   183
done
95d51043d2a3 tidying
paulson
parents: 13812
diff changeset
   184
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   185
lemma transient_imp_leadsTo: "F \<in> transient A ==> F \<in> A leadsTo (-A)"
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   186
by (simp (no_asm_simp) add: leadsTo_Basis ensuresI Compl_partition)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   187
13812
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13805
diff changeset
   188
text{*Useful with cancellation, disjunction*}
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   189
lemma leadsTo_Un_duplicate: "F \<in> A leadsTo (A' \<union> A') ==> F \<in> A leadsTo A'"
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   190
by (simp add: Un_ac)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   191
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   192
lemma leadsTo_Un_duplicate2:
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   193
     "F \<in> A leadsTo (A' \<union> C \<union> C) ==> F \<in> A leadsTo (A' \<union> C)"
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   194
by (simp add: Un_ac)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   195
13812
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13805
diff changeset
   196
text{*The Union introduction rule as we should have liked to state it*}
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   197
lemma leadsTo_Union: 
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   198
    "(!!A. A \<in> S ==> F \<in> A leadsTo B) ==> F \<in> (Union S) leadsTo B"
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   199
apply (unfold leadsTo_def)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   200
apply (blast intro: leads.Union)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   201
done
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   202
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   203
lemma leadsTo_Union_Int: 
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   204
 "(!!A. A \<in> S ==> F \<in> (A \<inter> C) leadsTo B) ==> F \<in> (Union S \<inter> C) leadsTo B"
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   205
apply (unfold leadsTo_def)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   206
apply (simp only: Int_Union_Union)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   207
apply (blast intro: leads.Union)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   208
done
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   209
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   210
lemma leadsTo_UN: 
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   211
    "(!!i. i \<in> I ==> F \<in> (A i) leadsTo B) ==> F \<in> (\<Union>i \<in> I. A i) leadsTo B"
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   212
apply (subst Union_image_eq [symmetric])
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   213
apply (blast intro: leadsTo_Union)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   214
done
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   215
13812
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13805
diff changeset
   216
text{*Binary union introduction rule*}
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   217
lemma leadsTo_Un:
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   218
     "[| F \<in> A leadsTo C; F \<in> B leadsTo C |] ==> F \<in> (A \<union> B) leadsTo C"
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   219
apply (subst Un_eq_Union)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   220
apply (blast intro: leadsTo_Union)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   221
done
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   222
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   223
lemma single_leadsTo_I: 
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   224
     "(!!x. x \<in> A ==> F \<in> {x} leadsTo B) ==> F \<in> A leadsTo B"
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   225
by (subst UN_singleton [symmetric], rule leadsTo_UN, blast)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   226
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   227
13812
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13805
diff changeset
   228
text{*The INDUCTION rule as we should have liked to state it*}
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   229
lemma leadsTo_induct: 
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   230
  "[| F \<in> za leadsTo zb;   
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   231
      !!A B. F \<in> A ensures B ==> P A B;  
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   232
      !!A B C. [| F \<in> A leadsTo B; P A B; F \<in> B leadsTo C; P B C |]  
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   233
               ==> P A C;  
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   234
      !!B S. \<forall>A \<in> S. F \<in> A leadsTo B & P A B ==> P (Union S) B  
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   235
   |] ==> P za zb"
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   236
apply (unfold leadsTo_def)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   237
apply (drule CollectD, erule leads.induct)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   238
apply (blast+)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   239
done
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   240
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   241
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   242
lemma subset_imp_ensures: "A \<subseteq> B ==> F \<in> A ensures B"
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   243
by (unfold ensures_def constrains_def transient_def, blast)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   244
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   245
lemmas subset_imp_leadsTo = subset_imp_ensures [THEN leadsTo_Basis, standard]
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   246
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   247
lemmas leadsTo_refl = subset_refl [THEN subset_imp_leadsTo, standard]
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   248
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   249
lemmas empty_leadsTo = empty_subsetI [THEN subset_imp_leadsTo, standard, simp]
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   250
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   251
lemmas leadsTo_UNIV = subset_UNIV [THEN subset_imp_leadsTo, standard, simp]
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   252
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   253
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   254
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   255
(** Variant induction rule: on the preconditions for B **)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   256
13812
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13805
diff changeset
   257
text{*Lemma is the weak version: can't see how to do it in one step*}
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   258
lemma leadsTo_induct_pre_lemma: 
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   259
  "[| F \<in> za leadsTo zb;   
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   260
      P zb;  
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   261
      !!A B. [| F \<in> A ensures B;  P B |] ==> P A;  
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   262
      !!S. \<forall>A \<in> S. P A ==> P (Union S)  
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   263
   |] ==> P za"
13812
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13805
diff changeset
   264
txt{*by induction on this formula*}
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   265
apply (subgoal_tac "P zb --> P za")
13812
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13805
diff changeset
   266
txt{*now solve first subgoal: this formula is sufficient*}
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   267
apply (blast intro: leadsTo_refl)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   268
apply (erule leadsTo_induct)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   269
apply (blast+)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   270
done
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   271
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   272
lemma leadsTo_induct_pre: 
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   273
  "[| F \<in> za leadsTo zb;   
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   274
      P zb;  
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   275
      !!A B. [| F \<in> A ensures B;  F \<in> B leadsTo zb;  P B |] ==> P A;  
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   276
      !!S. \<forall>A \<in> S. F \<in> A leadsTo zb & P A ==> P (Union S)  
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   277
   |] ==> P za"
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   278
apply (subgoal_tac "F \<in> za leadsTo zb & P za")
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   279
apply (erule conjunct2)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   280
apply (erule leadsTo_induct_pre_lemma)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   281
prefer 3 apply (blast intro: leadsTo_Union)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   282
prefer 2 apply (blast intro: leadsTo_Trans)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   283
apply (blast intro: leadsTo_refl)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   284
done
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   285
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   286
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   287
lemma leadsTo_weaken_R: "[| F \<in> A leadsTo A'; A'<=B' |] ==> F \<in> A leadsTo B'"
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   288
by (blast intro: subset_imp_leadsTo leadsTo_Trans)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   289
13798
4c1a53627500 conversion to new-style theories and tidying
paulson
parents: 13797
diff changeset
   290
lemma leadsTo_weaken_L [rule_format]:
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   291
     "[| F \<in> A leadsTo A'; B \<subseteq> A |] ==> F \<in> B leadsTo A'"
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   292
by (blast intro: leadsTo_Trans subset_imp_leadsTo)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   293
13812
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13805
diff changeset
   294
text{*Distributes over binary unions*}
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   295
lemma leadsTo_Un_distrib:
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   296
     "F \<in> (A \<union> B) leadsTo C  =  (F \<in> A leadsTo C & F \<in> B leadsTo C)"
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   297
by (blast intro: leadsTo_Un leadsTo_weaken_L)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   298
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   299
lemma leadsTo_UN_distrib:
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   300
     "F \<in> (\<Union>i \<in> I. A i) leadsTo B  =  (\<forall>i \<in> I. F \<in> (A i) leadsTo B)"
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   301
by (blast intro: leadsTo_UN leadsTo_weaken_L)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   302
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   303
lemma leadsTo_Union_distrib:
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   304
     "F \<in> (Union S) leadsTo B  =  (\<forall>A \<in> S. F \<in> A leadsTo B)"
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   305
by (blast intro: leadsTo_Union leadsTo_weaken_L)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   306
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   307
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   308
lemma leadsTo_weaken:
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   309
     "[| F \<in> A leadsTo A'; B \<subseteq> A; A'<=B' |] ==> F \<in> B leadsTo B'"
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   310
by (blast intro: leadsTo_weaken_R leadsTo_weaken_L leadsTo_Trans)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   311
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   312
14150
9a23e4eb5eb3 A document for UNITY
paulson
parents: 14112
diff changeset
   313
text{*Set difference: maybe combine with @{text leadsTo_weaken_L}??*}
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   314
lemma leadsTo_Diff:
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   315
     "[| F \<in> (A-B) leadsTo C; F \<in> B leadsTo C |]   ==> F \<in> A leadsTo C"
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   316
by (blast intro: leadsTo_Un leadsTo_weaken)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   317
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   318
lemma leadsTo_UN_UN:
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   319
   "(!! i. i \<in> I ==> F \<in> (A i) leadsTo (A' i))  
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   320
    ==> F \<in> (\<Union>i \<in> I. A i) leadsTo (\<Union>i \<in> I. A' i)"
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   321
apply (simp only: Union_image_eq [symmetric])
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   322
apply (blast intro: leadsTo_Union leadsTo_weaken_R)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   323
done
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   324
13812
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13805
diff changeset
   325
text{*Binary union version*}
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   326
lemma leadsTo_Un_Un:
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   327
     "[| F \<in> A leadsTo A'; F \<in> B leadsTo B' |]  
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   328
      ==> F \<in> (A \<union> B) leadsTo (A' \<union> B')"
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   329
by (blast intro: leadsTo_Un leadsTo_weaken_R)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   330
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   331
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   332
(** The cancellation law **)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   333
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   334
lemma leadsTo_cancel2:
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   335
     "[| F \<in> A leadsTo (A' \<union> B); F \<in> B leadsTo B' |]  
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   336
      ==> F \<in> A leadsTo (A' \<union> B')"
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   337
by (blast intro: leadsTo_Un_Un subset_imp_leadsTo leadsTo_Trans)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   338
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   339
lemma leadsTo_cancel_Diff2:
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   340
     "[| F \<in> A leadsTo (A' \<union> B); F \<in> (B-A') leadsTo B' |]  
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   341
      ==> F \<in> A leadsTo (A' \<union> B')"
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   342
apply (rule leadsTo_cancel2)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   343
prefer 2 apply assumption
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   344
apply (simp_all (no_asm_simp))
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   345
done
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   346
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   347
lemma leadsTo_cancel1:
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   348
     "[| F \<in> A leadsTo (B \<union> A'); F \<in> B leadsTo B' |]  
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   349
    ==> F \<in> A leadsTo (B' \<union> A')"
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   350
apply (simp add: Un_commute)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   351
apply (blast intro!: leadsTo_cancel2)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   352
done
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   353
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   354
lemma leadsTo_cancel_Diff1:
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   355
     "[| F \<in> A leadsTo (B \<union> A'); F \<in> (B-A') leadsTo B' |]  
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   356
    ==> F \<in> A leadsTo (B' \<union> A')"
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   357
apply (rule leadsTo_cancel1)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   358
prefer 2 apply assumption
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   359
apply (simp_all (no_asm_simp))
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   360
done
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   361
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   362
13812
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13805
diff changeset
   363
text{*The impossibility law*}
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13805
diff changeset
   364
lemma leadsTo_empty: "[|F \<in> A leadsTo {}; all_total F|] ==> A={}"
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   365
apply (erule leadsTo_induct_pre)
13812
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13805
diff changeset
   366
apply (simp_all add: ensures_def constrains_def transient_def all_total_def, clarify)
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13805
diff changeset
   367
apply (drule bspec, assumption)+
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13805
diff changeset
   368
apply blast
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   369
done
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   370
13812
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13805
diff changeset
   371
subsection{*PSP: Progress-Safety-Progress*}
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   372
13812
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13805
diff changeset
   373
text{*Special case of PSP: Misra's "stable conjunction"*}
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   374
lemma psp_stable: 
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   375
   "[| F \<in> A leadsTo A'; F \<in> stable B |]  
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   376
    ==> F \<in> (A \<inter> B) leadsTo (A' \<inter> B)"
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   377
apply (unfold stable_def)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   378
apply (erule leadsTo_induct)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   379
prefer 3 apply (blast intro: leadsTo_Union_Int)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   380
prefer 2 apply (blast intro: leadsTo_Trans)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   381
apply (rule leadsTo_Basis)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   382
apply (simp add: ensures_def Diff_Int_distrib2 [symmetric] Int_Un_distrib2 [symmetric])
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   383
apply (blast intro: transient_strengthen constrains_Int)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   384
done
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   385
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   386
lemma psp_stable2: 
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   387
   "[| F \<in> A leadsTo A'; F \<in> stable B |] ==> F \<in> (B \<inter> A) leadsTo (B \<inter> A')"
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   388
by (simp add: psp_stable Int_ac)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   389
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   390
lemma psp_ensures: 
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   391
   "[| F \<in> A ensures A'; F \<in> B co B' |]  
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   392
    ==> F \<in> (A \<inter> B') ensures ((A' \<inter> B) \<union> (B' - B))"
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   393
apply (unfold ensures_def constrains_def, clarify) (*speeds up the proof*)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   394
apply (blast intro: transient_strengthen)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   395
done
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   396
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   397
lemma psp:
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   398
     "[| F \<in> A leadsTo A'; F \<in> B co B' |]  
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   399
      ==> F \<in> (A \<inter> B') leadsTo ((A' \<inter> B) \<union> (B' - B))"
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   400
apply (erule leadsTo_induct)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   401
  prefer 3 apply (blast intro: leadsTo_Union_Int)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   402
 txt{*Basis case*}
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   403
 apply (blast intro: psp_ensures)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   404
txt{*Transitivity case has a delicate argument involving "cancellation"*}
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   405
apply (rule leadsTo_Un_duplicate2)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   406
apply (erule leadsTo_cancel_Diff1)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   407
apply (simp add: Int_Diff Diff_triv)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   408
apply (blast intro: leadsTo_weaken_L dest: constrains_imp_subset)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   409
done
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   410
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   411
lemma psp2:
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   412
     "[| F \<in> A leadsTo A'; F \<in> B co B' |]  
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   413
    ==> F \<in> (B' \<inter> A) leadsTo ((B \<inter> A') \<union> (B' - B))"
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   414
by (simp (no_asm_simp) add: psp Int_ac)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   415
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   416
lemma psp_unless: 
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   417
   "[| F \<in> A leadsTo A';  F \<in> B unless B' |]  
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   418
    ==> F \<in> (A \<inter> B) leadsTo ((A' \<inter> B) \<union> B')"
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   419
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   420
apply (unfold unless_def)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   421
apply (drule psp, assumption)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   422
apply (blast intro: leadsTo_weaken)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   423
done
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   424
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   425
13798
4c1a53627500 conversion to new-style theories and tidying
paulson
parents: 13797
diff changeset
   426
subsection{*Proving the induction rules*}
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   427
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   428
(** The most general rule: r is any wf relation; f is any variant function **)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   429
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   430
lemma leadsTo_wf_induct_lemma:
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   431
     "[| wf r;      
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   432
         \<forall>m. F \<in> (A \<inter> f-`{m}) leadsTo                      
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   433
                    ((A \<inter> f-`(r^-1 `` {m})) \<union> B) |]  
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   434
      ==> F \<in> (A \<inter> f-`{m}) leadsTo B"
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   435
apply (erule_tac a = m in wf_induct)
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   436
apply (subgoal_tac "F \<in> (A \<inter> (f -` (r^-1 `` {x}))) leadsTo B")
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   437
 apply (blast intro: leadsTo_cancel1 leadsTo_Un_duplicate)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   438
apply (subst vimage_eq_UN)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   439
apply (simp only: UN_simps [symmetric])
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   440
apply (blast intro: leadsTo_UN)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   441
done
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   442
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   443
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   444
(** Meta or object quantifier ? **)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   445
lemma leadsTo_wf_induct:
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   446
     "[| wf r;      
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   447
         \<forall>m. F \<in> (A \<inter> f-`{m}) leadsTo                      
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   448
                    ((A \<inter> f-`(r^-1 `` {m})) \<union> B) |]  
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   449
      ==> F \<in> A leadsTo B"
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   450
apply (rule_tac t = A in subst)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   451
 defer 1
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   452
 apply (rule leadsTo_UN)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   453
 apply (erule leadsTo_wf_induct_lemma)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   454
 apply assumption
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   455
apply fast (*Blast_tac: Function unknown's argument not a parameter*)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   456
done
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   457
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   458
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   459
lemma bounded_induct:
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   460
     "[| wf r;      
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   461
         \<forall>m \<in> I. F \<in> (A \<inter> f-`{m}) leadsTo                    
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   462
                      ((A \<inter> f-`(r^-1 `` {m})) \<union> B) |]  
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   463
      ==> F \<in> A leadsTo ((A - (f-`I)) \<union> B)"
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   464
apply (erule leadsTo_wf_induct, safe)
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   465
apply (case_tac "m \<in> I")
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   466
apply (blast intro: leadsTo_weaken)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   467
apply (blast intro: subset_imp_leadsTo)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   468
done
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   469
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   470
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   471
(*Alternative proof is via the lemma F \<in> (A \<inter> f-`(lessThan m)) leadsTo B*)
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   472
lemma lessThan_induct: 
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   473
     "[| !!m::nat. F \<in> (A \<inter> f-`{m}) leadsTo ((A \<inter> f-`{..m(}) \<union> B) |]  
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   474
      ==> F \<in> A leadsTo B"
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   475
apply (rule wf_less_than [THEN leadsTo_wf_induct])
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   476
apply (simp (no_asm_simp))
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   477
apply blast
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   478
done
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   479
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   480
lemma lessThan_bounded_induct:
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   481
     "!!l::nat. [| \<forall>m \<in> greaterThan l.     
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   482
            F \<in> (A \<inter> f-`{m}) leadsTo ((A \<inter> f-`(lessThan m)) \<union> B) |]  
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   483
      ==> F \<in> A leadsTo ((A \<inter> (f-`(atMost l))) \<union> B)"
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   484
apply (simp only: Diff_eq [symmetric] vimage_Compl Compl_greaterThan [symmetric])
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   485
apply (rule wf_less_than [THEN bounded_induct])
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   486
apply (simp (no_asm_simp))
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   487
done
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   488
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   489
lemma greaterThan_bounded_induct:
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   490
     "(!!l::nat. \<forall>m \<in> lessThan l.     
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   491
                 F \<in> (A \<inter> f-`{m}) leadsTo ((A \<inter> f-`(greaterThan m)) \<union> B))
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   492
      ==> F \<in> A leadsTo ((A \<inter> (f-`(atLeast l))) \<union> B)"
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   493
apply (rule_tac f = f and f1 = "%k. l - k" 
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   494
       in wf_less_than [THEN wf_inv_image, THEN leadsTo_wf_induct])
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   495
apply (simp (no_asm) add: inv_image_def Image_singleton)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   496
apply clarify
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   497
apply (case_tac "m<l")
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   498
 apply (blast intro: leadsTo_weaken_R diff_less_mono2)
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   499
apply (blast intro: not_leE subset_imp_leadsTo)
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   500
done
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   501
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   502
13798
4c1a53627500 conversion to new-style theories and tidying
paulson
parents: 13797
diff changeset
   503
subsection{*wlt*}
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   504
13812
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13805
diff changeset
   505
text{*Misra's property W3*}
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   506
lemma wlt_leadsTo: "F \<in> (wlt F B) leadsTo B"
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   507
apply (unfold wlt_def)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   508
apply (blast intro!: leadsTo_Union)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   509
done
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   510
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   511
lemma leadsTo_subset: "F \<in> A leadsTo B ==> A \<subseteq> wlt F B"
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   512
apply (unfold wlt_def)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   513
apply (blast intro!: leadsTo_Union)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   514
done
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   515
13812
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13805
diff changeset
   516
text{*Misra's property W2*}
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   517
lemma leadsTo_eq_subset_wlt: "F \<in> A leadsTo B = (A \<subseteq> wlt F B)"
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   518
by (blast intro!: leadsTo_subset wlt_leadsTo [THEN leadsTo_weaken_L])
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   519
13812
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13805
diff changeset
   520
text{*Misra's property W4*}
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   521
lemma wlt_increasing: "B \<subseteq> wlt F B"
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   522
apply (simp (no_asm_simp) add: leadsTo_eq_subset_wlt [symmetric] subset_imp_leadsTo)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   523
done
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   524
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   525
13812
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13805
diff changeset
   526
text{*Used in the Trans case below*}
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   527
lemma lemma1: 
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   528
   "[| B \<subseteq> A2;   
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   529
       F \<in> (A1 - B) co (A1 \<union> B);  
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   530
       F \<in> (A2 - C) co (A2 \<union> C) |]  
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   531
    ==> F \<in> (A1 \<union> A2 - C) co (A1 \<union> A2 \<union> C)"
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   532
by (unfold constrains_def, clarify,  blast)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   533
13812
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13805
diff changeset
   534
text{*Lemma (1,2,3) of Misra's draft book, Chapter 4, "Progress"*}
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   535
lemma leadsTo_123:
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   536
     "F \<in> A leadsTo A'  
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   537
      ==> \<exists>B. A \<subseteq> B & F \<in> B leadsTo A' & F \<in> (B-A') co (B \<union> A')"
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   538
apply (erule leadsTo_induct)
13812
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13805
diff changeset
   539
  txt{*Basis*}
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13805
diff changeset
   540
  apply (blast dest: ensuresD)
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13805
diff changeset
   541
 txt{*Trans*}
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13805
diff changeset
   542
 apply clarify
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13805
diff changeset
   543
 apply (rule_tac x = "Ba \<union> Bb" in exI)
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13805
diff changeset
   544
 apply (blast intro: lemma1 leadsTo_Un_Un leadsTo_cancel1 leadsTo_Un_duplicate)
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13805
diff changeset
   545
txt{*Union*}
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   546
apply (clarify dest!: ball_conj_distrib [THEN iffD1] bchoice)
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   547
apply (rule_tac x = "\<Union>A \<in> S. f A" in exI)
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   548
apply (auto intro: leadsTo_UN)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   549
(*Blast_tac says PROOF FAILED*)
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   550
apply (rule_tac I1=S and A1="%i. f i - B" and A'1="%i. f i \<union> B" 
13798
4c1a53627500 conversion to new-style theories and tidying
paulson
parents: 13797
diff changeset
   551
       in constrains_UN [THEN constrains_weaken], auto) 
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   552
done
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   553
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   554
13812
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13805
diff changeset
   555
text{*Misra's property W5*}
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   556
lemma wlt_constrains_wlt: "F \<in> (wlt F B - B) co (wlt F B)"
13798
4c1a53627500 conversion to new-style theories and tidying
paulson
parents: 13797
diff changeset
   557
proof -
4c1a53627500 conversion to new-style theories and tidying
paulson
parents: 13797
diff changeset
   558
  from wlt_leadsTo [of F B, THEN leadsTo_123]
4c1a53627500 conversion to new-style theories and tidying
paulson
parents: 13797
diff changeset
   559
  show ?thesis
4c1a53627500 conversion to new-style theories and tidying
paulson
parents: 13797
diff changeset
   560
  proof (elim exE conjE)
4c1a53627500 conversion to new-style theories and tidying
paulson
parents: 13797
diff changeset
   561
(* assumes have to be in exactly the form as in the goal displayed at
4c1a53627500 conversion to new-style theories and tidying
paulson
parents: 13797
diff changeset
   562
   this point.  Isar doesn't give you any automation. *)
4c1a53627500 conversion to new-style theories and tidying
paulson
parents: 13797
diff changeset
   563
    fix C
4c1a53627500 conversion to new-style theories and tidying
paulson
parents: 13797
diff changeset
   564
    assume wlt: "wlt F B \<subseteq> C"
4c1a53627500 conversion to new-style theories and tidying
paulson
parents: 13797
diff changeset
   565
       and lt:  "F \<in> C leadsTo B"
4c1a53627500 conversion to new-style theories and tidying
paulson
parents: 13797
diff changeset
   566
       and co:  "F \<in> C - B co C \<union> B"
4c1a53627500 conversion to new-style theories and tidying
paulson
parents: 13797
diff changeset
   567
    have eq: "C = wlt F B"
4c1a53627500 conversion to new-style theories and tidying
paulson
parents: 13797
diff changeset
   568
    proof -
4c1a53627500 conversion to new-style theories and tidying
paulson
parents: 13797
diff changeset
   569
      from lt and wlt show ?thesis 
4c1a53627500 conversion to new-style theories and tidying
paulson
parents: 13797
diff changeset
   570
           by (blast dest: leadsTo_eq_subset_wlt [THEN iffD1])
4c1a53627500 conversion to new-style theories and tidying
paulson
parents: 13797
diff changeset
   571
    qed
4c1a53627500 conversion to new-style theories and tidying
paulson
parents: 13797
diff changeset
   572
    from co show ?thesis by (simp add: eq wlt_increasing Un_absorb2)
4c1a53627500 conversion to new-style theories and tidying
paulson
parents: 13797
diff changeset
   573
  qed
4c1a53627500 conversion to new-style theories and tidying
paulson
parents: 13797
diff changeset
   574
qed
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   575
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   576
13798
4c1a53627500 conversion to new-style theories and tidying
paulson
parents: 13797
diff changeset
   577
subsection{*Completion: Binary and General Finite versions*}
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   578
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   579
lemma completion_lemma :
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   580
     "[| W = wlt F (B' \<union> C);      
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   581
       F \<in> A leadsTo (A' \<union> C);  F \<in> A' co (A' \<union> C);    
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   582
       F \<in> B leadsTo (B' \<union> C);  F \<in> B' co (B' \<union> C) |]  
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   583
    ==> F \<in> (A \<inter> B) leadsTo ((A' \<inter> B') \<union> C)"
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   584
apply (subgoal_tac "F \<in> (W-C) co (W \<union> B' \<union> C) ")
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   585
 prefer 2
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   586
 apply (blast intro: wlt_constrains_wlt [THEN [2] constrains_Un, 
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   587
                                         THEN constrains_weaken])
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   588
apply (subgoal_tac "F \<in> (W-C) co W")
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   589
 prefer 2
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   590
 apply (simp add: wlt_increasing Un_assoc Un_absorb2)
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   591
apply (subgoal_tac "F \<in> (A \<inter> W - C) leadsTo (A' \<inter> W \<union> C) ")
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   592
 prefer 2 apply (blast intro: wlt_leadsTo psp [THEN leadsTo_weaken])
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   593
(** LEVEL 6 **)
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   594
apply (subgoal_tac "F \<in> (A' \<inter> W \<union> C) leadsTo (A' \<inter> B' \<union> C) ")
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   595
 prefer 2
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   596
 apply (rule leadsTo_Un_duplicate2)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   597
 apply (blast intro: leadsTo_Un_Un wlt_leadsTo
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   598
                         [THEN psp2, THEN leadsTo_weaken] leadsTo_refl)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   599
apply (drule leadsTo_Diff)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   600
apply (blast intro: subset_imp_leadsTo)
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   601
apply (subgoal_tac "A \<inter> B \<subseteq> A \<inter> W")
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   602
 prefer 2
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   603
 apply (blast dest!: leadsTo_subset intro!: subset_refl [THEN Int_mono])
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   604
apply (blast intro: leadsTo_Trans subset_imp_leadsTo)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   605
done
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   606
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   607
lemmas completion = completion_lemma [OF refl]
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   608
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   609
lemma finite_completion_lemma:
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   610
     "finite I ==> (\<forall>i \<in> I. F \<in> (A i) leadsTo (A' i \<union> C)) -->   
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   611
                   (\<forall>i \<in> I. F \<in> (A' i) co (A' i \<union> C)) -->  
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   612
                   F \<in> (\<Inter>i \<in> I. A i) leadsTo ((\<Inter>i \<in> I. A' i) \<union> C)"
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   613
apply (erule finite_induct, auto)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   614
apply (rule completion)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   615
   prefer 4
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   616
   apply (simp only: INT_simps [symmetric])
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   617
   apply (rule constrains_INT, auto)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   618
done
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   619
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   620
lemma finite_completion: 
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   621
     "[| finite I;   
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   622
         !!i. i \<in> I ==> F \<in> (A i) leadsTo (A' i \<union> C);  
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   623
         !!i. i \<in> I ==> F \<in> (A' i) co (A' i \<union> C) |]    
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   624
      ==> F \<in> (\<Inter>i \<in> I. A i) leadsTo ((\<Inter>i \<in> I. A' i) \<union> C)"
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   625
by (blast intro: finite_completion_lemma [THEN mp, THEN mp])
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   626
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   627
lemma stable_completion: 
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   628
     "[| F \<in> A leadsTo A';  F \<in> stable A';    
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   629
         F \<in> B leadsTo B';  F \<in> stable B' |]  
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   630
    ==> F \<in> (A \<inter> B) leadsTo (A' \<inter> B')"
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   631
apply (unfold stable_def)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   632
apply (rule_tac C1 = "{}" in completion [THEN leadsTo_weaken_R])
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   633
apply (force+)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   634
done
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   635
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   636
lemma finite_stable_completion: 
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   637
     "[| finite I;   
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   638
         !!i. i \<in> I ==> F \<in> (A i) leadsTo (A' i);  
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   639
         !!i. i \<in> I ==> F \<in> stable (A' i) |]    
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   640
      ==> F \<in> (\<Inter>i \<in> I. A i) leadsTo (\<Inter>i \<in> I. A' i)"
13797
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   641
apply (unfold stable_def)
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   642
apply (rule_tac C1 = "{}" in finite_completion [THEN leadsTo_weaken_R])
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   643
apply (simp_all (no_asm_simp))
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   644
apply blast+
baefae13ad37 conversion of UNITY theories to new-style
paulson
parents: 10834
diff changeset
   645
done
9685
6d123a7e30bd xsymbols for leads-to and Join
paulson
parents: 8006
diff changeset
   646
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   647
end