src/HOL/UNITY/Union.ML
author paulson
Wed, 27 Oct 1999 13:03:32 +0200
changeset 7947 b999c1ab9327
parent 7915 c7fd7eb3b0ef
child 7964 6b3e345c47b3
permissions -rw-r--r--
working again; new treatment of LocalTo
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
5252
1b0f14d11142 Union primitives and examples
paulson
parents:
diff changeset
     1
(*  Title:      HOL/UNITY/Union.ML
1b0f14d11142 Union primitives and examples
paulson
parents:
diff changeset
     2
    ID:         $Id$
1b0f14d11142 Union primitives and examples
paulson
parents:
diff changeset
     3
    Author:     Lawrence C Paulson, Cambridge University Computer Laboratory
1b0f14d11142 Union primitives and examples
paulson
parents:
diff changeset
     4
    Copyright   1998  University of Cambridge
1b0f14d11142 Union primitives and examples
paulson
parents:
diff changeset
     5
1b0f14d11142 Union primitives and examples
paulson
parents:
diff changeset
     6
Unions of programs
1b0f14d11142 Union primitives and examples
paulson
parents:
diff changeset
     7
1b0f14d11142 Union primitives and examples
paulson
parents:
diff changeset
     8
From Misra's Chapter 5: Asynchronous Compositions of Programs
1b0f14d11142 Union primitives and examples
paulson
parents:
diff changeset
     9
*)
1b0f14d11142 Union primitives and examples
paulson
parents:
diff changeset
    10
6012
1894bfc4aee9 Addition of the States component; parts of Comp not working
paulson
parents: 5970
diff changeset
    11
Addcongs [UN_cong, INT_cong];
5252
1b0f14d11142 Union primitives and examples
paulson
parents:
diff changeset
    12
6295
351b3c2b0d83 removed the infernal States, eqStates, compatible, etc.
paulson
parents: 6019
diff changeset
    13
5867
1c4806b4bf43 generalized JN_empty and added reachable_SKIP
paulson
parents: 5804
diff changeset
    14
(** SKIP **)
1c4806b4bf43 generalized JN_empty and added reachable_SKIP
paulson
parents: 5804
diff changeset
    15
6295
351b3c2b0d83 removed the infernal States, eqStates, compatible, etc.
paulson
parents: 6019
diff changeset
    16
Goal "Init SKIP = UNIV";
5648
fe887910e32e specifications as sets of programs
paulson
parents: 5639
diff changeset
    17
by (simp_tac (simpset() addsimps [SKIP_def]) 1);
5611
6957f124ca97 Join now an infix operator
paulson
parents: 5608
diff changeset
    18
qed "Init_SKIP";
6957f124ca97 Join now an infix operator
paulson
parents: 5608
diff changeset
    19
6295
351b3c2b0d83 removed the infernal States, eqStates, compatible, etc.
paulson
parents: 6019
diff changeset
    20
Goal "Acts SKIP = {Id}";
5648
fe887910e32e specifications as sets of programs
paulson
parents: 5639
diff changeset
    21
by (simp_tac (simpset() addsimps [SKIP_def]) 1);
fe887910e32e specifications as sets of programs
paulson
parents: 5639
diff changeset
    22
qed "Acts_SKIP";
fe887910e32e specifications as sets of programs
paulson
parents: 5639
diff changeset
    23
6295
351b3c2b0d83 removed the infernal States, eqStates, compatible, etc.
paulson
parents: 6019
diff changeset
    24
Addsimps [Init_SKIP, Acts_SKIP];
5648
fe887910e32e specifications as sets of programs
paulson
parents: 5639
diff changeset
    25
6295
351b3c2b0d83 removed the infernal States, eqStates, compatible, etc.
paulson
parents: 6019
diff changeset
    26
Goal "reachable SKIP = UNIV";
6012
1894bfc4aee9 Addition of the States component; parts of Comp not working
paulson
parents: 5970
diff changeset
    27
by (force_tac (claset() addEs [reachable.induct]
1894bfc4aee9 Addition of the States component; parts of Comp not working
paulson
parents: 5970
diff changeset
    28
			addIs reachable.intrs, simpset()) 1);
5867
1c4806b4bf43 generalized JN_empty and added reachable_SKIP
paulson
parents: 5804
diff changeset
    29
qed "reachable_SKIP";
1c4806b4bf43 generalized JN_empty and added reachable_SKIP
paulson
parents: 5804
diff changeset
    30
1c4806b4bf43 generalized JN_empty and added reachable_SKIP
paulson
parents: 5804
diff changeset
    31
Addsimps [reachable_SKIP];
1c4806b4bf43 generalized JN_empty and added reachable_SKIP
paulson
parents: 5804
diff changeset
    32
6836
0b06eac56dd5 new results about SKIP
paulson
parents: 6633
diff changeset
    33
(** SKIP and safety properties **)
0b06eac56dd5 new results about SKIP
paulson
parents: 6633
diff changeset
    34
0b06eac56dd5 new results about SKIP
paulson
parents: 6633
diff changeset
    35
Goalw [constrains_def] "(SKIP : A co B) = (A<=B)";
0b06eac56dd5 new results about SKIP
paulson
parents: 6633
diff changeset
    36
by Auto_tac;
0b06eac56dd5 new results about SKIP
paulson
parents: 6633
diff changeset
    37
qed "SKIP_in_constrains_iff";
0b06eac56dd5 new results about SKIP
paulson
parents: 6633
diff changeset
    38
AddIffs [SKIP_in_constrains_iff];
0b06eac56dd5 new results about SKIP
paulson
parents: 6633
diff changeset
    39
0b06eac56dd5 new results about SKIP
paulson
parents: 6633
diff changeset
    40
Goalw [Constrains_def] "(SKIP : A Co B) = (A<=B)";
0b06eac56dd5 new results about SKIP
paulson
parents: 6633
diff changeset
    41
by Auto_tac;
0b06eac56dd5 new results about SKIP
paulson
parents: 6633
diff changeset
    42
qed "SKIP_in_Constrains_iff";
0b06eac56dd5 new results about SKIP
paulson
parents: 6633
diff changeset
    43
AddIffs [SKIP_in_Constrains_iff];
0b06eac56dd5 new results about SKIP
paulson
parents: 6633
diff changeset
    44
0b06eac56dd5 new results about SKIP
paulson
parents: 6633
diff changeset
    45
Goalw [stable_def] "SKIP : stable A";
0b06eac56dd5 new results about SKIP
paulson
parents: 6633
diff changeset
    46
by Auto_tac;
0b06eac56dd5 new results about SKIP
paulson
parents: 6633
diff changeset
    47
qed "SKIP_in_stable";
0b06eac56dd5 new results about SKIP
paulson
parents: 6633
diff changeset
    48
AddIffs [SKIP_in_stable, SKIP_in_stable RS stable_imp_Stable];
0b06eac56dd5 new results about SKIP
paulson
parents: 6633
diff changeset
    49
5867
1c4806b4bf43 generalized JN_empty and added reachable_SKIP
paulson
parents: 5804
diff changeset
    50
6012
1894bfc4aee9 Addition of the States component; parts of Comp not working
paulson
parents: 5970
diff changeset
    51
(** Join **)
1894bfc4aee9 Addition of the States component; parts of Comp not working
paulson
parents: 5970
diff changeset
    52
6295
351b3c2b0d83 removed the infernal States, eqStates, compatible, etc.
paulson
parents: 6019
diff changeset
    53
Goal "Init (F Join G) = Init F Int Init G";
6012
1894bfc4aee9 Addition of the States component; parts of Comp not working
paulson
parents: 5970
diff changeset
    54
by (simp_tac (simpset() addsimps [Join_def]) 1);
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents: 5259
diff changeset
    55
qed "Init_Join";
5252
1b0f14d11142 Union primitives and examples
paulson
parents:
diff changeset
    56
6295
351b3c2b0d83 removed the infernal States, eqStates, compatible, etc.
paulson
parents: 6019
diff changeset
    57
Goal "Acts (F Join G) = Acts F Un Acts G";
5596
b29d18d8c4d2 abstype of programs
paulson
parents: 5584
diff changeset
    58
by (auto_tac (claset(), simpset() addsimps [Join_def]));
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents: 5259
diff changeset
    59
