src/HOL/UNITY/Constrains.ML
author wenzelm
Mon, 13 Mar 2000 13:21:39 +0100
changeset 8434 5e4bba59bfaa
parent 8334 7896bcbd8641
child 9021 5643223dad0a
permissions -rw-r--r--
use HOLogic.Not; export indexify_names;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
     1
(*  Title:      HOL/UNITY/Constrains
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
     2
    ID:         $Id$
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
     3
    Author:     Lawrence C Paulson, Cambridge University Computer Laboratory
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
     4
    Copyright   1998  University of Cambridge
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
     5
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
     6
Safety relations: restricted to the set of reachable states.
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
     7
*)
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
     8
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
     9
6535
880f31a62784 eliminated theory UNITY/Traces
paulson
parents: 6295
diff changeset
    10
(*** traces and reachable ***)
880f31a62784 eliminated theory UNITY/Traces
paulson
parents: 6295
diff changeset
    11
880f31a62784 eliminated theory UNITY/Traces
paulson
parents: 6295
diff changeset
    12
Goal "reachable F = {s. EX evs. (s,evs): traces (Init F) (Acts F)}";
880f31a62784 eliminated theory UNITY/Traces
paulson
parents: 6295
diff changeset
    13
by Safe_tac;
880f31a62784 eliminated theory UNITY/Traces
paulson
parents: 6295
diff changeset
    14
by (etac traces.induct 2);
880f31a62784 eliminated theory UNITY/Traces
paulson
parents: 6295
diff changeset
    15
by (etac reachable.induct 1);
880f31a62784 eliminated theory UNITY/Traces
paulson
parents: 6295
diff changeset
    16
by (ALLGOALS (blast_tac (claset() addIs reachable.intrs @ traces.intrs)));
880f31a62784 eliminated theory UNITY/Traces
paulson
parents: 6295
diff changeset
    17
qed "reachable_equiv_traces";
880f31a62784 eliminated theory UNITY/Traces
paulson
parents: 6295
diff changeset
    18
880f31a62784 eliminated theory UNITY/Traces
paulson
parents: 6295
diff changeset
    19
Goal "Init F <= reachable F";
880f31a62784 eliminated theory UNITY/Traces
paulson
parents: 6295
diff changeset
    20
by (blast_tac (claset() addIs reachable.intrs) 1);
880f31a62784 eliminated theory UNITY/Traces
paulson
parents: 6295
diff changeset
    21
qed "Init_subset_reachable";
880f31a62784 eliminated theory UNITY/Traces
paulson
parents: 6295
diff changeset
    22
880f31a62784 eliminated theory UNITY/Traces
paulson
parents: 6295
diff changeset
    23
Goal "Acts G <= Acts F ==> G : stable (reachable F)";
880f31a62784 eliminated theory UNITY/Traces
paulson
parents: 6295
diff changeset
    24
by (blast_tac (claset() addIs [stableI, constrainsI] @ reachable.intrs) 1);
880f31a62784 eliminated theory UNITY/Traces
paulson
parents: 6295
diff changeset
    25
qed "stable_reachable";
880f31a62784 eliminated theory UNITY/Traces
paulson
parents: 6295
diff changeset
    26
8069
19b9f92ca503 working with weak LeadsTo in guarantees precondition\!
paulson
parents: 7689
diff changeset
    27
AddSIs [stable_reachable];
19b9f92ca503 working with weak LeadsTo in guarantees precondition\!
paulson
parents: 7689
diff changeset
    28
Addsimps [stable_reachable];
6535
880f31a62784 eliminated theory UNITY/Traces
paulson
parents: 6295
diff changeset
    29
880f31a62784 eliminated theory UNITY/Traces
paulson
parents: 6295
diff changeset
    30
(*The set of all reachable states is an invariant...*)
880f31a62784 eliminated theory UNITY/Traces
paulson
parents: 6295
diff changeset
    31
Goal "F : invariant (reachable F)";
880f31a62784 eliminated theory UNITY/Traces
paulson
parents: 6295
diff changeset
    32
by (simp_tac (simpset() addsimps [invariant_def]) 1);
8069
19b9f92ca503 working with weak LeadsTo in guarantees precondition\!
paulson
parents: 7689
diff changeset
    33
by (blast_tac (claset() addIs reachable.intrs) 1);
6535
880f31a62784 eliminated theory UNITY/Traces
paulson
parents: 6295
diff changeset
    34
qed "invariant_reachable";
880f31a62784 eliminated theory UNITY/Traces
paulson
parents: 6295
diff changeset
    35
880f31a62784 eliminated theory UNITY/Traces
paulson
parents: 6295
diff changeset
    36
(*...in fact the strongest invariant!*)
880f31a62784 eliminated theory UNITY/Traces
paulson
parents: 6295
diff changeset
    37
Goal "F : invariant A ==> reachable F <= A";
880f31a62784 eliminated theory UNITY/Traces
paulson
parents: 6295
diff changeset
    38
by (full_simp_tac 
880f31a62784 eliminated theory UNITY/Traces
paulson
parents: 6295
diff changeset
    39
    (simpset() addsimps [stable_def, constrains_def, invariant_def]) 1);
880f31a62784 eliminated theory UNITY/Traces
paulson
parents: 6295
diff changeset
    40
by (rtac subsetI 1);
880f31a62784 eliminated theory UNITY/Traces
paulson
parents: 6295
diff changeset
    41
by (etac reachable.induct 1);
880f31a62784 eliminated theory UNITY/Traces
paulson
parents: 6295
diff changeset
    42
by (REPEAT (blast_tac (claset() addIs reachable.intrs) 1));
880f31a62784 eliminated theory UNITY/Traces
paulson
parents: 6295
diff changeset
    43
