src/HOL/UNITY/WFair.ML
author nipkow
Fri, 02 Oct 1998 14:28:39 +0200
changeset 5608 a82a038a3e7a
parent 5536 130f3d891fb2
child 5620 3ac11c4af76a
permissions -rw-r--r--
id <-> Id
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
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
     6
Weak Fairness versions of transient, ensures, leadsTo.
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
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    11
5340
d75c03cf77b5 Misc changes
paulson
parents: 5277
diff changeset
    12
(*Map its type, [('a * 'a)set set] => ('a set * 'a set) set, to just 'a*)
d75c03cf77b5 Misc changes
paulson
parents: 5277
diff changeset
    13
Blast.overloaded ("WFair.leadsto", 
d75c03cf77b5 Misc changes
paulson
parents: 5277
diff changeset
    14
		  #1 o HOLogic.dest_prodT o 
d75c03cf77b5 Misc changes
paulson
parents: 5277
diff changeset
    15
		  HOLogic.dest_setT o HOLogic.dest_setT o domain_type);
d75c03cf77b5 Misc changes
paulson
parents: 5277
diff changeset
    16
d75c03cf77b5 Misc changes
paulson
parents: 5277
diff changeset
    17
overload_2nd_set "WFair.transient";
d75c03cf77b5 Misc changes
paulson
parents: 5277
diff changeset
    18
overload_2nd_set "WFair.ensures";
d75c03cf77b5 Misc changes
paulson
parents: 5277
diff changeset
    19
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    20
(*** transient ***)
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    21
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4776
diff changeset
    22
Goalw [stable_def, constrains_def, transient_def]
5253
82a5ca6290aa New record type of programs
paulson
parents: 5239
diff changeset
    23
    "[| stable acts A; transient acts A |] ==> A = {}";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    24
by (Blast_tac 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    25
qed "stable_transient_empty";
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    26
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4776
diff changeset
    27
Goalw [transient_def]
5253
82a5ca6290aa New record type of programs
paulson
parents: 5239
diff changeset
    28
    "[| transient acts A; B<=A |] ==> transient acts B";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    29
by (Clarify_tac 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    30
by (rtac bexI 1 THEN assume_tac 2);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    31
by (Blast_tac 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    32
qed "transient_strengthen";
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    33
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4776
diff changeset
    34
Goalw [transient_def]
5490
85855f65d0c6 From Compl(A) to -A
paulson
parents: 5479
diff changeset
    35
    "[| act:acts;  A <= Domain act;  act^^A <= -A |] ==> transient acts A";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    36
by (Blast_tac 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    37
qed "transient_mem";
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    38
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    39
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    40
(*** ensures ***)
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    41
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4776
diff changeset
    42
Goalw [ensures_def]
5253
82a5ca6290aa New record type of programs
paulson
parents: 5239
diff changeset
    43
    "[| constrains acts (A-B) (A Un B); transient acts (A-B) |] \
82a5ca6290aa New record type of programs
paulson
parents: 5239
diff changeset
    44
\    ==> ensures acts A B";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    45
by (Blast_tac 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    46
qed "ensuresI";
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    47
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4776
diff changeset
    48
Goalw [ensures_def]
5253
82a5ca6290aa New record type of programs
paulson
parents: 5239
diff changeset
    49
    "ensures acts A B  \
82a5ca6290aa New record type of programs
paulson
parents: 5239
diff changeset
    50
\    ==> constrains acts (A-B) (A Un B) & transient acts (A-B)";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    51
by (Blast_tac 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    52
qed "ensuresD";
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    53
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    54
(*The L-version (precondition strengthening) doesn't hold for ENSURES*)
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4776
diff changeset
    55
Goalw [ensures_def]
5253
82a5ca6290aa New record type of programs
paulson
parents: 5239
diff changeset
    56
    "[| ensures acts A A'; A'<=B' |] ==> ensures acts A B'";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    57
by (blast_tac (claset() addIs [constrains_weaken, transient_strengthen]) 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    58
qed "ensures_weaken_R";
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    59
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4776
diff changeset
    60
Goalw [ensures_def, constrains_def, transient_def]
5253
82a5ca6290aa New record type of programs
paulson
parents: 5239
diff changeset
    61
    "acts ~= {} ==> ensures acts A UNIV";
5340
d75c03cf77b5 Misc changes
paulson
parents: 5277
diff changeset
    62
by Auto_tac;
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    63
qed "ensures_UNIV";
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    64
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4776
diff changeset
    65
Goalw [ensures_def]
5253
82a5ca6290aa New record type of programs
paulson
parents: 5239
diff changeset
    66
    "[| stable acts C; \
82a5ca6290aa New record type of programs
paulson
parents: 5239
diff changeset
    67
\       constrains acts (C Int (A - A')) (A Un A'); \
82a5ca6290aa New record type of programs
paulson
parents: 5239
diff changeset
    68
\       transient  acts (C Int (A-A')) |]   \
82a5ca6290aa New record type of programs
paulson
parents: 5239
diff changeset
    69
\   ==> ensures acts (C Int A) (C Int A')";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    70
by (asm_simp_tac (simpset() addsimps [Int_Un_distrib RS sym,
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    71
				      Diff_Int_distrib RS sym,
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    72
				      stable_constrains_Int]) 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    73
qed "stable_ensures_Int";
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    74
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    75
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    76
(*** leadsTo ***)
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    77
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    78
(*Synonyms for the theorems produced by the inductive defn package*)
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    79
bind_thm ("leadsTo_Basis", leadsto.Basis);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    80
bind_thm ("leadsTo_Trans", leadsto.Trans);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    81
5253
82a5ca6290aa New record type of programs
paulson
parents: 5239
diff changeset
    82
Goal "act: acts ==> leadsTo acts A UNIV";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    83
by (blast_tac (claset() addIs [ensures_UNIV RS leadsTo_Basis]) 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    84
qed "leadsTo_UNIV";
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    85
Addsimps [leadsTo_UNIV];
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    86
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    87
(*Useful with cancellation, disjunction*)
5253
82a5ca6290aa New record type of programs
paulson
parents: 5239
diff changeset
    88
Goal "leadsTo acts A (A' Un A') ==> leadsTo acts A A'";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    89
by (asm_full_simp_tac (simpset() addsimps Un_ac) 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    90
qed "leadsTo_Un_duplicate";
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    91
5253
82a5ca6290aa New record type of programs
paulson
parents: 5239
diff changeset
    92
Goal "leadsTo acts A (A' Un C Un C) ==> leadsTo acts A (A' Un C)";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    93
by (asm_full_simp_tac (simpset() addsimps Un_ac) 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    94
qed "leadsTo_Un_duplicate2";
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    95
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    96
(*The Union introduction rule as we should have liked to state it*)
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    97
val prems = goal thy
5253
82a5ca6290aa New record type of programs
paulson
parents: 5239
diff changeset
    98
    "(!!A. A : S ==> leadsTo acts A B) ==> leadsTo acts (Union S) B";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    99
by (blast_tac (claset() addIs (leadsto.Union::prems)) 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   100
qed "leadsTo_Union";
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   101
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   102
val prems = goal thy
5253
82a5ca6290aa New record type of programs
paulson
parents: 5239
diff changeset
   103
    "(!!i. i : I ==> leadsTo acts (A i) B) ==> leadsTo acts (UN i:I. A i) B";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   104
by (simp_tac (simpset() addsimps [Union_image_eq RS sym]) 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   105
by (blast_tac (claset() addIs (leadsto.Union::prems)) 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   106
qed "leadsTo_UN";
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   107
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   108
(*Binary union introduction rule*)
5253
82a5ca6290aa New record type of programs
paulson
parents: 5239
diff changeset
   109
Goal "[| leadsTo acts A C; leadsTo acts B C |] ==> leadsTo acts (A Un B) C";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   110
by (stac Un_eq_Union 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   111
by (blast_tac (claset() addIs [leadsTo_Union]) 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   112
qed "leadsTo_Un";
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   113
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   114
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   115
(*The INDUCTION rule as we should have liked to state it*)
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   116
val major::prems = goal thy
5253
82a5ca6290aa New record type of programs
paulson
parents: 5239
diff changeset
   117
  "[| leadsTo acts za zb;  \
82a5ca6290aa New record type of programs
paulson
parents: 5239
diff changeset
   118
\     !!A B. ensures acts A B ==> P A B; \
82a5ca6290aa New record type of programs
paulson
parents: 5239
diff changeset
   119
\     !!A B C. [| leadsTo acts A B; P A B; leadsTo acts B C; P B C |] \
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   120
\              ==> P A C; \
5253
82a5ca6290aa New record type of programs
paulson
parents: 5239
diff changeset
   121
\     !!B S. ALL A:S. leadsTo acts A B & P A B ==> P (Union S) B \
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   122
\  |] ==> P za zb";
5232
e5a7cdd07ea5 Tidied; uses records
paulson
parents: 5111
diff changeset
   123
by (rtac (major RS leadsto.induct) 1);
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   124
by (REPEAT (blast_tac (claset() addIs prems) 1));
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   125
qed "leadsTo_induct";
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   126
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   127
5608
a82a038a3e7a id <-> Id
nipkow
parents: 5536
diff changeset
   128
Goal "[| A<=B;  Id: acts |] ==> leadsTo acts A B";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   129
by (rtac leadsTo_Basis 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   130
by (rewrite_goals_tac [ensures_def, constrains_def, transient_def]);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   131
by (Blast_tac 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   132
qed "subset_imp_leadsTo";
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   133
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   134
bind_thm ("empty_leadsTo", empty_subsetI RS subset_imp_leadsTo);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   135
Addsimps [empty_leadsTo];
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   136
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   137
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   138
(*There's a direct proof by leadsTo_Trans and subset_imp_leadsTo, but it
5608
a82a038a3e7a id <-> Id
nipkow
parents: 5536
diff changeset
   139
  needs the extra premise Id:acts*)
5253
82a5ca6290aa New record type of programs
paulson
parents: 5239
diff changeset
   140
Goal "leadsTo acts A A' ==> A'<=B' --> leadsTo acts A B'";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   141
by (etac leadsTo_induct 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   142
by (Clarify_tac 3);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   143
by (blast_tac (claset() addIs [leadsTo_Union]) 3);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   144
by (blast_tac (claset() addIs [leadsTo_Trans]) 2);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   145
by (blast_tac (claset() addIs [leadsTo_Basis, ensures_weaken_R]) 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   146
qed_spec_mp "leadsTo_weaken_R";
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   147
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   148
5608
a82a038a3e7a id <-> Id
nipkow
parents: 5536
diff changeset
   149
Goal "[| leadsTo acts A A'; B<=A; Id: acts |] ==>  \
5253
82a5ca6290aa New record type of programs
paulson
parents: 5239
diff changeset
   150
\         leadsTo acts B A'";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   151
by (blast_tac (claset() addIs [leadsTo_Basis, leadsTo_Trans, 
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   152
			       subset_imp_leadsTo]) 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   153
qed_spec_mp "leadsTo_weaken_L";
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   154
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   155
(*Distributes over binary unions*)
5608
a82a038a3e7a id <-> Id
nipkow
parents: 5536
diff changeset
   156
Goal "Id: acts ==> \
5253
82a5ca6290aa New record type of programs
paulson
parents: 5239
diff changeset
   157
\       leadsTo acts (A Un B) C  =  (leadsTo acts A C & leadsTo acts B C)";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   158
by (blast_tac (claset() addIs [leadsTo_Un, leadsTo_weaken_L]) 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   159
qed "leadsTo_Un_distrib";
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   160
5608
a82a038a3e7a id <-> Id
nipkow
parents: 5536
diff changeset
   161
Goal "Id: acts ==> \
5253
82a5ca6290aa New record type of programs
paulson
parents: 5239
diff changeset
   162
\       leadsTo acts (UN i:I. A i) B  =  (ALL i : I. leadsTo acts (A i) B)";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   163
by (blast_tac (claset() addIs [leadsTo_UN, leadsTo_weaken_L]) 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   164
qed "leadsTo_UN_distrib";
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   165
5608
a82a038a3e7a id <-> Id
nipkow
parents: 5536
diff changeset
   166
Goal "Id: acts ==> \
5253
82a5ca6290aa New record type of programs
paulson
parents: 5239
diff changeset
   167
\       leadsTo acts (Union S) B  =  (ALL A : S. leadsTo acts A B)";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   168
by (blast_tac (claset() addIs [leadsTo_Union, leadsTo_weaken_L]) 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   169
qed "leadsTo_Union_distrib";
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   170
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   171
5608
a82a038a3e7a id <-> Id
nipkow
parents: 5536
diff changeset
   172
Goal "[| leadsTo acts A A'; Id: acts; B<=A; A'<=B' |] \
5253
82a5ca6290aa New record type of programs
paulson
parents: 5239
diff changeset
   173
\   ==> leadsTo acts B B'";
5340
d75c03cf77b5 Misc changes
paulson
parents: 5277
diff changeset
   174
by (blast_tac (claset() addIs [leadsTo_weaken_R, leadsTo_weaken_L,
d75c03cf77b5 Misc changes
paulson
parents: 5277
diff changeset
   175
			       leadsTo_Trans]) 1);
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   176
qed "leadsTo_weaken";
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   177
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   178
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   179
(*Set difference: maybe combine with leadsTo_weaken_L??*)
5608
a82a038a3e7a id <-> Id
nipkow
parents: 5536
diff changeset
   180
Goal "[| leadsTo acts (A-B) C; leadsTo acts B C; Id: acts |] \
5253
82a5ca6290aa New record type of programs
paulson
parents: 5239
diff changeset
   181
\       ==> leadsTo acts A C";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   182
by (blast_tac (claset() addIs [leadsTo_Un, leadsTo_weaken]) 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   183
qed "leadsTo_Diff";
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   184
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   185
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   186
(** Meta or object quantifier ???
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   187
    see ball_constrains_UN in UNITY.ML***)
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   188
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   189
val prems = goal thy
5253
82a5ca6290aa New record type of programs
paulson
parents: 5239
diff changeset
   190
   "(!! i. i:I ==> leadsTo acts (A i) (A' i)) \
82a5ca6290aa New record type of programs
paulson
parents: 5239
diff changeset
   191
\   ==> leadsTo acts (UN i:I. A i) (UN i:I. A' i)";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   192
by (simp_tac (simpset() addsimps [Union_image_eq RS sym]) 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   193
by (blast_tac (claset() addIs [leadsTo_Union, leadsTo_weaken_R] 
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   194
                        addIs prems) 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   195
qed "leadsTo_UN_UN";
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   196
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   197
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   198
(*Version with no index set*)
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   199
val prems = goal thy
5253
82a5ca6290aa New record type of programs
paulson
parents: 5239
diff changeset
   200
   "(!! i. leadsTo acts (A i) (A' i)) \
82a5ca6290aa New record type of programs
paulson
parents: 5239
diff changeset
   201
\   ==> leadsTo acts (UN i. A i) (UN i. A' i)";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   202
by (blast_tac (claset() addIs [leadsTo_UN_UN] 
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   203
                        addIs prems) 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   204
qed "leadsTo_UN_UN_noindex";
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   205
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   206
(*Version with no index set*)
5253
82a5ca6290aa New record type of programs
paulson
parents: 5239
diff changeset
   207
Goal "ALL i. leadsTo acts (A i) (A' i) \
82a5ca6290aa New record type of programs
paulson
parents: 5239
diff changeset
   208
\   ==> leadsTo acts (UN i. A i) (UN i. A' i)";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   209
by (blast_tac (claset() addIs [leadsTo_UN_UN]) 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   210
qed "all_leadsTo_UN_UN";
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   211
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   212
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   213
(*Binary union version*)
5253
82a5ca6290aa New record type of programs
paulson
parents: 5239
diff changeset
   214
Goal "[| leadsTo acts A A'; leadsTo acts B B' |] \
82a5ca6290aa New record type of programs
paulson
parents: 5239
diff changeset
   215
\         ==> leadsTo acts (A Un B) (A' Un B')";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   216
by (blast_tac (claset() addIs [leadsTo_Un, 
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   217
			       leadsTo_weaken_R]) 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   218
qed "leadsTo_Un_Un";
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   219
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   220
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   221
(** The cancellation law **)
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   222
5608
a82a038a3e7a id <-> Id
nipkow
parents: 5536
diff changeset
   223
Goal "[| leadsTo acts A (A' Un B); leadsTo acts B B'; Id: acts |] \
5253
82a5ca6290aa New record type of programs
paulson
parents: 5239
diff changeset
   224
\   ==> leadsTo acts A (A' Un B')";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   225
by (blast_tac (claset() addIs [leadsTo_Un_Un, 
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   226
			       subset_imp_leadsTo, leadsTo_Trans]) 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   227
qed "leadsTo_cancel2";
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   228
5608
a82a038a3e7a id <-> Id
nipkow
parents: 5536
diff changeset
   229
Goal "[| leadsTo acts A (A' Un B); leadsTo acts (B-A') B'; Id: acts |] \
5253
82a5ca6290aa New record type of programs
paulson
parents: 5239
diff changeset
   230
\   ==> leadsTo acts A (A' Un B')";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   231
by (rtac leadsTo_cancel2 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   232
by (assume_tac 2);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   233
by (ALLGOALS Asm_simp_tac);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   234
qed "leadsTo_cancel_Diff2";
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   235
5608
a82a038a3e7a id <-> Id
nipkow
parents: 5536
diff changeset
   236
Goal "[| leadsTo acts A (B Un A'); leadsTo acts B B'; Id: acts |] \
5253
82a5ca6290aa New record type of programs
paulson
parents: 5239
diff changeset
   237
\   ==> leadsTo acts A (B' Un A')";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   238
by (asm_full_simp_tac (simpset() addsimps [Un_commute]) 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   239
by (blast_tac (claset() addSIs [leadsTo_cancel2]) 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   240
qed "leadsTo_cancel1";
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   241
5608
a82a038a3e7a id <-> Id
nipkow
parents: 5536
diff changeset
   242
Goal "[| leadsTo acts A (B Un A'); leadsTo acts (B-A') B'; Id: acts |] \
5253
82a5ca6290aa New record type of programs
paulson
parents: 5239
diff changeset
   243
\   ==> leadsTo acts A (B' Un A')";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   244
by (rtac leadsTo_cancel1 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   245
by (assume_tac 2);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   246
by (ALLGOALS Asm_simp_tac);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   247
qed "leadsTo_cancel_Diff1";
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   248
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   249
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   250
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   251
(** The impossibility law **)
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   252
5253
82a5ca6290aa New record type of programs
paulson
parents: 5239
diff changeset
   253
Goal "leadsTo acts A B ==> B={} --> A={}";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   254
by (etac leadsTo_induct 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   255
by (ALLGOALS Asm_simp_tac);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   256
by (rewrite_goals_tac [ensures_def, constrains_def, transient_def]);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   257
by (Blast_tac 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   258
val lemma = result() RS mp;
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   259
5253
82a5ca6290aa New record type of programs
paulson
parents: 5239
diff changeset
   260
Goal "leadsTo acts A {} ==> A={}";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   261
by (blast_tac (claset() addSIs [lemma]) 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   262
qed "leadsTo_empty";
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   263
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   264
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   265
(** PSP: Progress-Safety-Progress **)
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   266
5608
a82a038a3e7a id <-> Id
nipkow
parents: 5536
diff changeset
   267
(*Special case of PSP: Misra's "stable conjunction".  Doesn't need Id:acts. *)
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4776
diff changeset
   268
Goalw [stable_def]
5253
82a5ca6290aa New record type of programs
paulson
parents: 5239
diff changeset
   269
   "[| leadsTo acts A A'; stable acts B |] \
82a5ca6290aa New record type of programs
paulson
parents: 5239
diff changeset
   270
\   ==> leadsTo acts (A Int B) (A' Int B)";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   271
by (etac leadsTo_induct 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   272
by (simp_tac (simpset() addsimps [Int_Union_Union]) 3);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   273
by (blast_tac (claset() addIs [leadsTo_Union]) 3);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   274
by (blast_tac (claset() addIs [leadsTo_Trans]) 2);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   275
by (rtac leadsTo_Basis 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   276
by (asm_full_simp_tac
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   277
    (simpset() addsimps [ensures_def, 
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   278
			 Diff_Int_distrib2 RS sym, Int_Un_distrib2 RS sym]) 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   279
by (blast_tac (claset() addIs [transient_strengthen, constrains_Int]) 1);
5277
e4297d03e5d2 A higher-level treatment of LeadsTo, minimizing use of "reachable"
paulson
parents: 5257
diff changeset
   280
qed "psp_stable";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   281
5253
82a5ca6290aa New record type of programs
paulson
parents: 5239
diff changeset
   282
Goal "[| leadsTo acts A A'; stable acts B |] \
82a5ca6290aa New record type of programs
paulson
parents: 5239
diff changeset
   283
\   ==> leadsTo acts (B Int A) (B Int A')";
5536
130f3d891fb2 tidying and deleting needless parentheses
paulson
parents: 5521
diff changeset
   284
by (asm_simp_tac (simpset() addsimps psp_stable::Int_ac) 1);
5277
e4297d03e5d2 A higher-level treatment of LeadsTo, minimizing use of "reachable"
paulson
parents: 5257
diff changeset
   285
qed "psp_stable2";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   286
5277
e4297d03e5d2 A higher-level treatment of LeadsTo, minimizing use of "reachable"
paulson
parents: 5257
diff changeset
   287
Goalw [ensures_def, constrains_def]
5253
82a5ca6290aa New record type of programs
paulson
parents: 5239
diff changeset
   288
   "[| ensures acts A A'; constrains acts B B' |] \
82a5ca6290aa New record type of programs
paulson
parents: 5239
diff changeset
   289
\   ==> ensures acts (A Int B) ((A' Int B) Un (B' - B))";
5277
e4297d03e5d2 A higher-level treatment of LeadsTo, minimizing use of "reachable"
paulson
parents: 5257
diff changeset
   290
by (blast_tac (claset() addIs [transient_strengthen]) 1);
e4297d03e5d2 A higher-level treatment of LeadsTo, minimizing use of "reachable"
paulson
parents: 5257
diff changeset
   291
qed "psp_ensures";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   292
5608
a82a038a3e7a id <-> Id
nipkow
parents: 5536
diff changeset
   293
Goal "[| leadsTo acts A A'; constrains acts B B'; Id: acts |] \
5253
82a5ca6290aa New record type of programs
paulson
parents: 5239
diff changeset
   294
\           ==> leadsTo acts (A Int B) ((A' Int B) Un (B' - B))";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   295
by (etac leadsTo_induct 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   296
by (simp_tac (simpset() addsimps [Int_Union_Union]) 3);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   297
by (blast_tac (claset() addIs [leadsTo_Union]) 3);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   298
(*Transitivity case has a delicate argument involving "cancellation"*)
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   299
by (rtac leadsTo_Un_duplicate2 2);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   300
by (etac leadsTo_cancel_Diff1 2);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   301
by (assume_tac 3);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   302
by (asm_full_simp_tac (simpset() addsimps [Int_Diff, Diff_triv]) 2);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   303
(*Basis case*)
5277
e4297d03e5d2 A higher-level treatment of LeadsTo, minimizing use of "reachable"
paulson
parents: 5257
diff changeset
   304
by (blast_tac (claset() addIs [leadsTo_Basis, psp_ensures]) 1);
e4297d03e5d2 A higher-level treatment of LeadsTo, minimizing use of "reachable"
paulson
parents: 5257
diff changeset
   305
qed "psp";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   306
5608
a82a038a3e7a id <-> Id
nipkow
parents: 5536
diff changeset
   307
Goal "[| leadsTo acts A A'; constrains acts B B'; Id: acts |] \
5253
82a5ca6290aa New record type of programs
paulson
parents: 5239
diff changeset
   308
\   ==> leadsTo acts (B Int A) ((B Int A') Un (B' - B))";
5536
130f3d891fb2 tidying and deleting needless parentheses
paulson
parents: 5521
diff changeset
   309
by (asm_simp_tac (simpset() addsimps psp::Int_ac) 1);
5277
e4297d03e5d2 A higher-level treatment of LeadsTo, minimizing use of "reachable"
paulson
parents: 5257
diff changeset
   310
qed "psp2";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   311
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   312
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4776
diff changeset
   313
Goalw [unless_def]
5608
a82a038a3e7a id <-> Id
nipkow
parents: 5536
diff changeset
   314
   "[| leadsTo acts A A'; unless acts B B'; Id: acts |] \
5253
82a5ca6290aa New record type of programs
paulson
parents: 5239
diff changeset
   315
\   ==> leadsTo acts (A Int B) ((A' Int B) Un B')";
5277
e4297d03e5d2 A higher-level treatment of LeadsTo, minimizing use of "reachable"
paulson
parents: 5257
diff changeset
   316
by (dtac psp 1);
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   317
by (assume_tac 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   318
by (asm_full_simp_tac (simpset() addsimps [Un_Diff_Diff, Int_Diff_Un]) 2);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   319
by (asm_full_simp_tac (simpset() addsimps [Diff_Int_distrib]) 2);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   320
by (etac leadsTo_Diff 2);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   321
by (blast_tac (claset() addIs [subset_imp_leadsTo]) 2);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   322
by Auto_tac;
5277
e4297d03e5d2 A higher-level treatment of LeadsTo, minimizing use of "reachable"
paulson
parents: 5257
diff changeset
   323
qed "psp_unless";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   324
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   325
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   326
(*** Proving the induction rules ***)
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   327
5257
c03e3ba9cbcc Indentation, comments
paulson
parents: 5253
diff changeset
   328
(** The most general rule: r is any wf relation; f is any variant function **)
c03e3ba9cbcc Indentation, comments
paulson
parents: 5253
diff changeset
   329
5239
2fd94efb9d64 Tidying
paulson
parents: 5232
diff changeset
   330
Goal "[| wf r;     \
5253
82a5ca6290aa New record type of programs
paulson
parents: 5239
diff changeset
   331
\        ALL m. leadsTo acts (A Int f-``{m})                     \
5239
2fd94efb9d64 Tidying
paulson
parents: 5232
diff changeset
   332
\                            ((A Int f-``(r^-1 ^^ {m})) Un B);   \
5608
a82a038a3e7a id <-> Id
nipkow
parents: 5536
diff changeset
   333
\        Id: acts |] \
5253
82a5ca6290aa New record type of programs
paulson
parents: 5239
diff changeset
   334
\     ==> leadsTo acts (A Int f-``{m}) B";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   335
by (eres_inst_tac [("a","m")] wf_induct 1);
5253
82a5ca6290aa New record type of programs
paulson
parents: 5239
diff changeset
   336
by (subgoal_tac "leadsTo acts (A Int (f -`` (r^-1 ^^ {x}))) B" 1);
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   337
by (stac vimage_eq_UN 2);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   338
by (asm_simp_tac (HOL_ss addsimps (UN_simps RL [sym])) 2);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   339
by (blast_tac (claset() addIs [leadsTo_UN]) 2);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   340
by (blast_tac (claset() addIs [leadsTo_cancel1, leadsTo_Un_duplicate]) 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   341
val lemma = result();
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   342
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   343
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   344
(** Meta or object quantifier ????? **)
5239
2fd94efb9d64 Tidying
paulson
parents: 5232
diff changeset
   345
Goal "[| wf r;     \
5253
82a5ca6290aa New record type of programs
paulson
parents: 5239
diff changeset
   346
\        ALL m. leadsTo acts (A Int f-``{m})                     \
5239
2fd94efb9d64 Tidying
paulson
parents: 5232
diff changeset
   347
\                            ((A Int f-``(r^-1 ^^ {m})) Un B);   \
5608
a82a038a3e7a id <-> Id
nipkow
parents: 5536
diff changeset
   348
\        Id: acts |] \
5253
82a5ca6290aa New record type of programs
paulson
parents: 5239
diff changeset
   349
\     ==> leadsTo acts A B";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   350
by (res_inst_tac [("t", "A")] subst 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   351
by (rtac leadsTo_UN 2);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   352
by (etac lemma 2);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   353
by (REPEAT (assume_tac 2));
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   354
by (Fast_tac 1);    (*Blast_tac: Function unknown's argument not a parameter*)
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   355
qed "leadsTo_wf_induct";
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   356
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   357
5239
2fd94efb9d64 Tidying
paulson
parents: 5232
diff changeset
   358
Goal "[| wf r;     \
5253
82a5ca6290aa New record type of programs
paulson
parents: 5239
diff changeset
   359
\        ALL m:I. leadsTo acts (A Int f-``{m})                   \
5257
c03e3ba9cbcc Indentation, comments
paulson
parents: 5253
diff changeset
   360
\                              ((A Int f-``(r^-1 ^^ {m})) Un B);   \
5608
a82a038a3e7a id <-> Id
nipkow
parents: 5536
diff changeset
   361
\        Id: acts |] \
5253
82a5ca6290aa New record type of programs
paulson
parents: 5239
diff changeset
   362
\     ==> leadsTo acts A ((A - (f-``I)) Un B)";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   363
by (etac leadsTo_wf_induct 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   364
by Safe_tac;
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   365
by (case_tac "m:I" 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   366
by (blast_tac (claset() addIs [leadsTo_weaken]) 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   367
by (blast_tac (claset() addIs [subset_imp_leadsTo]) 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   368
qed "bounded_induct";
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   369
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   370
5253
82a5ca6290aa New record type of programs
paulson
parents: 5239
diff changeset
   371
(*Alternative proof is via the lemma leadsTo acts (A Int f-``(lessThan m)) B*)
82a5ca6290aa New record type of programs
paulson
parents: 5239
diff changeset
   372
Goal "[| ALL m. leadsTo acts (A Int f-``{m})                     \
5239
2fd94efb9d64 Tidying
paulson
parents: 5232
diff changeset
   373
\                            ((A Int f-``(lessThan m)) Un B);   \
5608
a82a038a3e7a id <-> Id
nipkow
parents: 5536
diff changeset
   374
\        Id: acts |] \
5253
82a5ca6290aa New record type of programs
paulson
parents: 5239
diff changeset
   375
\     ==> leadsTo acts A B";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   376
by (rtac (wf_less_than RS leadsTo_wf_induct) 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   377
by (assume_tac 2);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   378
by (Asm_simp_tac 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   379
qed "lessThan_induct";
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   380
5253
82a5ca6290aa New record type of programs
paulson
parents: 5239
diff changeset
   381
Goal "[| ALL m:(greaterThan l). leadsTo acts (A Int f-``{m})   \
5239
2fd94efb9d64 Tidying
paulson
parents: 5232
diff changeset
   382
\                                  ((A Int f-``(lessThan m)) Un B);   \
5608
a82a038a3e7a id <-> Id
nipkow
parents: 5536
diff changeset
   383
\        Id: acts |] \
5253
82a5ca6290aa New record type of programs
paulson
parents: 5239
diff changeset
   384
\     ==> leadsTo acts A ((A Int (f-``(atMost l))) Un B)";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   385
by (simp_tac (HOL_ss addsimps [Diff_eq RS sym, vimage_Compl, Compl_greaterThan RS sym]) 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   386
by (rtac (wf_less_than RS bounded_induct) 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   387
by (assume_tac 2);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   388
by (Asm_simp_tac 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   389
qed "lessThan_bounded_induct";
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   390
5253
82a5ca6290aa New record type of programs
paulson
parents: 5239
diff changeset
   391
Goal "[| ALL m:(lessThan l). leadsTo acts (A Int f-``{m})   \
5239
2fd94efb9d64 Tidying
paulson
parents: 5232
diff changeset
   392
\                              ((A Int f-``(greaterThan m)) Un B);   \
5608
a82a038a3e7a id <-> Id
nipkow
parents: 5536
diff changeset
   393
\        Id: acts |] \
5253
82a5ca6290aa New record type of programs
paulson
parents: 5239
diff changeset
   394
\     ==> leadsTo acts A ((A Int (f-``(atLeast l))) Un B)";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   395
by (res_inst_tac [("f","f"),("f1", "%k. l - k")]
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   396
    (wf_less_than RS wf_inv_image RS leadsTo_wf_induct) 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   397
by (assume_tac 2);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   398
by (simp_tac (simpset() addsimps [inv_image_def, Image_singleton]) 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   399
by (Clarify_tac 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   400
by (case_tac "m<l" 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   401
by (blast_tac (claset() addIs [not_leE, subset_imp_leadsTo]) 2);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   402
by (blast_tac (claset() addIs [leadsTo_weaken_R, diff_less_mono2]) 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   403
qed "greaterThan_bounded_induct";
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   404
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   405
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   406
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   407
(*** wlt ****)
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   408
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   409
(*Misra's property W3*)
5253
82a5ca6290aa New record type of programs
paulson
parents: 5239
diff changeset
   410
Goalw [wlt_def] "leadsTo acts (wlt acts B) B";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   411
by (blast_tac (claset() addSIs [leadsTo_Union]) 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   412
qed "wlt_leadsTo";
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   413
5253
82a5ca6290aa New record type of programs
paulson
parents: 5239
diff changeset
   414
Goalw [wlt_def] "leadsTo acts A B ==> A <= wlt acts B";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   415
by (blast_tac (claset() addSIs [leadsTo_Union]) 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   416
qed "leadsTo_subset";
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   417
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   418
(*Misra's property W2*)
5608
a82a038a3e7a id <-> Id
nipkow
parents: 5536
diff changeset
   419
Goal "Id: acts ==> leadsTo acts A B = (A <= wlt acts B)";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   420
by (blast_tac (claset() addSIs [leadsTo_subset, 
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   421
				wlt_leadsTo RS leadsTo_weaken_L]) 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   422
qed "leadsTo_eq_subset_wlt";
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   423
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   424
(*Misra's property W4*)
5608
a82a038a3e7a id <-> Id
nipkow
parents: 5536
diff changeset
   425
Goal "Id: acts ==> B <= wlt acts B";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   426
by (asm_simp_tac (simpset() addsimps [leadsTo_eq_subset_wlt RS sym,
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   427
				      subset_imp_leadsTo]) 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   428
qed "wlt_increasing";
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   429
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   430
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   431
(*Used in the Trans case below*)
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4776
diff changeset
   432
Goalw [constrains_def]
5111
8f4b72f0c15d Uncurried functions LeadsTo and reach
paulson
parents: 5069
diff changeset
   433
   "[| B <= A2;  \
5253
82a5ca6290aa New record type of programs
paulson
parents: 5239
diff changeset
   434
\      constrains acts (A1 - B) (A1 Un B); \
82a5ca6290aa New record type of programs
paulson
parents: 5239
diff changeset
   435
\      constrains acts (A2 - C) (A2 Un C) |] \
82a5ca6290aa New record type of programs
paulson
parents: 5239
diff changeset
   436
\   ==> constrains acts (A1 Un A2 - C) (A1 Un A2 Un C)";
5521
7970832271cc added wrapper for bspec
oheimb
parents: 5490
diff changeset
   437
by(Blast_tac 1);
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   438
val lemma1 = result();
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   439
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   440
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   441
(*Lemma (1,2,3) of Misra's draft book, Chapter 4, "Progress"*)
5608
a82a038a3e7a id <-> Id
nipkow
parents: 5536
diff changeset
   442
Goal "[| leadsTo acts A A';  Id: acts |] ==> \
5253
82a5ca6290aa New record type of programs
paulson
parents: 5239
diff changeset
   443
\      EX B. A<=B & leadsTo acts B A' & constrains acts (B-A') (B Un A')";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   444
by (etac leadsTo_induct 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   445
(*Basis*)
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   446
by (blast_tac (claset() addIs [leadsTo_Basis]
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   447
                        addDs [ensuresD]) 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   448
(*Trans*)
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   449
by (Clarify_tac 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   450
by (res_inst_tac [("x", "Ba Un Bb")] exI 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   451
by (blast_tac (claset() addIs [lemma1, leadsTo_Un_Un, leadsTo_cancel1,
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   452
			       leadsTo_Un_duplicate]) 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   453
(*Union*)
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   454
by (clarify_tac (claset() addSDs [ball_conj_distrib RS iffD1,
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   455
				  bchoice, ball_constrains_UN]) 1);;
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   456
by (res_inst_tac [("x", "UN A:S. f A")] exI 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   457
by (blast_tac (claset() addIs [leadsTo_UN, constrains_weaken]) 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   458
qed "leadsTo_123";
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   459
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   460
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   461
(*Misra's property W5*)
5608
a82a038a3e7a id <-> Id
nipkow
parents: 5536
diff changeset
   462
Goal "Id: acts ==> constrains acts (wlt acts B - B) (wlt acts B)";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   463
by (forward_tac [wlt_leadsTo RS leadsTo_123] 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   464
by (Clarify_tac 1);
5253
82a5ca6290aa New record type of programs
paulson
parents: 5239
diff changeset
   465
by (subgoal_tac "Ba = wlt acts B" 1);
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   466
by (blast_tac (claset() addDs [leadsTo_eq_subset_wlt]) 2);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   467
by (Clarify_tac 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   468
by (asm_full_simp_tac (simpset() addsimps [wlt_increasing, Un_absorb2]) 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   469
qed "wlt_constrains_wlt";
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   470
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   471
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   472
(*** Completion: Binary and General Finite versions ***)
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   473
5253
82a5ca6290aa New record type of programs
paulson
parents: 5239
diff changeset
   474
Goal "[| leadsTo acts A A';  stable acts A';   \
5608
a82a038a3e7a id <-> Id
nipkow
parents: 5536
diff changeset
   475
\        leadsTo acts B B';  stable acts B';  Id: acts |] \
5253
82a5ca6290aa New record type of programs
paulson
parents: 5239
diff changeset
   476
\   ==> leadsTo acts (A Int B) (A' Int B')";
82a5ca6290aa New record type of programs
paulson
parents: 5239
diff changeset
   477
by (subgoal_tac "stable acts (wlt acts B')" 1);
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   478
by (asm_full_simp_tac (simpset() addsimps [stable_def]) 2);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   479
by (EVERY [etac (constrains_Un RS constrains_weaken) 2,
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   480
	   etac wlt_constrains_wlt 2,
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   481
	   fast_tac (claset() addEs [wlt_increasing RSN (2,rev_subsetD)]) 3,
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   482
	   Blast_tac 2]);
5253
82a5ca6290aa New record type of programs
paulson
parents: 5239
diff changeset
   483
by (subgoal_tac "leadsTo acts (A Int wlt acts B') (A' Int wlt acts B')" 1);
5277
e4297d03e5d2 A higher-level treatment of LeadsTo, minimizing use of "reachable"
paulson
parents: 5257
diff changeset
   484
by (blast_tac (claset() addIs [psp_stable]) 2);
5253
82a5ca6290aa New record type of programs
paulson
parents: 5239
diff changeset
   485
by (subgoal_tac "leadsTo acts (A' Int wlt acts B') (A' Int B')" 1);
5277
e4297d03e5d2 A higher-level treatment of LeadsTo, minimizing use of "reachable"
paulson
parents: 5257
diff changeset
   486
by (blast_tac (claset() addIs [wlt_leadsTo, psp_stable2]) 2);
5253
82a5ca6290aa New record type of programs
paulson
parents: 5239
diff changeset
   487
by (subgoal_tac "leadsTo acts (A Int B) (A Int wlt acts B')" 1);
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   488
by (blast_tac (claset() addIs [leadsTo_subset RS subsetD, 
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   489
			       subset_imp_leadsTo]) 2);
5479
5a5dfb0f0d7d fixed PROOF FAILED
paulson
parents: 5456
diff changeset
   490
by (blast_tac (claset() addIs [leadsTo_Trans]) 1);
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   491
qed "stable_completion";
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   492
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   493
5608
a82a038a3e7a id <-> Id
nipkow
parents: 5536
diff changeset
   494
Goal "[| finite I;  Id: acts |]                     \
5253
82a5ca6290aa New record type of programs
paulson
parents: 5239
diff changeset
   495
\   ==> (ALL i:I. leadsTo acts (A i) (A' i)) -->  \
82a5ca6290aa New record type of programs
paulson
parents: 5239
diff changeset
   496
\       (ALL i:I. stable acts (A' i)) -->         \
82a5ca6290aa New record type of programs
paulson
parents: 5239
diff changeset
   497
\       leadsTo acts (INT i:I. A i) (INT i:I. A' i)";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   498
by (etac finite_induct 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   499
by (Asm_simp_tac 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   500
by (asm_simp_tac 
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   501
    (simpset() addsimps [stable_completion, stable_def, 
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   502
			 ball_constrains_INT]) 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   503
qed_spec_mp "finite_stable_completion";
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   504
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   505
5253
82a5ca6290aa New record type of programs
paulson
parents: 5239
diff changeset
   506
Goal "[| W = wlt acts (B' Un C);     \
82a5ca6290aa New record type of programs
paulson
parents: 5239
diff changeset
   507
\      leadsTo acts A (A' Un C);  constrains acts A' (A' Un C);   \
82a5ca6290aa New record type of programs
paulson
parents: 5239
diff changeset
   508
\      leadsTo acts B (B' Un C);  constrains acts B' (B' Un C);   \
5608
a82a038a3e7a id <-> Id
nipkow
parents: 5536
diff changeset
   509
\      Id: acts |] \
5253
82a5ca6290aa New record type of programs
paulson
parents: 5239
diff changeset
   510
\   ==> leadsTo acts (A Int B) ((A' Int B') Un C)";
82a5ca6290aa New record type of programs
paulson
parents: 5239
diff changeset
   511
by (subgoal_tac "constrains acts (W-C) (W Un B' Un C)" 1);
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   512
by (blast_tac (claset() addIs [[asm_rl, wlt_constrains_wlt] 
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   513
			       MRS constrains_Un RS constrains_weaken]) 2);
5253
82a5ca6290aa New record type of programs
paulson
parents: 5239
diff changeset
   514
by (subgoal_tac "constrains acts (W-C) W" 1);
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   515
by (asm_full_simp_tac 
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   516
    (simpset() addsimps [wlt_increasing, Un_assoc, Un_absorb2]) 2);
5253
82a5ca6290aa New record type of programs
paulson
parents: 5239
diff changeset
   517
by (subgoal_tac "leadsTo acts (A Int W - C) (A' Int W Un C)" 1);
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   518
by (simp_tac (simpset() addsimps [Int_Diff]) 2);
5277
e4297d03e5d2 A higher-level treatment of LeadsTo, minimizing use of "reachable"
paulson
parents: 5257
diff changeset
   519
by (blast_tac (claset() addIs [wlt_leadsTo, psp RS leadsTo_weaken_R]) 2);
5456
paulson
parents: 5340
diff changeset
   520
(** LEVEL 7 **)
5253
82a5ca6290aa New record type of programs
paulson
parents: 5239
diff changeset
   521
by (subgoal_tac "leadsTo acts (A' Int W Un C) (A' Int B' Un C)" 1);
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   522
by (blast_tac (claset() addIs [wlt_leadsTo, leadsTo_Un_Un, 
5277
e4297d03e5d2 A higher-level treatment of LeadsTo, minimizing use of "reachable"
paulson
parents: 5257
diff changeset
   523
                               psp2 RS leadsTo_weaken_R, 
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   524
			       subset_refl RS subset_imp_leadsTo, 
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   525
			       leadsTo_Un_duplicate2]) 2);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   526
by (dtac leadsTo_Diff 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   527
by (assume_tac 2);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   528
by (blast_tac (claset() addIs [subset_imp_leadsTo]) 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   529
by (subgoal_tac "A Int B <= A Int W" 1);
5456
paulson
parents: 5340
diff changeset
   530
by (blast_tac (claset() addSDs [leadsTo_subset]
paulson
parents: 5340
diff changeset
   531
			addSIs [subset_refl RS Int_mono]) 2);
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   532
by (blast_tac (claset() addIs [leadsTo_Trans, subset_imp_leadsTo]) 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   533
bind_thm("completion", refl RS result());
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   534
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   535
5608
a82a038a3e7a id <-> Id
nipkow
parents: 5536
diff changeset
   536
Goal "[| finite I;  Id: acts |] \
5253
82a5ca6290aa New record type of programs
paulson
parents: 5239
diff changeset
   537
\   ==> (ALL i:I. leadsTo acts (A i) (A' i Un C)) -->  \
82a5ca6290aa New record type of programs
paulson
parents: 5239
diff changeset
   538
\       (ALL i:I. constrains acts (A' i) (A' i Un C)) --> \
82a5ca6290aa New record type of programs
paulson
parents: 5239
diff changeset
   539
\       leadsTo acts (INT i:I. A i) ((INT i:I. A' i) Un C)";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   540
by (etac finite_induct 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   541
by (ALLGOALS Asm_simp_tac);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   542
by (Clarify_tac 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   543
by (dtac ball_constrains_INT 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   544
by (asm_full_simp_tac (simpset() addsimps [completion]) 1); 
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   545
qed "finite_completion";
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   546