qed "Acts_Join";
5252
1b0f14d11142 Union primitives and examples
paulson
parents:
diff changeset
    60
7537
875754b599df working snapshot
paulson
parents: 7523
diff changeset
    61
Addsimps [Init_Join, Acts_Join];
6295
351b3c2b0d83 removed the infernal States, eqStates, compatible, etc.
paulson
parents: 6019
diff changeset
    62
6012
1894bfc4aee9 Addition of the States component; parts of Comp not working
paulson
parents: 5970
diff changeset
    63
1894bfc4aee9 Addition of the States component; parts of Comp not working
paulson
parents: 5970
diff changeset
    64
(** JN **)
1894bfc4aee9 Addition of the States component; parts of Comp not working
paulson
parents: 5970
diff changeset
    65
6295
351b3c2b0d83 removed the infernal States, eqStates, compatible, etc.
paulson
parents: 6019
diff changeset
    66
Goalw [JOIN_def, SKIP_def] "(JN i:{}. F i) = SKIP";
6012
1894bfc4aee9 Addition of the States component; parts of Comp not working
paulson
parents: 5970
diff changeset
    67
by Auto_tac;
1894bfc4aee9 Addition of the States component; parts of Comp not working
paulson
parents: 5970
diff changeset
    68
qed "JN_empty";
1894bfc4aee9 Addition of the States component; parts of Comp not working
paulson
parents: 5970
diff changeset
    69
Addsimps [JN_empty];
1894bfc4aee9 Addition of the States component; parts of Comp not working
paulson
parents: 5970
diff changeset
    70
6633
2ed30ebd7e31 new comments, variable renaming, etc
paulson
parents: 6570
diff changeset
    71
Goal "(JN i:insert a I. F i) = (F a) Join (JN i:I. F i)";
6295
351b3c2b0d83 removed the infernal States, eqStates, compatible, etc.
paulson
parents: 6019
diff changeset
    72
by (rtac program_equalityI 1);
351b3c2b0d83 removed the infernal States, eqStates, compatible, etc.
paulson
parents: 6019
diff changeset
    73
by (ALLGOALS (simp_tac (simpset() addsimps [JOIN_def, Join_def])));
351b3c2b0d83 removed the infernal States, eqStates, compatible, etc.
paulson
parents: 6019
diff changeset
    74
qed "JN_insert";
351b3c2b0d83 removed the infernal States, eqStates, compatible, etc.
paulson
parents: 6019
diff changeset
    75
Addsimps[JN_empty, JN_insert];
6012
1894bfc4aee9 Addition of the States component; parts of Comp not working
paulson
parents: 5970
diff changeset
    76
5611
6957f124ca97 Join now an infix operator
paulson
parents: 5608
diff changeset
    77
Goal "Init (JN i:I. F i) = (INT i:I. Init (F i))";
6295
351b3c2b0d83 removed the infernal States, eqStates, compatible, etc.
paulson
parents: 6019
diff changeset
    78
by (simp_tac (simpset() addsimps [JOIN_def]) 1);
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents: 5259
diff changeset
    79
qed "Init_JN";
5252
1b0f14d11142 Union primitives and examples
paulson
parents:
diff changeset
    80
6295
351b3c2b0d83 removed the infernal States, eqStates, compatible, etc.
paulson
parents: 6019
diff changeset
    81
Goal "Acts (JN i:I. F i) = insert Id (UN i:I. Acts (F i))";
5596
b29d18d8c4d2 abstype of programs
paulson
parents: 5584
diff changeset
    82
by (auto_tac (claset(), simpset() addsimps [JOIN_def]));
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents: 5259
diff changeset
    83
qed "Acts_JN";
5252
1b0f14d11142 Union primitives and examples
paulson
parents:
diff changeset
    84
7537
875754b599df working snapshot
paulson
parents: 7523
diff changeset
    85
Addsimps [Init_JN, Acts_JN];
5867
1c4806b4bf43 generalized JN_empty and added reachable_SKIP
paulson
parents: 5804
diff changeset
    86
6295
351b3c2b0d83 removed the infernal States, eqStates, compatible, etc.
paulson
parents: 6019
diff changeset
    87
val prems = Goalw [JOIN_def]
6633
2ed30ebd7e31 new comments, variable renaming, etc
paulson
parents: 6570
diff changeset
    88
    "[| I=J;  !!i. i:J ==> F i = G i |] ==> \
2ed30ebd7e31 new comments, variable renaming, etc
paulson
parents: 6570
diff changeset
    89
\    (JN i:I. F i) = (JN i:J. G i)";
6295
351b3c2b0d83 removed the infernal States, eqStates, compatible, etc.
paulson
parents: 6019
diff changeset
    90
by (asm_simp_tac (simpset() addsimps prems) 1);
351b3c2b0d83 removed the infernal States, eqStates, compatible, etc.
paulson
parents: 6019
diff changeset
    91
qed "JN_cong";
6012
1894bfc4aee9 Addition of the States component; parts of Comp not working
paulson
parents: 5970
diff changeset
    92
6295
351b3c2b0d83 removed the infernal States, eqStates, compatible, etc.
paulson
parents: 6019
diff changeset
    93
Addcongs [JN_cong];
5584
aad639e56d4e Now id:(Acts prg) is implicit
paulson
parents: 5426
diff changeset
    94
aad639e56d4e Now id:(Acts prg) is implicit
paulson
parents: 5426
diff changeset
    95
5611
6957f124ca97 Join now an infix operator
paulson
parents: 5608
diff changeset
    96
(** Algebraic laws **)
5259
86d80749453f Null program and a few new results
paulson
parents: 5252
diff changeset
    97
5611
6957f124ca97 Join now an infix operator
paulson
parents: 5608
diff changeset
    98
Goal "F Join G = G Join F";
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents: 5259
diff changeset
    99
by (simp_tac (simpset() addsimps [Join_def, Un_commute, Int_commute]) 1);
5259
86d80749453f Null program and a few new results
paulson
parents: 5252
diff changeset
   100
qed "Join_commute";
86d80749453f Null program and a few new results
paulson
parents: 5252
diff changeset
   101
7360
7d3136b9af08 more Join rules including AC-rules
paulson
parents: 6836
diff changeset
   102
Goal "A Join (B Join C) = B Join (A Join C)";
7d3136b9af08 more Join rules including AC-rules
paulson
parents: 6836
diff changeset
   103
by (simp_tac (simpset() addsimps Un_ac@Int_ac@[Join_def]) 1);
7d3136b9af08 more Join rules including AC-rules
paulson
parents: 6836
diff changeset
   104
qed "Join_left_commute";
7d3136b9af08 more Join rules including AC-rules
paulson
parents: 6836
diff changeset
   105
5611
6957f124ca97 Join now an infix operator
paulson
parents: 5608
diff changeset
   106
Goal "(F Join G) Join H = F Join (G Join H)";
6295
351b3c2b0d83 removed the infernal States, eqStates, compatible, etc.
paulson
parents: 6019
diff changeset
   107
by (simp_tac (simpset() addsimps Un_ac@[Join_def, Int_assoc]) 1);
5259
86d80749453f Null program and a few new results
paulson
parents: 5252
diff changeset
   108
qed "Join_assoc";
5596
b29d18d8c4d2 abstype of programs
paulson
parents: 5584
diff changeset
   109
 
6295
351b3c2b0d83 removed the infernal States, eqStates, compatible, etc.
paulson
parents: 6019
diff changeset
   110
Goalw [Join_def, SKIP_def] "SKIP Join F = F";
5611
6957f124ca97 Join now an infix operator
paulson
parents: 5608
diff changeset
   111
by (rtac program_equalityI 1);
6295
351b3c2b0d83 removed the infernal States, eqStates, compatible, etc.
paulson
parents: 6019
diff changeset
   112
by (ALLGOALS (simp_tac (simpset() addsimps [insert_absorb])));
5611
6957f124ca97 Join now an infix operator
paulson
parents: 5608
diff changeset
   113
qed "Join_SKIP_left";
5584
aad639e56d4e Now id:(Acts prg) is implicit
paulson
parents: 5426
diff changeset
   114
6295
351b3c2b0d83 removed the infernal States, eqStates, compatible, etc.
paulson
parents: 6019
diff changeset
   115