qed "invariant_includes_reachable";
880f31a62784 eliminated theory UNITY/Traces
paulson
parents: 6295
diff changeset
    44
880f31a62784 eliminated theory UNITY/Traces
paulson
parents: 6295
diff changeset
    45
6536
281d44905cab made many specification operators infix
paulson
parents: 6535
diff changeset
    46
(*** Co ***)
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
    47
7403
c318acb88251 tidied some proofs
paulson
parents: 6741
diff changeset
    48
(*Needed because its operands are sets*)
c318acb88251 tidied some proofs
paulson
parents: 6741
diff changeset
    49
overload_1st_set "Constrains.Constrains";
5340
d75c03cf77b5 Misc changes
paulson
parents: 5319
diff changeset
    50
6536
281d44905cab made many specification operators infix
paulson
parents: 6535
diff changeset
    51
(*F : B co B' ==> F : (reachable F Int B) co (reachable F Int B')*)
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
    52
bind_thm ("constrains_reachable_Int",
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
    53
	  subset_refl RS
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
    54
	  rewrite_rule [stable_def] stable_reachable RS 
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
    55
	  constrains_Int);
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
    56
6575
70d758762c50 new definitions of Co and LeadsTo
paulson
parents: 6570
diff changeset
    57
(*Resembles the previous definition of Constrains*)
70d758762c50 new definitions of Co and LeadsTo
paulson
parents: 6570
diff changeset
    58
Goalw [Constrains_def]
70d758762c50 new definitions of Co and LeadsTo
paulson
parents: 6570
diff changeset
    59
     "A Co B = {F. F : (reachable F  Int  A) co (reachable F  Int  B)}";
70d758762c50 new definitions of Co and LeadsTo
paulson
parents: 6570
diff changeset
    60
by (blast_tac (claset() addDs [constrains_reachable_Int]
70d758762c50 new definitions of Co and LeadsTo
paulson
parents: 6570
diff changeset
    61
			addIs [constrains_weaken]) 1);
70d758762c50 new definitions of Co and LeadsTo
paulson
parents: 6570
diff changeset
    62
qed "Constrains_eq_constrains";
70d758762c50 new definitions of Co and LeadsTo
paulson
parents: 6570
diff changeset
    63
6536
281d44905cab made many specification operators infix
paulson
parents: 6535
diff changeset
    64
Goalw [Constrains_def] "F : A co A' ==> F : A Co A'";
6575
70d758762c50 new definitions of Co and LeadsTo
paulson
parents: 6570
diff changeset
    65
by (blast_tac (claset() addIs [constrains_weaken_L]) 1);
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
    66
qed "constrains_imp_Constrains";
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
    67
5648
fe887910e32e specifications as sets of programs
paulson
parents: 5631
diff changeset
    68
Goalw [stable_def, Stable_def] "F : stable A ==> F : Stable A";
5631
707f30bc7fe7 new theorems
paulson
parents: 5620
diff changeset
    69
by (etac constrains_imp_Constrains 1);
707f30bc7fe7 new theorems
paulson
parents: 5620
diff changeset
    70
qed "stable_imp_Stable";
707f30bc7fe7 new theorems
paulson
parents: 5620
diff changeset
    71
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
    72
val prems = Goal
5620
3ac11c4af76a tidying and renaming
paulson
parents: 5584
diff changeset
    73
    "(!!act s s'. [| act: Acts F;  (s,s') : act;  s: A |] ==> s': A') \
6536
281d44905cab made many specification operators infix
paulson
parents: 6535
diff changeset
    74
\    ==> F : A Co A'";
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
    75
by (rtac constrains_imp_Constrains 1);
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
    76
by (blast_tac (claset() addIs (constrainsI::prems)) 1);
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
    77
qed "ConstrainsI";
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
    78
6536
281d44905cab made many specification operators infix
paulson
parents: 6535
diff changeset
    79
Goalw [Constrains_def, constrains_def] "F : {} Co B";
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
    80
by (Blast_tac 1);
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
    81
qed "Constrains_empty";
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
    82
6536
281d44905cab made many specification operators infix
paulson
parents: 6535
diff changeset
    83
Goal "F : A Co UNIV";
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
    84
by (blast_tac (claset() addIs [ConstrainsI]) 1);
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
    85
qed "Constrains_UNIV";
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
    86
AddIffs [Constrains_empty, Constrains_UNIV];
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
    87
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
    88
Goalw [Constrains_def]
6536
281d44905cab made many specification operators infix
paulson
parents: 6535
diff changeset
    89
    "[| F : A Co A'; A'<=B' |] ==> F : A Co B'";
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
    90
by (blast_tac (claset() addIs [constrains_weaken_R]) 1);
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
    91
qed "Constrains_weaken_R";
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
    92
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
    93
Goalw [Constrains_def]
6536
281d44905cab made many specification operators infix
paulson
parents: 6535
diff changeset
    94
    "[| F : A Co A'; B<=A |] ==> F : B Co A'";
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
    95
by (blast_tac (claset() addIs [constrains_weaken_L]) 1);
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
    96
qed "Constrains_weaken_L";
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
    97
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
    98
Goalw [Constrains_def]
6536
281d44905cab made many specification operators infix
paulson
parents: 6535
diff changeset
    99
   "[| F : A Co A'; B<=A; A'<=B' |] ==> F : B Co B'";
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   100
by (blast_tac (claset() addIs [constrains_weaken]) 1);
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   101
qed "Constrains_weaken";
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   102
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   103
(** Union **)
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   104
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   105
Goalw [Constrains_def]
6536
281d44905cab made many specification operators infix
paulson
parents: 6535
diff changeset
   106
    "[| F : A Co A'; F : B Co B' |]   \
281d44905cab made many specification operators infix
paulson
parents: 6535
diff changeset
   107