Goalw [Join_def, SKIP_def] "F Join SKIP = F";
351b3c2b0d83 removed the infernal States, eqStates, compatible, etc.
paulson
parents: 6019
diff changeset
   116
by (rtac program_equalityI 1);
351b3c2b0d83 removed the infernal States, eqStates, compatible, etc.
paulson
parents: 6019
diff changeset
   117
by (ALLGOALS (simp_tac (simpset() addsimps [insert_absorb])));
5611
6957f124ca97 Join now an infix operator
paulson
parents: 5608
diff changeset
   118
qed "Join_SKIP_right";
6957f124ca97 Join now an infix operator
paulson
parents: 5608
diff changeset
   119
6957f124ca97 Join now an infix operator
paulson
parents: 5608
diff changeset
   120
Addsimps [Join_SKIP_left, Join_SKIP_right];
6957f124ca97 Join now an infix operator
paulson
parents: 5608
diff changeset
   121
6957f124ca97 Join now an infix operator
paulson
parents: 5608
diff changeset
   122
Goalw [Join_def] "F Join F = F";
6957f124ca97 Join now an infix operator
paulson
parents: 5608
diff changeset
   123
by (rtac program_equalityI 1);
6295
351b3c2b0d83 removed the infernal States, eqStates, compatible, etc.
paulson
parents: 6019
diff changeset
   124
by Auto_tac;
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents: 5259
diff changeset
   125
qed "Join_absorb";
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents: 5259
diff changeset
   126
5611
6957f124ca97 Join now an infix operator
paulson
parents: 5608
diff changeset
   127
Addsimps [Join_absorb];
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents: 5259
diff changeset
   128
7915
c7fd7eb3b0ef ALMOST working version: LocalTo results commented out
paulson
parents: 7878
diff changeset
   129
Goalw [Join_def] "F Join (F Join G) = F Join G";
7360
7d3136b9af08 more Join rules including AC-rules
paulson
parents: 6836
diff changeset
   130
by (rtac program_equalityI 1);
7d3136b9af08 more Join rules including AC-rules
paulson
parents: 6836
diff changeset
   131
by Auto_tac;
7d3136b9af08 more Join rules including AC-rules
paulson
parents: 6836
diff changeset
   132
qed "Join_left_absorb";
7d3136b9af08 more Join rules including AC-rules
paulson
parents: 6836
diff changeset
   133
7d3136b9af08 more Join rules including AC-rules
paulson
parents: 6836
diff changeset
   134
(*Join is an AC-operator*)
7d3136b9af08 more Join rules including AC-rules
paulson
parents: 6836
diff changeset
   135
val Join_ac = [Join_assoc, Join_left_absorb, Join_commute, Join_left_commute];
6295
351b3c2b0d83 removed the infernal States, eqStates, compatible, etc.
paulson
parents: 6019
diff changeset
   136
351b3c2b0d83 removed the infernal States, eqStates, compatible, etc.
paulson
parents: 6019
diff changeset
   137
351b3c2b0d83 removed the infernal States, eqStates, compatible, etc.
paulson
parents: 6019
diff changeset
   138
(*** JN laws ***)
351b3c2b0d83 removed the infernal States, eqStates, compatible, etc.
paulson
parents: 6019
diff changeset
   139
6633
2ed30ebd7e31 new comments, variable renaming, etc
paulson
parents: 6570
diff changeset
   140
(*Also follows by JN_insert and insert_absorb, but the proof is longer*)
2ed30ebd7e31 new comments, variable renaming, etc
paulson
parents: 6570
diff changeset
   141
Goal "k:I ==> F k Join (JN i:I. F i) = (JN i:I. F i)";
7537
875754b599df working snapshot
paulson
parents: 7523
diff changeset
   142
by (auto_tac (claset() addSIs [program_equalityI], simpset()));
6295
351b3c2b0d83 removed the infernal States, eqStates, compatible, etc.
paulson
parents: 6019
diff changeset
   143
qed "JN_absorb";
351b3c2b0d83 removed the infernal States, eqStates, compatible, etc.
paulson
parents: 6019
diff changeset
   144
6633
2ed30ebd7e31 new comments, variable renaming, etc
paulson
parents: 6570
diff changeset
   145
Goal "(JN i: I Un J. F i) = ((JN i: I. F i) Join (JN i:J. F i))";
7537
875754b599df working snapshot
paulson
parents: 7523
diff changeset
   146
by (auto_tac (claset() addSIs [program_equalityI], simpset()));
6633
2ed30ebd7e31 new comments, variable renaming, etc
paulson
parents: 6570
diff changeset
   147
qed "JN_Un";
5970
44ff61e1fe82 new thms for invariant
paulson
parents: 5898
diff changeset
   148
6836
0b06eac56dd5 new results about SKIP
paulson
parents: 6633
diff changeset
   149
Goal "(JN i:I. c) = (if I={} then SKIP else c)";
7537
875754b599df working snapshot
paulson
parents: 7523
diff changeset
   150
by (auto_tac (claset() addSIs [program_equalityI], simpset()));
5970
44ff61e1fe82 new thms for invariant
paulson
parents: 5898
diff changeset
   151
qed "JN_constant";
44ff61e1fe82 new thms for invariant
paulson
parents: 5898
diff changeset
   152
6633
2ed30ebd7e31 new comments, variable renaming, etc
paulson
parents: 6570
diff changeset
   153
Goal "(JN i:I. F i Join G i) = (JN i:I. F i)  Join  (JN i:I. G i)";
7537
875754b599df working snapshot
paulson
parents: 7523
diff changeset
   154
by (auto_tac (claset() addSIs [program_equalityI], simpset()));
5970
44ff61e1fe82 new thms for invariant
paulson
parents: 5898
diff changeset
   155
qed "JN_Join_distrib";
5584
aad639e56d4e Now id:(Acts prg) is implicit
paulson
parents: 5426
diff changeset
   156
6633
2ed30ebd7e31 new comments, variable renaming, etc
paulson
parents: 6570
diff changeset
   157
Goal "i : I ==> (JN i:I. F i Join G) = ((JN i:I. F i) Join G)";
2ed30ebd7e31 new comments, variable renaming, etc
paulson
parents: 6570
diff changeset
   158
by (asm_simp_tac (simpset() addsimps [JN_Join_distrib, JN_constant]) 1);
6836
0b06eac56dd5 new results about SKIP
paulson
parents: 6633
diff changeset
   159
by Auto_tac;
6633
2ed30ebd7e31 new comments, variable renaming, etc
paulson
parents: 6570
diff changeset
   160
qed "JN_Join_miniscope";
2ed30ebd7e31 new comments, variable renaming, etc
paulson
parents: 6570
diff changeset
   161
5584
aad639e56d4e Now id:(Acts prg) is implicit
paulson
parents: 5426
diff changeset
   162
6536
281d44905cab made many specification operators infix
paulson
parents: 6309
diff changeset
   163
(*** Safety: co, stable, FP ***)
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents: 5259
diff changeset
   164
6633
2ed30ebd7e31 new comments, variable renaming, etc
paulson
parents: 6570
diff changeset
   165
(*Fails if I={} because it collapses to SKIP : A co B*)
6295
351b3c2b0d83 removed the infernal States, eqStates, compatible, etc.
paulson
parents: 6019
diff changeset
   166
Goalw [constrains_def, JOIN_def]
6633
2ed30ebd7e31 new comments, variable renaming, etc
paulson
parents: 6570
diff changeset
   167
    "i : I ==> (JN i:I. F i) : A co B = (ALL i:I. F i : A co B)";
6295
351b3c2b0d83 removed the infernal States, eqStates, compatible, etc.
paulson
parents: 6019
diff changeset
   168
by (Simp_tac 1);
351b3c2b0d83 removed the infernal States, eqStates, compatible, etc.
paulson
parents: 6019
diff changeset
   169
by (Blast_tac 1);
7523
3a716ebc2fc0 more rational theorem names (?)
paulson
parents: 7360
diff changeset
   170
qed "JN_constrains";
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents: 5259
diff changeset
   171
6633
2ed30ebd7e31 new comments, variable renaming, etc
paulson
parents: 6570
diff changeset
   172
Goal "(F Join G : A co B) = (F : A co B & G : A co B)";
6295
351b3c2b0d83 removed the infernal States, eqStates, compatible, etc.
paulson
parents: 6019
diff changeset
   173
by (auto_tac
351b3c2b0d83 removed the infernal States, eqStates, compatible, etc.
paulson
parents: 6019
diff changeset
   174
    (claset(),
351b3c2b0d83 removed the infernal States, eqStates, compatible, etc.
paulson
parents: 6019
diff changeset
   175
     simpset() addsimps [constrains_def, Join_def]));
7523
3a716ebc2fc0 more rational theorem names (?)
paulson
parents: 7360
diff changeset
   176
qed "Join_constrains";
5620
3ac11c4af76a tidying and renaming
paulson
parents: 5611
diff changeset
   177
6633
2ed30ebd7e31 new comments, variable renaming, etc
paulson
parents: 6570
diff changeset
   178
(*Analogous weak versions FAIL; see Misra [1994] 5.4.1, Substitution Axiom.
2ed30ebd7e31 new comments, variable renaming, etc
paulson
parents: 6570
diff changeset
   179
  reachable (F Join G) could be much bigger than reachable F, reachable G
2ed30ebd7e31 new comments, variable renaming, etc
paulson
parents: 6570
diff changeset
   180
*)
6012
1894bfc4aee9 Addition of the States component; parts of Comp not working
paulson
parents: 5970
diff changeset
   181
6295
351b3c2b0d83 removed the infernal States, eqStates, compatible, etc.
paulson
parents: 6019
diff changeset
   182
6536
281d44905cab made many specification operators infix
paulson
parents: 6309
diff changeset
   183
Goal "[| F : A co A';  G : B co B' |] \
281d44905cab made many specification operators infix
paulson
parents: 6309
diff changeset
   184
\     ==> F Join G : (A Int B) co (A' Un B')";
7523
3a716ebc2fc0 more rational theorem names (?)
paulson
parents: 7360
diff changeset
   185
by (simp_tac (simpset() addsimps [Join_constrains]) 1);
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents: 5259
diff changeset
   186
by (blast_tac (claset() addIs [constrains_weaken]) 1);
7523
3a716ebc2fc0 more rational theorem names (?)
paulson
parents: 7360
diff changeset
   187
qed "Join_constrains_weaken";
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents: 5259
diff changeset
   188
6633
2ed30ebd7e31 new comments, variable renaming, etc
paulson
parents: 6570
diff changeset
   189
Goal "[| ALL i:I. F i : A i co A' i;  i: I |] \
2ed30ebd7e31 new comments, variable renaming, etc
paulson
parents: 6570
diff changeset
   190