\    ==> F : (A Un B) Co (A' Un B')";
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   108
by (blast_tac (claset() addIs [constrains_Un RS constrains_weaken]) 1);
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   109
qed "Constrains_Un";
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   110
8334
7896bcbd8641 Added Tanja's Detects and Reachability theories. Also
paulson
parents: 8216
diff changeset
   111
val [prem] = Goalw [Constrains_def]
7896bcbd8641 Added Tanja's Detects and Reachability theories. Also
paulson
parents: 8216
diff changeset
   112
     "(!!i. i:I ==> F : (A i) Co (A' i)) \
6536
281d44905cab made many specification operators infix
paulson
parents: 6535
diff changeset
   113
\     ==> F : (UN i:I. A i) Co (UN i:I. A' i)";
8334
7896bcbd8641 Added Tanja's Detects and Reachability theories. Also
paulson
parents: 8216
diff changeset
   114
by (rtac CollectI 1);
7896bcbd8641 Added Tanja's Detects and Reachability theories. Also
paulson
parents: 8216
diff changeset
   115
by (rtac (prem RS CollectD RS constrains_UN RS constrains_weaken) 1);
7896bcbd8641 Added Tanja's Detects and Reachability theories. Also
paulson
parents: 8216
diff changeset
   116
by Auto_tac;
7896bcbd8641 Added Tanja's Detects and Reachability theories. Also
paulson
parents: 8216
diff changeset
   117
qed "Constrains_UN";
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   118
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   119
(** Intersection **)
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   120
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   121
Goalw [Constrains_def]
6536
281d44905cab made many specification operators infix
paulson
parents: 6535
diff changeset
   122
    "[| F : A Co A'; F : B Co B' |]   \
281d44905cab made many specification operators infix
paulson
parents: 6535
diff changeset
   123
\    ==> F : (A Int B) Co (A' Int B')";
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   124
by (blast_tac (claset() addIs [constrains_Int RS constrains_weaken]) 1);
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   125
qed "Constrains_Int";
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   126
8334
7896bcbd8641 Added Tanja's Detects and Reachability theories. Also
paulson
parents: 8216
diff changeset
   127
val [prem] = Goalw [Constrains_def]
7896bcbd8641 Added Tanja's Detects and Reachability theories. Also
paulson
parents: 8216
diff changeset
   128
     "(!!i. i:I ==> F : (A i) Co (A' i)) \
6536
281d44905cab made many specification operators infix
paulson
parents: 6535
diff changeset
   129
\     ==> F : (INT i:I. A i) Co (INT i:I. A' i)";
8334
7896bcbd8641 Added Tanja's Detects and Reachability theories. Also
paulson
parents: 8216
diff changeset
   130
by (rtac CollectI 1);
7896bcbd8641 Added Tanja's Detects and Reachability theories. Also
paulson
parents: 8216
diff changeset
   131
by (rtac (prem RS CollectD RS constrains_INT RS constrains_weaken) 1);
7896bcbd8641 Added Tanja's Detects and Reachability theories. Also
paulson
parents: 8216
diff changeset
   132
by Auto_tac;
7896bcbd8641 Added Tanja's Detects and Reachability theories. Also
paulson
parents: 8216
diff changeset
   133
qed "Constrains_INT";
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   134
6536
281d44905cab made many specification operators infix
paulson
parents: 6535
diff changeset
   135
Goal "F : A Co A' ==> reachable F Int A <= A'";
6575
70d758762c50 new definitions of Co and LeadsTo
paulson
parents: 6570
diff changeset
   136
by (asm_full_simp_tac (simpset() addsimps [constrains_imp_subset, 
70d758762c50 new definitions of Co and LeadsTo
paulson
parents: 6570
diff changeset
   137
					   Constrains_def]) 1);
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   138
qed "Constrains_imp_subset";
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   139
6575
70d758762c50 new definitions of Co and LeadsTo
paulson
parents: 6570
diff changeset
   140
Goal "[| F : A Co B; F : B Co C |] ==> F : A Co C";
70d758762c50 new definitions of Co and LeadsTo
paulson
parents: 6570
diff changeset
   141
by (full_simp_tac (simpset() addsimps [Constrains_eq_constrains]) 1);
6295
351b3c2b0d83 removed the infernal States, eqStates, compatible, etc.
paulson
parents: 6012
diff changeset
   142
by (blast_tac (claset() addIs [constrains_trans, constrains_weaken]) 1);
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   143
qed "Constrains_trans";
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   144
6575
70d758762c50 new definitions of Co and LeadsTo
paulson
parents: 6570
diff changeset
   145
Goal "[| F : A Co (A' Un B); F : B Co B' |] ==> F : A Co (A' Un B')";
70d758762c50 new definitions of Co and LeadsTo
paulson
parents: 6570
diff changeset
   146
by (full_simp_tac (simpset() addsimps [Constrains_eq_constrains, 
70d758762c50 new definitions of Co and LeadsTo
paulson
parents: 6570
diff changeset
   147
				       constrains_def]) 1);
6295
351b3c2b0d83 removed the infernal States, eqStates, compatible, etc.
paulson
parents: 6012
diff changeset
   148
by (Blast_tac 1);
6012
1894bfc4aee9 Addition of the States component; parts of Comp not working
paulson
parents: 5804
diff changeset
   149
qed "Constrains_cancel";
1894bfc4aee9 Addition of the States component; parts of Comp not working
paulson
parents: 5804
diff changeset
   150
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   151
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   152
(*** Stable ***)
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   153
8334
7896bcbd8641 Added Tanja's Detects and Reachability theories. Also
paulson
parents: 8216
diff changeset
   154
(*Useful because there's no Stable_weaken.  [Tanja Vos]*)
7896bcbd8641 Added Tanja's Detects and Reachability theories. Also
paulson
parents: 8216
diff changeset
   155
Goal "[| F: Stable A; A = B |] ==> F : Stable B";
7896bcbd8641 Added Tanja's Detects and Reachability theories. Also
paulson
parents: 8216
diff changeset
   156
by (Blast_tac 1);
7896bcbd8641 Added Tanja's Detects and Reachability theories. Also
paulson
parents: 8216
diff changeset
   157
qed "Stable_eq";
7896bcbd8641 Added Tanja's Detects and Reachability theories. Also
paulson
parents: 8216
diff changeset
   158
5648
fe887910e32e specifications as sets of programs
paulson
parents: 5631
diff changeset
   159
Goal "(F : Stable A) = (F : stable (reachable F Int A))";
6575
70d758762c50 new definitions of Co and LeadsTo
paulson
parents: 6570
diff changeset
   160
by (simp_tac (simpset() addsimps [Stable_def, Constrains_eq_constrains, 
70d758762c50 new definitions of Co and LeadsTo
paulson
parents: 6570
diff changeset
   161
				  stable_def]) 1);
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   162
qed "Stable_eq_stable";
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   163
6536
281d44905cab made many specification operators infix
paulson
parents: 6535
diff changeset
   164
Goalw [Stable_def] "F : A Co A ==> F : Stable A";
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   165
by (assume_tac 1);
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   166
qed "StableI";
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   167
6536
281d44905cab made many specification operators infix
paulson
parents: 6535
diff changeset
   168
Goalw [Stable_def] "F : Stable A ==> F : A Co A";
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   169
by (assume_tac 1);
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   170
qed "StableD";
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   171
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   172
Goalw [Stable_def]
5648
fe887910e32e specifications as sets of programs
paulson
parents: 5631
diff changeset
   173
    "[| F : Stable A; F : Stable A' |] ==> F : Stable (A Un A')";
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   174
by (blast_tac (claset() addIs [Constrains_Un]) 1);
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   175
qed "Stable_Un";
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   176
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   177
Goalw [Stable_def]
5648
fe887910e32e specifications as sets of programs
paulson
parents: 5631
diff changeset
   178
    "[| F : Stable A; F : Stable A' |] ==> F : Stable (A Int A')";
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   179
by (blast_tac (claset() addIs [Constrains_Int]) 1);
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   180
qed "Stable_Int";
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   181
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   182
Goalw [Stable_def]
6536
281d44905cab made many specification operators infix
paulson
parents: 6535
diff changeset
   183
    "[| F : Stable C; F : A Co (C Un A') |]   \
281d44905cab made many specification operators infix
paulson
parents: 6535
diff changeset
   184
\    ==> F : (C Un A) Co (C Un A')";
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   185
by (blast_tac (claset() addIs [Constrains_Un RS Constrains_weaken]) 1);
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   186
qed "Stable_Constrains_Un";
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   187
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   188
Goalw [Stable_def]
6536
281d44905cab made many specification operators infix
paulson
parents: 6535
diff changeset
   189
    "[| F : Stable C; F : (C Int A) Co A' |]   \
281d44905cab made many specification operators infix
paulson
parents: 6535
diff changeset
   190
\    ==> F : (C Int A) Co (C Int A')";
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   191
by (blast_tac (claset() addIs [Constrains_Int RS Constrains_weaken]) 1);
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   192
qed "Stable_Constrains_Int";
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   193
8334
7896bcbd8641 Added Tanja's Detects and Reachability theories. Also
paulson
parents: 8216
diff changeset
   194
val [prem] = Goalw [Stable_def]
7896bcbd8641 Added Tanja's Detects and Reachability theories. Also
paulson
parents: 8216
diff changeset
   195
    "(!!i. i:I ==> F : Stable (A i)) ==> F : Stable (UN i:I. A i)";
7896bcbd8641 Added Tanja's Detects and Reachability theories. Also
paulson
parents: 8216
diff changeset
   196
by (rtac (prem RS Constrains_UN) 1);
7896bcbd8641 Added Tanja's Detects and Reachability theories. Also
paulson
parents: 8216
diff changeset
   197
by (assume_tac 1);
7896bcbd8641 Added Tanja's Detects and Reachability theories. Also
paulson
parents: 8216
diff changeset
   198
qed "Stable_UN";
5804
8e0a4c4fd67b Revising the Client proof as suggested by Michel Charpentier. New lemmas
paulson
parents: 5784
diff changeset
   199
8334
7896bcbd8641 Added Tanja's Detects and Reachability theories. Also
paulson
parents: 8216
diff changeset
   200
val [prem] = Goalw [Stable_def]
7896bcbd8641 Added Tanja's Detects and Reachability theories. Also
paulson
parents: 8216
diff changeset
   201
    "(!!i. i:I ==> F : Stable (A i)) ==> F : Stable (INT i:I. A i)";
7896bcbd8641 Added Tanja's Detects and Reachability theories. Also
paulson
parents: 8216
diff changeset
   202
by (rtac (prem RS Constrains_INT) 1);
7896bcbd8641 Added Tanja's Detects and Reachability theories. Also
paulson
parents: 8216
diff changeset
   203
by (assume_tac 1);
7896bcbd8641 Added Tanja's Detects and Reachability theories. Also
paulson
parents: 8216
diff changeset
   204
qed "Stable_INT";
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   205
5648
fe887910e32e specifications as sets of programs
paulson
parents: 5631
diff changeset
   206
Goal "F : Stable (reachable F)";
8069
19b9f92ca503 working with weak LeadsTo in guarantees precondition\!
paulson
parents: 7689
diff changeset
   207
by (simp_tac (simpset() addsimps [Stable_eq_stable]) 1);
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   208
qed "Stable_reachable";
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   209
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   210
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   211
5784
54276fba8420 the Increasing operator
paulson
parents: 5669
diff changeset
   212
(*** Increasing ***)
54276fba8420 the Increasing operator
paulson
parents: 5669
diff changeset
   213
8216
e4b3192dfefa updated the Client example
paulson
parents: 8069
diff changeset
   214
Goalw [Increasing_def]
e4b3192dfefa updated the Client example
paulson
parents: 8069
diff changeset
   215
     "F : Increasing f ==> F : Stable {s. x <= f s}";
e4b3192dfefa updated the Client example
paulson
parents: 8069
diff changeset
   216
by (Blast_tac 1);
e4b3192dfefa updated the Client example
paulson
parents: 8069
diff changeset
   217
qed "IncreasingD";
e4b3192dfefa updated the Client example
paulson
parents: 8069
diff changeset
   218
5784
54276fba8420 the Increasing operator
paulson
parents: 5669
diff changeset
   219
Goalw [Increasing_def, Stable_def, Constrains_def, stable_def, constrains_def]
6704
5febcf428342 generalized Increasing_size to mono_Increasing_o
paulson
parents: 6672
diff changeset
   220
     "mono g ==> Increasing f <= Increasing (g o f)";
5784
54276fba8420 the Increasing operator
paulson
parents: 5669
diff changeset
   221
by Auto_tac;
6704
5febcf428342 generalized Increasing_size to mono_Increasing_o
paulson
parents: 6672
diff changeset
   222
by (blast_tac (claset() addIs [monoD, order_trans]) 1);
5febcf428342 generalized Increasing_size to mono_Increasing_o
paulson
parents: 6672
diff changeset
   223
qed "mono_Increasing_o";
5784
54276fba8420 the Increasing operator
paulson
parents: 5669
diff changeset
   224
54276fba8420 the Increasing operator
paulson
parents: 5669
diff changeset
   225
Goalw [Increasing_def]
8216
e4b3192dfefa updated the Client example
paulson
parents: 8069
diff changeset
   226
     "!!z::nat. F : Increasing f ==> F: Stable {s. z < f s}";
5784
54276fba8420 the Increasing operator
paulson
parents: 5669
diff changeset
   227
by (simp_tac (simpset() addsimps [Suc_le_eq RS sym]) 1);
54276fba8420 the Increasing operator
paulson
parents: 5669
diff changeset
   228
by (Blast_tac 1);
8216
e4b3192dfefa updated the Client example
paulson
parents: 8069
diff changeset
   229
qed "strict_IncreasingD";
5784
54276fba8420 the Increasing operator
paulson
parents: 5669
diff changeset
   230
54276fba8420 the Increasing operator
paulson
parents: 5669
diff changeset
   231
Goalw [increasing_def, Increasing_def]
54276fba8420 the Increasing operator
paulson
parents: 5669
diff changeset
   232
     "F : increasing f ==> F : Increasing f";
54276fba8420 the Increasing operator
paulson
parents: 5669
diff changeset
   233
by (blast_tac (claset() addIs [stable_imp_Stable]) 1);
54276fba8420 the Increasing operator
paulson
parents: 5669
diff changeset
   234
qed "increasing_imp_Increasing";
54276fba8420 the Increasing operator
paulson
parents: 5669
diff changeset
   235
54276fba8420 the Increasing operator
paulson
parents: 5669
diff changeset
   236
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   237
(*** The Elimination Theorem.  The "free" m has become universally quantified!
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   238
     Should the premise be !!m instead of ALL m ?  Would make it harder to use
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   239
     in forward proof. ***)
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   240
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   241
Goalw [Constrains_def, constrains_def]
6536
281d44905cab made many specification operators infix
paulson
parents: 6535
diff changeset
   242
    "[| ALL m. F : {s. s x = m} Co (B m) |] \
281d44905cab made many specification operators infix
paulson
parents: 6535
diff changeset
   243
\    ==> F : {s. s x : M} Co (UN m:M. B m)";
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   244
by (Blast_tac 1);
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   245
qed "Elimination";
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   246
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   247
(*As above, but for the trivial case of a one-variable state, in which the
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   248
  state is identified with its one variable.*)
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   249
Goalw [Constrains_def, constrains_def]
6536
281d44905cab made many specification operators infix
paulson
parents: 6535
diff changeset
   250
    "(ALL m. F : {m} Co (B m)) ==> F : M Co (UN m:M. B m)";
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   251
by (Blast_tac 1);
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   252
qed "Elimination_sing";
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   253
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   254
6570
a7d7985050a9 Invariant -> Always and other tidying
paulson
parents: 6536
diff changeset
   255
(*** Specialized laws for handling Always ***)
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   256
6570
a7d7985050a9 Invariant -> Always and other tidying
paulson
parents: 6536
diff changeset
   257
(** Natural deduction rules for "Always A" **)
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   258
6570
a7d7985050a9 Invariant -> Always and other tidying
paulson
parents: 6536
diff changeset
   259
Goal "[| Init F<=A;  F : Stable A |] ==> F : Always A";
a7d7985050a9 Invariant -> Always and other tidying
paulson
parents: 6536
diff changeset
   260
by (asm_simp_tac (simpset() addsimps [Always_def]) 1);
a7d7985050a9 Invariant -> Always and other tidying
paulson
parents: 6536
diff changeset
   261
qed "AlwaysI";
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   262
6570
a7d7985050a9 Invariant -> Always and other tidying
paulson
parents: 6536
diff changeset
   263
Goal "F : Always A ==> Init F<=A & F : Stable A";
a7d7985050a9 Invariant -> Always and other tidying
paulson
parents: 6536
diff changeset
   264
by (asm_full_simp_tac (simpset() addsimps [Always_def]) 1);
a7d7985050a9 Invariant -> Always and other tidying
paulson
parents: 6536
diff changeset
   265
qed "AlwaysD";
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   266
6570
a7d7985050a9 Invariant -> Always and other tidying
paulson
parents: 6536
diff changeset
   267
bind_thm ("AlwaysE", AlwaysD RS conjE);
8334
7896bcbd8641 Added Tanja's Detects and Reachability theories. Also
paulson
parents: 8216
diff changeset
   268
bind_thm ("Always_imp_Stable", AlwaysD RS conjunct2);
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   269
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   270
6570
a7d7985050a9 Invariant -> Always and other tidying
paulson
parents: 6536
diff changeset
   271
(*The set of all reachable states is Always*)
a7d7985050a9 Invariant -> Always and other tidying
paulson
parents: 6536
diff changeset
   272
Goal "F : Always A ==> reachable F <= A";
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   273
by (full_simp_tac 
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   274
    (simpset() addsimps [Stable_def, Constrains_def, constrains_def, 
6570
a7d7985050a9 Invariant -> Always and other tidying
paulson
parents: 6536
diff changeset
   275
			 Always_def]) 1);
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   276
by (rtac subsetI 1);
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   277
by (etac reachable.induct 1);
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   278
by (REPEAT (blast_tac (claset() addIs reachable.intrs) 1));
6570
a7d7985050a9 Invariant -> Always and other tidying
paulson
parents: 6536
diff changeset
   279
qed "Always_includes_reachable";
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   280
6575
70d758762c50 new definitions of Co and LeadsTo
paulson
parents: 6570
diff changeset
   281
Goalw [Always_def, invariant_def, Stable_def, stable_def]
6570
a7d7985050a9 Invariant -> Always and other tidying
paulson
parents: 6536
diff changeset
   282
     "F : invariant A ==> F : Always A";
6575
70d758762c50 new definitions of Co and LeadsTo
paulson
parents: 6570
diff changeset
   283
by (blast_tac (claset() addIs [constrains_imp_Constrains]) 1);
6570
a7d7985050a9 Invariant -> Always and other tidying
paulson
parents: 6536
diff changeset
   284
qed "invariant_imp_Always";
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   285
6672
8542c6dda828 new theorem Always_reachable
paulson
parents: 6575
diff changeset
   286
bind_thm ("Always_reachable", invariant_reachable RS invariant_imp_Always);
8542c6dda828 new theorem Always_reachable
paulson
parents: 6575
diff changeset
   287
6575
70d758762c50 new definitions of Co and LeadsTo
paulson
parents: 6570
diff changeset
   288
Goal "Always A = {F. F : invariant (reachable F Int A)}";
70d758762c50 new definitions of Co and LeadsTo
paulson
parents: 6570
diff changeset
   289
by (simp_tac (simpset() addsimps [Always_def, invariant_def, Stable_def, 
70d758762c50 new definitions of Co and LeadsTo
paulson
parents: 6570
diff changeset
   290
				  Constrains_eq_constrains, stable_def]) 1);
5648
fe887910e32e specifications as sets of programs
paulson
parents: 5631
diff changeset
   291
by (blast_tac (claset() addIs reachable.intrs) 1);
6570
a7d7985050a9 Invariant -> Always and other tidying
paulson
parents: 6536
diff changeset
   292
qed "Always_eq_invariant_reachable";
5648
fe887910e32e specifications as sets of programs
paulson
parents: 5631
diff changeset
   293
6570
a7d7985050a9 Invariant -> Always and other tidying
paulson
parents: 6536
diff changeset
   294
(*the RHS is the traditional definition of the "always" operator*)
a7d7985050a9 Invariant -> Always and other tidying
paulson
parents: 6536
diff changeset
   295
Goal "Always A = {F. reachable F <= A}";
5804
8e0a4c4fd67b Revising the Client proof as suggested by Michel Charpentier. New lemmas
paulson
parents: 5784
diff changeset
   296
by (auto_tac (claset() addDs [invariant_includes_reachable],
8e0a4c4fd67b Revising the Client proof as suggested by Michel Charpentier. New lemmas
paulson
parents: 5784
diff changeset
   297
	      simpset() addsimps [Int_absorb2, invariant_reachable,
6570
a7d7985050a9 Invariant -> Always and other tidying
paulson
parents: 6536
diff changeset
   298
				  Always_eq_invariant_reachable]));
a7d7985050a9 Invariant -> Always and other tidying
paulson
parents: 6536
diff changeset
   299
qed "Always_eq_includes_reachable";
5648
fe887910e32e specifications as sets of programs
paulson
parents: 5631
diff changeset
   300
7689
affe0c2fdfbf working snapshot (even Alloc)
paulson
parents: 7541
diff changeset
   301
Goal "Always UNIV = UNIV";
affe0c2fdfbf working snapshot (even Alloc)
paulson
parents: 7541
diff changeset
   302
by (auto_tac (claset(),
affe0c2fdfbf working snapshot (even Alloc)
paulson
parents: 7541
diff changeset
   303
	      simpset() addsimps [Always_eq_includes_reachable]));
affe0c2fdfbf working snapshot (even Alloc)
paulson
parents: 7541
diff changeset
   304
qed "Always_UNIV_eq";
affe0c2fdfbf working snapshot (even Alloc)
paulson
parents: 7541
diff changeset
   305
Addsimps [Always_UNIV_eq];
5648
fe887910e32e specifications as sets of programs
paulson
parents: 5631
diff changeset
   306
6570
a7d7985050a9 Invariant -> Always and other tidying
paulson
parents: 6536
diff changeset
   307
Goal "Always A = (UN I: Pow A. invariant I)";
a7d7985050a9 Invariant -> Always and other tidying
paulson
parents: 6536
diff changeset
   308
by (simp_tac (simpset() addsimps [Always_eq_includes_reachable]) 1);
5804
8e0a4c4fd67b Revising the Client proof as suggested by Michel Charpentier. New lemmas
paulson
parents: 5784
diff changeset
   309
by (blast_tac (claset() addIs [invariantI, impOfSubs Init_subset_reachable, 
8e0a4c4fd67b Revising the Client proof as suggested by Michel Charpentier. New lemmas
paulson
parents: 5784
diff changeset
   310
			       impOfSubs invariant_includes_reachable]) 1);
6570
a7d7985050a9 Invariant -> Always and other tidying
paulson
parents: 6536
diff changeset
   311
qed "Always_eq_UN_invariant";
a7d7985050a9 Invariant -> Always and other tidying
paulson
parents: 6536
diff changeset
   312
a7d7985050a9 Invariant -> Always and other tidying
paulson
parents: 6536
diff changeset
   313
Goal "[| F : Always A; A <= B |] ==> F : Always B";
a7d7985050a9 Invariant -> Always and other tidying
paulson
parents: 6536
diff changeset
   314
by (auto_tac (claset(), simpset() addsimps [Always_eq_includes_reachable]));
a7d7985050a9 Invariant -> Always and other tidying
paulson
parents: 6536
diff changeset
   315
qed "Always_weaken";
5804
8e0a4c4fd67b Revising the Client proof as suggested by Michel Charpentier. New lemmas
paulson
parents: 5784
diff changeset
   316
8e0a4c4fd67b Revising the Client proof as suggested by Michel Charpentier. New lemmas
paulson
parents: 5784
diff changeset
   317
6570
a7d7985050a9 Invariant -> Always and other tidying
paulson
parents: 6536
diff changeset
   318
(*** "Co" rules involving Always ***)
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   319
6739
66e4118eead9 replaced rules Always_ConstrainsI/D by equivalences Always_Constrains_pre,
paulson
parents: 6704
diff changeset
   320
Goal "F : Always INV ==> (F : (INV Int A) Co A') = (F : A Co A')";
66e4118eead9 replaced rules Always_ConstrainsI/D by equivalences Always_Constrains_pre,
paulson
parents: 6704
diff changeset
   321
by (asm_simp_tac
6570
a7d7985050a9 Invariant -> Always and other tidying
paulson
parents: 6536
diff changeset
   322
    (simpset() addsimps [Always_includes_reachable RS Int_absorb2,
5804
8e0a4c4fd67b Revising the Client proof as suggested by Michel Charpentier. New lemmas
paulson
parents: 5784
diff changeset
   323
			 Constrains_def, Int_assoc RS sym]) 1);
6739
66e4118eead9 replaced rules Always_ConstrainsI/D by equivalences Always_Constrains_pre,
paulson
parents: 6704
diff changeset
   324
qed "Always_Constrains_pre";
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   325
6739
66e4118eead9 replaced rules Always_ConstrainsI/D by equivalences Always_Constrains_pre,
paulson
parents: 6704
diff changeset
   326
Goal "F : Always INV ==> (F : A Co (INV Int A')) = (F : A Co A')";
66e4118eead9 replaced rules Always_ConstrainsI/D by equivalences Always_Constrains_pre,
paulson
parents: 6704
diff changeset
   327
by (asm_simp_tac
6570
a7d7985050a9 Invariant -> Always and other tidying
paulson
parents: 6536
diff changeset
   328
    (simpset() addsimps [Always_includes_reachable RS Int_absorb2,
6575
70d758762c50 new definitions of Co and LeadsTo
paulson
parents: 6570
diff changeset
   329
			 Constrains_eq_constrains, Int_assoc RS sym]) 1);
6739
66e4118eead9 replaced rules Always_ConstrainsI/D by equivalences Always_Constrains_pre,
paulson
parents: 6704
diff changeset
   330
qed "Always_Constrains_post";
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   331
6739
66e4118eead9 replaced rules Always_ConstrainsI/D by equivalences Always_Constrains_pre,
paulson
parents: 6704
diff changeset
   332
(* [| F : Always INV;  F : (INV Int A) Co A' |] ==> F : A Co A' *)
66e4118eead9 replaced rules Always_ConstrainsI/D by equivalences Always_Constrains_pre,
paulson
parents: 6704
diff changeset
   333
bind_thm ("Always_ConstrainsI", Always_Constrains_pre RS iffD1);
66e4118eead9 replaced rules Always_ConstrainsI/D by equivalences Always_Constrains_pre,
paulson
parents: 6704
diff changeset
   334
66e4118eead9 replaced rules Always_ConstrainsI/D by equivalences Always_Constrains_pre,
paulson
parents: 6704
diff changeset
   335
(* [| F : Always INV;  F : A Co A' |] ==> F : A Co (INV Int A') *)
66e4118eead9 replaced rules Always_ConstrainsI/D by equivalences Always_Constrains_pre,
paulson
parents: 6704
diff changeset
   336
bind_thm ("Always_ConstrainsD", Always_Constrains_post RS iffD2);
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   337
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   338
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   339
6570
a7d7985050a9 Invariant -> Always and other tidying
paulson
parents: 6536
diff changeset
   340
(** Conjoining Always properties **)
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   341
7541
1a7a38d8f5bd new theorem Always_INT_distrib; therefore renamed Always_Int
paulson
parents: 7403
diff changeset
   342
Goal "Always (A Int B) = Always A Int Always B";
1a7a38d8f5bd new theorem Always_INT_distrib; therefore renamed Always_Int
paulson
parents: 7403
diff changeset
   343
by (auto_tac (claset(), simpset() addsimps [Always_eq_includes_reachable]));
1a7a38d8f5bd new theorem Always_INT_distrib; therefore renamed Always_Int
paulson
parents: 7403
diff changeset
   344
qed "Always_Int_distrib";
1a7a38d8f5bd new theorem Always_INT_distrib; therefore renamed Always_Int
paulson
parents: 7403
diff changeset
   345
1a7a38d8f5bd new theorem Always_INT_distrib; therefore renamed Always_Int
paulson
parents: 7403
diff changeset
   346
Goal "Always (INTER I A) = (INT i:I. Always (A i))";
1a7a38d8f5bd new theorem Always_INT_distrib; therefore renamed Always_Int
paulson
parents: 7403
diff changeset
   347
by (auto_tac (claset(), simpset() addsimps [Always_eq_includes_reachable]));
1a7a38d8f5bd new theorem Always_INT_distrib; therefore renamed Always_Int
paulson
parents: 7403
diff changeset
   348
qed "Always_INT_distrib";
1a7a38d8f5bd new theorem Always_INT_distrib; therefore renamed Always_Int
paulson
parents: 7403
diff changeset
   349
6570
a7d7985050a9 Invariant -> Always and other tidying
paulson
parents: 6536
diff changeset
   350
Goal "[| F : Always A;  F : Always B |] ==> F : Always (A Int B)";
a7d7985050a9 Invariant -> Always and other tidying
paulson
parents: 6536
diff changeset
   351
by (auto_tac (claset(), simpset() addsimps [Always_eq_includes_reachable]));
7541
1a7a38d8f5bd new theorem Always_INT_distrib; therefore renamed Always_Int
paulson
parents: 7403
diff changeset
   352
qed "Always_Int_I";
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   353
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   354
(*Delete the nearest invariance assumption (which will be the second one
7541
1a7a38d8f5bd new theorem Always_INT_distrib; therefore renamed Always_Int
paulson
parents: 7403
diff changeset
   355
  used by Always_Int_I) *)
6570
a7d7985050a9 Invariant -> Always and other tidying
paulson
parents: 6536
diff changeset
   356
val Always_thin =
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   357
    read_instantiate_sg (sign_of thy)
6570
a7d7985050a9 Invariant -> Always and other tidying
paulson
parents: 6536
diff changeset
   358
                [("V", "?F : Always ?A")] thin_rl;
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   359
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   360
(*Combines two invariance ASSUMPTIONS into one.  USEFUL??*)
7541
1a7a38d8f5bd new theorem Always_INT_distrib; therefore renamed Always_Int
paulson
parents: 7403
diff changeset
   361
val Always_Int_tac = dtac Always_Int_I THEN' assume_tac THEN' etac Always_thin;
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   362
5319
7356d0c88b1b Moved Un_subset_iff and Int_subset_iff from UNITY to equalities.ML
paulson
parents: 5313
diff changeset
   363
(*Combines a list of invariance THEOREMS into one.*)
7541
1a7a38d8f5bd new theorem Always_INT_distrib; therefore renamed Always_Int
paulson
parents: 7403
diff changeset
   364
val Always_Int_rule = foldr1 (fn (th1,th2) => [th1,th2] MRS Always_Int_I);
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   365
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents:
diff changeset
   366
5648
fe887910e32e specifications as sets of programs
paulson
parents: 5631
diff changeset
   367
(*To allow expansion of the program's definition when appropriate*)
fe887910e32e specifications as sets of programs
paulson
parents: 5631
diff changeset
   368
val program_defs_ref = ref ([] : thm list);
fe887910e32e specifications as sets of programs
paulson
parents: 5631
diff changeset
   369
6536
281d44905cab made many specification operators infix
paulson
parents: 6535
diff changeset
   370
(*proves "co" properties when the program is specified*)
5648
fe887910e32e specifications as sets of programs
paulson
parents: 5631
diff changeset
   371
fun constrains_tac i = 
5422
578dc167453f Moved constrains_tac from SubstAx to Constrains.
paulson
parents: 5340
diff changeset
   372
   SELECT_GOAL
7403
c318acb88251 tidied some proofs
paulson
parents: 6741
diff changeset
   373
      (EVERY [REPEAT (Always_Int_tac 1),
c318acb88251 tidied some proofs
paulson
parents: 6741
diff changeset
   374
	      REPEAT (etac Always_ConstrainsI 1
c318acb88251 tidied some proofs
paulson
parents: 6741
diff changeset
   375
		      ORELSE
c318acb88251 tidied some proofs
paulson
parents: 6741
diff changeset
   376
		      resolve_tac [StableI, stableI,
5422
578dc167453f Moved constrains_tac from SubstAx to Constrains.
paulson
parents: 5340
diff changeset
   377
				   constrains_imp_Constrains] 1),
578dc167453f Moved constrains_tac from SubstAx to Constrains.
paulson
parents: 5340
diff changeset
   378
	      rtac constrainsI 1,
7403
c318acb88251 tidied some proofs
paulson
parents: 6741
diff changeset
   379
	      full_simp_tac (simpset() addsimps !program_defs_ref) 1,
5620
3ac11c4af76a tidying and renaming
paulson
parents: 5584
diff changeset
   380
	      REPEAT (FIRSTGOAL (etac disjE)),
5422
578dc167453f Moved constrains_tac from SubstAx to Constrains.
paulson
parents: 5340
diff changeset
   381
	      ALLGOALS Clarify_tac,
5648
fe887910e32e specifications as sets of programs
paulson
parents: 5631
diff changeset
   382
	      ALLGOALS Asm_full_simp_tac]) i;
7403
c318acb88251 tidied some proofs
paulson
parents: 6741
diff changeset
   383
c318acb88251 tidied some proofs
paulson
parents: 6741
diff changeset
   384
c318acb88251 tidied some proofs
paulson
parents: 6741
diff changeset
   385
(*For proving invariants*)
c318acb88251 tidied some proofs
paulson
parents: 6741
diff changeset
   386
fun always_tac i = 
c318acb88251 tidied some proofs
paulson
parents: 6741
diff changeset
   387
    rtac AlwaysI i THEN Force_tac i THEN constrains_tac i;