\     ==> (JN i:I. F i) : (INT i:I. A i) co (UN i:I. A' i)";
7523
3a716ebc2fc0 more rational theorem names (?)
paulson
parents: 7360
diff changeset
   191
by (asm_simp_tac (simpset() addsimps [JN_constrains]) 1);
6633
2ed30ebd7e31 new comments, variable renaming, etc
paulson
parents: 6570
diff changeset
   192
by (blast_tac (claset() addIs [constrains_weaken]) 1);
7523
3a716ebc2fc0 more rational theorem names (?)
paulson
parents: 7360
diff changeset
   193
qed "JN_constrains_weaken";
6633
2ed30ebd7e31 new comments, variable renaming, etc
paulson
parents: 6570
diff changeset
   194
6295
351b3c2b0d83 removed the infernal States, eqStates, compatible, etc.
paulson
parents: 6019
diff changeset
   195
Goal "i : I ==> \
351b3c2b0d83 removed the infernal States, eqStates, compatible, etc.
paulson
parents: 6019
diff changeset
   196
\     (JN i:I. F i) : stable A = (ALL i:I. F i : stable A)";
7523
3a716ebc2fc0 more rational theorem names (?)
paulson
parents: 7360
diff changeset
   197
by (asm_simp_tac (simpset() addsimps [stable_def, JN_constrains]) 1);
3a716ebc2fc0 more rational theorem names (?)
paulson
parents: 7360
diff changeset
   198
qed "JN_stable";
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents: 5259
diff changeset
   199
6295
351b3c2b0d83 removed the infernal States, eqStates, compatible, etc.
paulson
parents: 6019
diff changeset
   200
Goal "[| ALL i:I. F i : invariant A;  i : I |]  \
5970
44ff61e1fe82 new thms for invariant
paulson
parents: 5898
diff changeset
   201
\      ==> (JN i:I. F i) : invariant A";
7523
3a716ebc2fc0 more rational theorem names (?)
paulson
parents: 7360
diff changeset
   202
by (asm_full_simp_tac (simpset() addsimps [invariant_def, JN_stable]) 1);
5970
44ff61e1fe82 new thms for invariant
paulson
parents: 5898
diff changeset
   203
by (Blast_tac 1);
44ff61e1fe82 new thms for invariant
paulson
parents: 5898
diff changeset
   204
bind_thm ("invariant_JN_I", ballI RS result());
44ff61e1fe82 new thms for invariant
paulson
parents: 5898
diff changeset
   205
7594
8a188ef6545e working version with co-guarantees-leadsto results
paulson
parents: 7537
diff changeset
   206
Goal "(F Join G : stable A) = \
6295
351b3c2b0d83 removed the infernal States, eqStates, compatible, etc.
paulson
parents: 6019
diff changeset
   207
\     (F : stable A & G : stable A)";
7523
3a716ebc2fc0 more rational theorem names (?)
paulson
parents: 7360
diff changeset
   208
by (simp_tac (simpset() addsimps [stable_def, Join_constrains]) 1);
3a716ebc2fc0 more rational theorem names (?)
paulson
parents: 7360
diff changeset
   209
qed "Join_stable";
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents: 5259
diff changeset
   210
7594
8a188ef6545e working version with co-guarantees-leadsto results
paulson
parents: 7537
diff changeset
   211
Goal "(F Join G : increasing f) = \
8a188ef6545e working version with co-guarantees-leadsto results
paulson
parents: 7537
diff changeset
   212
\     (F : increasing f & G : increasing f)";
8a188ef6545e working version with co-guarantees-leadsto results
paulson
parents: 7537
diff changeset
   213
by (simp_tac (simpset() addsimps [increasing_def, Join_stable]) 1);
8a188ef6545e working version with co-guarantees-leadsto results
paulson
parents: 7537
diff changeset
   214
by (Blast_tac 1);
8a188ef6545e working version with co-guarantees-leadsto results
paulson
parents: 7537
diff changeset
   215
qed "Join_increasing";
8a188ef6545e working version with co-guarantees-leadsto results
paulson
parents: 7537
diff changeset
   216
6295
351b3c2b0d83 removed the infernal States, eqStates, compatible, etc.
paulson
parents: 6019
diff changeset
   217
Goal "[| F : invariant A; G : invariant A |]  \
5970
44ff61e1fe82 new thms for invariant
paulson
parents: 5898
diff changeset
   218
\     ==> F Join G : invariant A";
7523
3a716ebc2fc0 more rational theorem names (?)
paulson
parents: 7360
diff changeset
   219
by (full_simp_tac (simpset() addsimps [invariant_def, Join_stable]) 1);
5970
44ff61e1fe82 new thms for invariant
paulson
parents: 5898
diff changeset
   220
by (Blast_tac 1);
44ff61e1fe82 new thms for invariant
paulson
parents: 5898
diff changeset
   221
qed "invariant_JoinI";
44ff61e1fe82 new thms for invariant
paulson
parents: 5898
diff changeset
   222
6295
351b3c2b0d83 removed the infernal States, eqStates, compatible, etc.
paulson
parents: 6019
diff changeset
   223
Goal "i : I ==> FP (JN i:I. F i) = (INT i:I. FP (F i))";
7523
3a716ebc2fc0 more rational theorem names (?)
paulson
parents: 7360
diff changeset
   224
by (asm_simp_tac (simpset() addsimps [FP_def, JN_stable, INTER_def]) 1);
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents: 5259
diff changeset
   225
qed "FP_JN";
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents: 5259
diff changeset
   226
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents: 5259
diff changeset
   227
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents: 5259
diff changeset
   228
(*** Progress: transient, ensures ***)
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents: 5259
diff changeset
   229
6295
351b3c2b0d83 removed the infernal States, eqStates, compatible, etc.
paulson
parents: 6019
diff changeset
   230
Goal "i : I ==> \
351b3c2b0d83 removed the infernal States, eqStates, compatible, etc.
paulson
parents: 6019
diff changeset
   231
\   (JN i:I. F i) : transient A = (EX i:I. F i : transient A)";
351b3c2b0d83 removed the infernal States, eqStates, compatible, etc.
paulson
parents: 6019
diff changeset
   232
by (auto_tac (claset(),
351b3c2b0d83 removed the infernal States, eqStates, compatible, etc.
paulson
parents: 6019
diff changeset
   233
	      simpset() addsimps [transient_def, JOIN_def]));
7523
3a716ebc2fc0 more rational theorem names (?)
paulson
parents: 7360
diff changeset
   234
qed "JN_transient";
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents: 5259
diff changeset
   235
6295
351b3c2b0d83 removed the infernal States, eqStates, compatible, etc.
paulson
parents: 6019
diff changeset
   236
Goal "F Join G : transient A = \
351b3c2b0d83 removed the infernal States, eqStates, compatible, etc.
paulson
parents: 6019
diff changeset
   237
\     (F : transient A | G : transient A)";
351b3c2b0d83 removed the infernal States, eqStates, compatible, etc.
paulson
parents: 6019
diff changeset
   238
by (auto_tac (claset(),
351b3c2b0d83 removed the infernal States, eqStates, compatible, etc.
paulson
parents: 6019
diff changeset
   239
	      simpset() addsimps [bex_Un, transient_def,
351b3c2b0d83 removed the infernal States, eqStates, compatible, etc.
paulson
parents: 6019
diff changeset
   240
				  Join_def]));
7523
3a716ebc2fc0 more rational theorem names (?)
paulson
parents: 7360
diff changeset
   241
qed "Join_transient";
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents: 5259
diff changeset
   242
6295
351b3c2b0d83 removed the infernal States, eqStates, compatible, etc.
paulson
parents: 6019
diff changeset
   243
Goal "i : I ==> \
6536
281d44905cab made many specification operators infix
paulson
parents: 6309
diff changeset
   244
\     (JN i:I. F i) : A ensures B = \
281d44905cab made many specification operators infix
paulson
parents: 6309
diff changeset
   245
\     ((ALL i:I. F i : (A-B) co (A Un B)) & \
281d44905cab made many specification operators infix
paulson
parents: 6309
diff changeset
   246
\      (EX i:I. F i : A ensures B))";
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents: 5259
diff changeset
   247
by (auto_tac (claset(),
7523
3a716ebc2fc0 more rational theorem names (?)
paulson
parents: 7360
diff changeset
   248
	      simpset() addsimps [ensures_def, JN_constrains, JN_transient]));
3a716ebc2fc0 more rational theorem names (?)
paulson
parents: 7360
diff changeset
   249
qed "JN_ensures";
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents: 5259
diff changeset
   250
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents: 5259
diff changeset
   251
Goalw [ensures_def]
6536
281d44905cab made many specification operators infix
paulson
parents: 6309
diff changeset
   252
     "F Join G : A ensures B =     \
7630
d0e4a6f1f05c working snapshot with new theory "Project"
paulson
parents: 7594
diff changeset
   253
\     (F : (A-B) co (A Un B) & G : (A-B) co (A Un B) & \
d0e4a6f1f05c working snapshot with new theory "Project"
paulson
parents: 7594
diff changeset
   254
\      (F : transient (A-B) | G : transient (A-B)))";
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents: 5259
diff changeset
   255
by (auto_tac (claset(),
7523
3a716ebc2fc0 more rational theorem names (?)
paulson
parents: 7360
diff changeset
   256
	      simpset() addsimps [Join_constrains, Join_transient]));
3a716ebc2fc0 more rational theorem names (?)
paulson
parents: 7360
diff changeset
   257
qed "Join_ensures";
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents: 5259
diff changeset
   258
6295
351b3c2b0d83 removed the infernal States, eqStates, compatible, etc.
paulson
parents: 6019
diff changeset
   259
Goalw [stable_def, constrains_def, Join_def]
6536
281d44905cab made many specification operators infix
paulson
parents: 6309
diff changeset
   260
    "[| F : stable A;  G : A co A' |] \
281d44905cab made many specification operators infix
paulson
parents: 6309
diff changeset
   261
\    ==> F Join G : A co A'";
6295
351b3c2b0d83 removed the infernal States, eqStates, compatible, etc.
paulson
parents: 6019
diff changeset
   262
by (asm_full_simp_tac (simpset() addsimps [ball_Un]) 1);
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents: 5259
diff changeset
   263
by (Blast_tac 1);
7523
3a716ebc2fc0 more rational theorem names (?)
paulson
parents: 7360
diff changeset
   264
qed "stable_Join_constrains";
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents: 5259
diff changeset
   265
6633
2ed30ebd7e31 new comments, variable renaming, etc
paulson
parents: 6570
diff changeset
   266
(*Premise for G cannot use Always because  F: Stable A  is weaker than
5648
fe887910e32e specifications as sets of programs
paulson
parents: 5639
diff changeset
   267
  G : stable A *)
6570
a7d7985050a9 Invariant -> Always and other tidying
paulson
parents: 6536
diff changeset
   268
Goal "[| F : stable A;  G : invariant A |] ==> F Join G : Always A";
a7d7985050a9 Invariant -> Always and other tidying
paulson
parents: 6536
diff changeset
   269
by (full_simp_tac (simpset() addsimps [Always_def, invariant_def, 
7523
3a716ebc2fc0 more rational theorem names (?)
paulson
parents: 7360
diff changeset
   270
				       Stable_eq_stable, Join_stable]) 1);
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents: 5259
diff changeset
   271
by (force_tac(claset() addIs [stable_reachable, stable_Int],
7537
875754b599df working snapshot
paulson
parents: 7523
diff changeset
   272
	      simpset()) 1);
6570
a7d7985050a9 Invariant -> Always and other tidying
paulson
parents: 6536
diff changeset
   273
qed "stable_Join_Always";
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents: 5259
diff changeset
   274
6536
281d44905cab made many specification operators infix
paulson
parents: 6309
diff changeset
   275
Goal "[| F : stable A;  G : A ensures B |] ==> F Join G : A ensures B";
7523
3a716ebc2fc0 more rational theorem names (?)
paulson
parents: 7360
diff changeset
   276
by (asm_simp_tac (simpset() addsimps [Join_ensures]) 1);
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents: 5259
diff changeset
   277
by (asm_full_simp_tac (simpset() addsimps [stable_def, ensures_def]) 1);
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents: 5259
diff changeset
   278
by (etac constrains_weaken 1);
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents: 5259
diff changeset
   279
by Auto_tac;
7523
3a716ebc2fc0 more rational theorem names (?)
paulson
parents: 7360
diff changeset
   280
qed "stable_Join_ensures1";
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents: 5259
diff changeset
   281
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents: 5259
diff changeset
   282
(*As above, but exchanging the roles of F and G*)
6536
281d44905cab made many specification operators infix
paulson
parents: 6309
diff changeset
   283
Goal "[| F : A ensures B;  G : stable A |] ==> F Join G : A ensures B";
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents: 5259
diff changeset
   284
by (stac Join_commute 1);
7523
3a716ebc2fc0 more rational theorem names (?)
paulson
parents: 7360
diff changeset
   285
by (blast_tac (claset() addIs [stable_Join_ensures1]) 1);
3a716ebc2fc0 more rational theorem names (?)
paulson
parents: 7360
diff changeset
   286
qed "stable_Join_ensures2";
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents: 5259
diff changeset
   287
5648
fe887910e32e specifications as sets of programs
paulson
parents: 5639
diff changeset
   288
5804
8e0a4c4fd67b Revising the Client proof as suggested by Michel Charpentier. New lemmas
paulson
parents: 5785
diff changeset
   289
(** Diff and localTo **)
8e0a4c4fd67b Revising the Client proof as suggested by Michel Charpentier. New lemmas
paulson
parents: 5785
diff changeset
   290
7878
43b03d412b82 working version with localTo[C] instead of localTo
paulson
parents: 7826
diff changeset
   291
Goalw [Diff_def] "F Join (Diff UNIV G (Acts F)) = F Join G";
5804
8e0a4c4fd67b Revising the Client proof as suggested by Michel Charpentier. New lemmas
paulson
parents: 5785
diff changeset
   292
by (rtac program_equalityI 1);
6295
351b3c2b0d83 removed the infernal States, eqStates, compatible, etc.
paulson
parents: 6019
diff changeset
   293
by Auto_tac;
5804
8e0a4c4fd67b Revising the Client proof as suggested by Michel Charpentier. New lemmas
paulson
parents: 5785
diff changeset
   294
qed "Join_Diff2";
8e0a4c4fd67b Revising the Client proof as suggested by Michel Charpentier. New lemmas
paulson
parents: 5785
diff changeset
   295
7594
8a188ef6545e working version with co-guarantees-leadsto results
paulson
parents: 7537
diff changeset
   296
Goalw [Diff_def]
7878
43b03d412b82 working version with localTo[C] instead of localTo
paulson
parents: 7826
diff changeset
   297
   "Diff C (F Join G) (Acts H) = (Diff C F (Acts H)) Join (Diff C G (Acts H))";
7594
8a188ef6545e working version with co-guarantees-leadsto results
paulson
parents: 7537
diff changeset
   298
by (rtac program_equalityI 1);
8a188ef6545e working version with co-guarantees-leadsto results
paulson
parents: 7537
diff changeset
   299
by Auto_tac;
8a188ef6545e working version with co-guarantees-leadsto results
paulson
parents: 7537
diff changeset
   300
qed "Diff_Join_distrib";
8a188ef6545e working version with co-guarantees-leadsto results
paulson
parents: 7537
diff changeset
   301
7878
43b03d412b82 working version with localTo[C] instead of localTo
paulson
parents: 7826
diff changeset
   302
Goalw [Diff_def] "Diff C F (Acts F) = mk_program(Init F, {})";
7594
8a188ef6545e working version with co-guarantees-leadsto results
paulson
parents: 7537
diff changeset
   303
by Auto_tac;
7878
43b03d412b82 working version with localTo[C] instead of localTo
paulson
parents: 7826
diff changeset
   304
qed "Diff_self_eq";
7594
8a188ef6545e working version with co-guarantees-leadsto results
paulson
parents: 7537
diff changeset
   305
7878
43b03d412b82 working version with localTo[C] instead of localTo
paulson
parents: 7826
diff changeset
   306
Goalw [Diff_def, Disjoint_def] "Disjoint C F (Diff C G (Acts F))";
43b03d412b82 working version with localTo[C] instead of localTo
paulson
parents: 7826
diff changeset
   307
by (force_tac (claset(), 
43b03d412b82 working version with localTo[C] instead of localTo
paulson
parents: 7826
diff changeset
   308
	       simpset() addsimps [Restrict_imageI, 
43b03d412b82 working version with localTo[C] instead of localTo
paulson
parents: 7826
diff changeset
   309
				   sym RSN (2,Restrict_imageI)]) 1);
5804
8e0a4c4fd67b Revising the Client proof as suggested by Michel Charpentier. New lemmas
paulson
parents: 5785
diff changeset
   310
qed "Diff_Disjoint";
5648
fe887910e32e specifications as sets of programs
paulson
parents: 5639
diff changeset
   311
7878
43b03d412b82 working version with localTo[C] instead of localTo
paulson
parents: 7826
diff changeset
   312
Goalw [Disjoint_def]
43b03d412b82 working version with localTo[C] instead of localTo
paulson
parents: 7826
diff changeset
   313
     "[| A <= B; Disjoint A F G |] ==> Disjoint B F G";
43b03d412b82 working version with localTo[C] instead of localTo
paulson
parents: 7826
diff changeset
   314
by (blast_tac (claset() addIs [Restrict_eq_mono RSN (2,Restrict_imageI)]) 1);
43b03d412b82 working version with localTo[C] instead of localTo
paulson
parents: 7826
diff changeset
   315
qed "Disjoint_mono";
43b03d412b82 working version with localTo[C] instead of localTo
paulson
parents: 7826
diff changeset
   316
43b03d412b82 working version with localTo[C] instead of localTo
paulson
parents: 7826
diff changeset
   317
(*** localTo ***)
5804
8e0a4c4fd67b Revising the Client proof as suggested by Michel Charpentier. New lemmas
paulson
parents: 5785
diff changeset
   318
7878
43b03d412b82 working version with localTo[C] instead of localTo
paulson
parents: 7826
diff changeset
   319
Goalw [LOCALTO_def, Diff_def, stable_def, constrains_def]
43b03d412b82 working version with localTo[C] instead of localTo
paulson
parents: 7826
diff changeset
   320
     "A <= B ==> v localTo[B] F <= v localTo[A] F";
43b03d412b82 working version with localTo[C] instead of localTo
paulson
parents: 7826
diff changeset
   321
by Auto_tac;
43b03d412b82 working version with localTo[C] instead of localTo
paulson
parents: 7826
diff changeset
   322
by (dres_inst_tac [("x", "v xc")] spec 1);
43b03d412b82 working version with localTo[C] instead of localTo
paulson
parents: 7826
diff changeset
   323
by (dres_inst_tac [("x", "Restrict B xa")] bspec 1);
43b03d412b82 working version with localTo[C] instead of localTo
paulson
parents: 7826
diff changeset
   324
by Auto_tac;
43b03d412b82 working version with localTo[C] instead of localTo
paulson
parents: 7826
diff changeset
   325
by (blast_tac (claset() addIs [Restrict_eq_mono RSN (2,Restrict_imageI)]) 1);
43b03d412b82 working version with localTo[C] instead of localTo
paulson
parents: 7826
diff changeset
   326
qed "localTo_anti_mono";
43b03d412b82 working version with localTo[C] instead of localTo
paulson
parents: 7826
diff changeset
   327
7947
b999c1ab9327 working again; new treatment of LocalTo
paulson
parents: 7915
diff changeset
   328
bind_thm ("localTo_UNIV_imp_localTo", 
b999c1ab9327 working again; new treatment of LocalTo
paulson
parents: 7915
diff changeset
   329
	  impOfSubs (subset_UNIV RS localTo_anti_mono));
b999c1ab9327 working again; new treatment of LocalTo
paulson
parents: 7915
diff changeset
   330
7878
43b03d412b82 working version with localTo[C] instead of localTo
paulson
parents: 7826
diff changeset
   331
Goalw [LocalTo_def]
43b03d412b82 working version with localTo[C] instead of localTo
paulson
parents: 7826
diff changeset
   332
     "G : v localTo[UNIV] F ==> G : v LocalTo F";
43b03d412b82 working version with localTo[C] instead of localTo
paulson
parents: 7826
diff changeset
   333
by (blast_tac (claset() addDs [impOfSubs localTo_anti_mono]) 1);
43b03d412b82 working version with localTo[C] instead of localTo
paulson
parents: 7826
diff changeset
   334
qed "localTo_imp_LocalTo";
43b03d412b82 working version with localTo[C] instead of localTo
paulson
parents: 7826
diff changeset
   335
43b03d412b82 working version with localTo[C] instead of localTo
paulson
parents: 7826
diff changeset
   336
Goalw [LOCALTO_def, stable_def, constrains_def]
43b03d412b82 working version with localTo[C] instead of localTo
paulson
parents: 7826
diff changeset
   337
     "v localTo[C] F <= (f o v) localTo[C] F";
5804
8e0a4c4fd67b Revising the Client proof as suggested by Michel Charpentier. New lemmas
paulson
parents: 5785
diff changeset
   338
by (Clarify_tac 1);
5898
3e34e7aa7479 a faster proof
paulson
parents: 5867
diff changeset
   339
by (force_tac (claset() addSEs [allE, ballE], simpset()) 1);
5804
8e0a4c4fd67b Revising the Client proof as suggested by Michel Charpentier. New lemmas
paulson
parents: 5785
diff changeset
   340
qed "localTo_imp_o_localTo";
8e0a4c4fd67b Revising the Client proof as suggested by Michel Charpentier. New lemmas
paulson
parents: 5785
diff changeset
   341
7915
c7fd7eb3b0ef ALMOST working version: LocalTo results commented out
paulson
parents: 7878
diff changeset
   342
(*NOT USED*)
7878
43b03d412b82 working version with localTo[C] instead of localTo
paulson
parents: 7826
diff changeset
   343
Goalw [LOCALTO_def, stable_def, constrains_def]
43b03d412b82 working version with localTo[C] instead of localTo
paulson
parents: 7826
diff changeset
   344
     "(%s. x) localTo[C] F = UNIV";
7689
affe0c2fdfbf working snapshot (even Alloc)
paulson
parents: 7630
diff changeset
   345
by (Blast_tac 1);
affe0c2fdfbf working snapshot (even Alloc)
paulson
parents: 7630
diff changeset
   346
qed "triv_localTo_eq_UNIV";
affe0c2fdfbf working snapshot (even Alloc)
paulson
parents: 7630
diff changeset
   347
7915
c7fd7eb3b0ef ALMOST working version: LocalTo results commented out
paulson
parents: 7878
diff changeset
   348
Goal "(F Join G : v localTo[C] H) = \
c7fd7eb3b0ef ALMOST working version: LocalTo results commented out
paulson
parents: 7878
diff changeset
   349
\     (F : v localTo[C] H  &  G : v localTo[C] H)";
c7fd7eb3b0ef ALMOST working version: LocalTo results commented out
paulson
parents: 7878
diff changeset
   350
by (simp_tac (simpset() addsimps [LOCALTO_def, Diff_Join_distrib,
c7fd7eb3b0ef ALMOST working version: LocalTo results commented out
paulson
parents: 7878
diff changeset
   351
				  stable_def, Join_constrains]) 1);
7594
8a188ef6545e working version with co-guarantees-leadsto results
paulson
parents: 7537
diff changeset
   352
by (Blast_tac 1);
8a188ef6545e working version with co-guarantees-leadsto results
paulson
parents: 7537
diff changeset
   353
qed "Join_localTo";
8a188ef6545e working version with co-guarantees-leadsto results
paulson
parents: 7537
diff changeset
   354
7878
43b03d412b82 working version with localTo[C] instead of localTo
paulson
parents: 7826
diff changeset
   355
Goal "F : v localTo[C] F";
7594
8a188ef6545e working version with co-guarantees-leadsto results
paulson
parents: 7537
diff changeset
   356
by (simp_tac 
7878
43b03d412b82 working version with localTo[C] instead of localTo
paulson
parents: 7826
diff changeset
   357
    (simpset() addsimps [LOCALTO_def, stable_def, constrains_def, 
43b03d412b82 working version with localTo[C] instead of localTo
paulson
parents: 7826
diff changeset
   358
			 Diff_self_eq]) 1);
7594
8a188ef6545e working version with co-guarantees-leadsto results
paulson
parents: 7537
diff changeset
   359
qed "self_localTo";
8a188ef6545e working version with co-guarantees-leadsto results
paulson
parents: 7537
diff changeset
   360
7947
b999c1ab9327 working again; new treatment of LocalTo
paulson
parents: 7915
diff changeset
   361
Goal "(F Join G : v localTo[C] F) = (G : v localTo[C] F)";
b999c1ab9327 working again; new treatment of LocalTo
paulson
parents: 7915
diff changeset
   362
by (simp_tac (simpset() addsimps [Join_localTo, self_localTo]) 1);
b999c1ab9327 working again; new treatment of LocalTo
paulson
parents: 7915
diff changeset
   363
qed "self_Join_localTo";
b999c1ab9327 working again; new treatment of LocalTo
paulson
parents: 7915
diff changeset
   364
b999c1ab9327 working again; new treatment of LocalTo
paulson
parents: 7915
diff changeset
   365
Goal "(F Join G : v LocalTo F) = (G : v LocalTo F)";
b999c1ab9327 working again; new treatment of LocalTo
paulson
parents: 7915
diff changeset
   366
by (simp_tac (simpset() addsimps [self_Join_localTo, LocalTo_def,
b999c1ab9327 working again; new treatment of LocalTo
paulson
parents: 7915
diff changeset
   367
				  Join_left_absorb]) 1);
b999c1ab9327 working again; new treatment of LocalTo
paulson
parents: 7915
diff changeset
   368
qed "self_Join_LocalTo";
b999c1ab9327 working again; new treatment of LocalTo
paulson
parents: 7915
diff changeset
   369
7594
8a188ef6545e working version with co-guarantees-leadsto results
paulson
parents: 7537
diff changeset
   370
5804
8e0a4c4fd67b Revising the Client proof as suggested by Michel Charpentier. New lemmas
paulson
parents: 5785
diff changeset
   371
8e0a4c4fd67b Revising the Client proof as suggested by Michel Charpentier. New lemmas
paulson
parents: 5785
diff changeset
   372
(*** Higher-level rules involving localTo and Join ***)
8e0a4c4fd67b Revising the Client proof as suggested by Michel Charpentier. New lemmas
paulson
parents: 5785
diff changeset
   373
7878
43b03d412b82 working version with localTo[C] instead of localTo
paulson
parents: 7826
diff changeset
   374
Goal "[| F : {s. P (v s)} co {s. P' (v s)};  G : v localTo[C] F |]  \
43b03d412b82 working version with localTo[C] instead of localTo
paulson
parents: 7826
diff changeset
   375
\     ==> G : C Int {s. P (v s)} co {s. P' (v s)}";
43b03d412b82 working version with localTo[C] instead of localTo
paulson
parents: 7826
diff changeset
   376
by (ftac constrains_imp_subset 1);
7826
c6a8b73b6c2a working shapshot with "projecting" and "extending"
paulson
parents: 7689
diff changeset
   377
by (auto_tac (claset(), 
7878
43b03d412b82 working version with localTo[C] instead of localTo
paulson
parents: 7826
diff changeset
   378
	      simpset() addsimps [LOCALTO_def, stable_def, constrains_def,
7826
c6a8b73b6c2a working shapshot with "projecting" and "extending"
paulson
parents: 7689
diff changeset
   379
				  Diff_def]));
7878
43b03d412b82 working version with localTo[C] instead of localTo
paulson
parents: 7826
diff changeset
   380
by (case_tac "Restrict C act: Restrict C `` Acts F" 1);
43b03d412b82 working version with localTo[C] instead of localTo
paulson
parents: 7826
diff changeset
   381
by (blast_tac (claset() addSEs [equalityE]) 1);
7826
c6a8b73b6c2a working shapshot with "projecting" and "extending"
paulson
parents: 7689
diff changeset
   382
by (subgoal_tac "v x = v xa" 1);
7878
43b03d412b82 working version with localTo[C] instead of localTo
paulson
parents: 7826
diff changeset
   383
by (Force_tac 1);
43b03d412b82 working version with localTo[C] instead of localTo
paulson
parents: 7826
diff changeset
   384
by (thin_tac "ALL act: ?A. ?P act" 1);
43b03d412b82 working version with localTo[C] instead of localTo
paulson
parents: 7826
diff changeset
   385
by (dtac spec 1);
43b03d412b82 working version with localTo[C] instead of localTo
paulson
parents: 7826
diff changeset
   386
by (dres_inst_tac [("x", "Restrict C act")] bspec 1);
7826
c6a8b73b6c2a working shapshot with "projecting" and "extending"
paulson
parents: 7689
diff changeset
   387
by Auto_tac;
c6a8b73b6c2a working shapshot with "projecting" and "extending"
paulson
parents: 7689
diff changeset
   388
qed "constrains_localTo_constrains";
c6a8b73b6c2a working shapshot with "projecting" and "extending"
paulson
parents: 7689
diff changeset
   389
7878
43b03d412b82 working version with localTo[C] instead of localTo
paulson
parents: 7826
diff changeset
   390
Goalw [LOCALTO_def, stable_def, constrains_def, Diff_def]
43b03d412b82 working version with localTo[C] instead of localTo
paulson
parents: 7826
diff changeset
   391
     "[| G : v localTo[C] F;  G : w localTo[C] F |]  \
43b03d412b82 working version with localTo[C] instead of localTo
paulson
parents: 7826
diff changeset
   392
\     ==> G : (%s. (v s, w s)) localTo[C] F";
7826
c6a8b73b6c2a working shapshot with "projecting" and "extending"
paulson
parents: 7689
diff changeset
   393
by (Blast_tac 1);
c6a8b73b6c2a working shapshot with "projecting" and "extending"
paulson
parents: 7689
diff changeset
   394
qed "localTo_pairfun";
c6a8b73b6c2a working shapshot with "projecting" and "extending"
paulson
parents: 7689
diff changeset
   395
6536
281d44905cab made many specification operators infix
paulson
parents: 6309
diff changeset
   396
Goal "[| F : {s. P (v s) (w s)} co {s. P' (v s) (w s)};   \
7878
43b03d412b82 working version with localTo[C] instead of localTo
paulson
parents: 7826
diff changeset
   397
\        G : v localTo[C] F;       \
43b03d412b82 working version with localTo[C] instead of localTo
paulson
parents: 7826
diff changeset
   398
\        G : w localTo[C] F |]               \
43b03d412b82 working version with localTo[C] instead of localTo
paulson
parents: 7826
diff changeset
   399
\     ==> G : C Int {s. P (v s) (w s)} co {s. P' (v s) (w s)}";
43b03d412b82 working version with localTo[C] instead of localTo
paulson
parents: 7826
diff changeset
   400
by (res_inst_tac [("A", "C Int {s. (%(x,y). P x y) (v s, w s)}"),
7826
c6a8b73b6c2a working shapshot with "projecting" and "extending"
paulson
parents: 7689
diff changeset
   401
		  ("A'", "{s. (%(x,y). P' x y) (v s, w s)}")] 
c6a8b73b6c2a working shapshot with "projecting" and "extending"
paulson
parents: 7689
diff changeset
   402
    constrains_weaken 1);
c6a8b73b6c2a working shapshot with "projecting" and "extending"
paulson
parents: 7689
diff changeset
   403
by (rtac (localTo_pairfun RSN (2, constrains_localTo_constrains)) 1);
6295
351b3c2b0d83 removed the infernal States, eqStates, compatible, etc.
paulson
parents: 6019
diff changeset
   404
by Auto_tac;
5804
8e0a4c4fd67b Revising the Client proof as suggested by Michel Charpentier. New lemmas
paulson
parents: 5785
diff changeset
   405
qed "constrains_localTo_constrains2";
8e0a4c4fd67b Revising the Client proof as suggested by Michel Charpentier. New lemmas
paulson
parents: 5785
diff changeset
   406
7878
43b03d412b82 working version with localTo[C] instead of localTo
paulson
parents: 7826
diff changeset
   407
(*Used just once, in Client.ML.  Having F in the conclusion is silly.*)
5804
8e0a4c4fd67b Revising the Client proof as suggested by Michel Charpentier. New lemmas
paulson
parents: 5785
diff changeset
   408
Goalw [stable_def]
8e0a4c4fd67b Revising the Client proof as suggested by Michel Charpentier. New lemmas
paulson
parents: 5785
diff changeset
   409
     "[| F : stable {s. P (v s) (w s)};   \
7878
43b03d412b82 working version with localTo[C] instead of localTo
paulson
parents: 7826
diff changeset
   410
\        G : v localTo[UNIV] F;  G : w localTo[UNIV] F |]               \
5804
8e0a4c4fd67b Revising the Client proof as suggested by Michel Charpentier. New lemmas
paulson
parents: 5785
diff changeset
   411
\     ==> F Join G : stable {s. P (v s) (w s)}";
7878
43b03d412b82 working version with localTo[C] instead of localTo
paulson
parents: 7826
diff changeset
   412
by (asm_simp_tac (simpset() addsimps [Join_constrains]) 1);
43b03d412b82 working version with localTo[C] instead of localTo
paulson
parents: 7826
diff changeset
   413
by (blast_tac (claset() addIs [constrains_localTo_constrains2 RS 
43b03d412b82 working version with localTo[C] instead of localTo
paulson
parents: 7826
diff changeset
   414
			       constrains_weaken]) 1);
5804
8e0a4c4fd67b Revising the Client proof as suggested by Michel Charpentier. New lemmas
paulson
parents: 5785
diff changeset
   415
qed "stable_localTo_stable2";
8e0a4c4fd67b Revising the Client proof as suggested by Michel Charpentier. New lemmas
paulson
parents: 5785
diff changeset
   416
7878
43b03d412b82 working version with localTo[C] instead of localTo
paulson
parents: 7826
diff changeset
   417
(*Used just in Client.ML.  Generalize to arbitrary C?*)
5804
8e0a4c4fd67b Revising the Client proof as suggested by Michel Charpentier. New lemmas
paulson
parents: 5785
diff changeset
   418
Goal "[| F : stable {s. v s <= w s};   \
7878
43b03d412b82 working version with localTo[C] instead of localTo
paulson
parents: 7826
diff changeset
   419
\        G : v localTo[UNIV] F;       \
7826
c6a8b73b6c2a working shapshot with "projecting" and "extending"
paulson
parents: 7689
diff changeset
   420
\        F Join G : Increasing w |]               \
5804
8e0a4c4fd67b Revising the Client proof as suggested by Michel Charpentier. New lemmas
paulson
parents: 5785
diff changeset
   421
\     ==> F Join G : Stable {s. v s <= w s}";
7826
c6a8b73b6c2a working shapshot with "projecting" and "extending"
paulson
parents: 7689
diff changeset
   422
by (auto_tac (claset(), 
c6a8b73b6c2a working shapshot with "projecting" and "extending"
paulson
parents: 7689
diff changeset
   423
	      simpset() addsimps [stable_def, Stable_def, Increasing_def, 
c6a8b73b6c2a working shapshot with "projecting" and "extending"
paulson
parents: 7689
diff changeset
   424
		    Constrains_def, Join_constrains, all_conj_distrib]));
c6a8b73b6c2a working shapshot with "projecting" and "extending"
paulson
parents: 7689
diff changeset
   425
by (blast_tac (claset() addIs [constrains_weaken]) 1);
c6a8b73b6c2a working shapshot with "projecting" and "extending"
paulson
parents: 7689
diff changeset
   426
(*The G case remains; proved like constrains_localTo_constrains*)
c6a8b73b6c2a working shapshot with "projecting" and "extending"
paulson
parents: 7689
diff changeset
   427
by (auto_tac (claset(), 
7878
43b03d412b82 working version with localTo[C] instead of localTo
paulson
parents: 7826
diff changeset
   428
              simpset() addsimps [LOCALTO_def, stable_def, constrains_def,
43b03d412b82 working version with localTo[C] instead of localTo
paulson
parents: 7826
diff changeset
   429
                                  Diff_def]));
7826
c6a8b73b6c2a working shapshot with "projecting" and "extending"
paulson
parents: 7689
diff changeset
   430
by (case_tac "act: Acts F" 1);
c6a8b73b6c2a working shapshot with "projecting" and "extending"
paulson
parents: 7689
diff changeset
   431
by (Blast_tac 1);
c6a8b73b6c2a working shapshot with "projecting" and "extending"
paulson
parents: 7689
diff changeset
   432
by (thin_tac "ALL act:Acts F. ?P act" 1);
c6a8b73b6c2a working shapshot with "projecting" and "extending"
paulson
parents: 7689
diff changeset
   433
by (thin_tac "ALL z. ALL act:Acts F. ?P z act" 1);
c6a8b73b6c2a working shapshot with "projecting" and "extending"
paulson
parents: 7689
diff changeset
   434
by (dres_inst_tac [("x", "v xa")] spec 1 THEN dtac bspec 1 THEN rtac DiffI 1);
c6a8b73b6c2a working shapshot with "projecting" and "extending"
paulson
parents: 7689
diff changeset
   435
by (assume_tac 1);
c6a8b73b6c2a working shapshot with "projecting" and "extending"
paulson
parents: 7689
diff changeset
   436
by (Blast_tac 1);
c6a8b73b6c2a working shapshot with "projecting" and "extending"
paulson
parents: 7689
diff changeset
   437
by (subgoal_tac "v x = v xa" 1);
5804
8e0a4c4fd67b Revising the Client proof as suggested by Michel Charpentier. New lemmas
paulson
parents: 5785
diff changeset
   438
by Auto_tac;
8e0a4c4fd67b Revising the Client proof as suggested by Michel Charpentier. New lemmas
paulson
parents: 5785
diff changeset
   439
qed "Increasing_localTo_Stable";