src/HOL/UNITY/SubstAx.ML
author paulson
Wed, 09 Feb 2000 11:45:10 +0100
changeset 8216 e4b3192dfefa
parent 8122 b43ad07660b9
child 8334 7896bcbd8641
permissions -rw-r--r--
updated the Client example
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
     1
(*  Title:      HOL/UNITY/SubstAx
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
     2
    ID:         $Id$
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
     3
    Author:     Lawrence C Paulson, Cambridge University Computer Laboratory
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
     4
    Copyright   1998  University of Cambridge
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
     5
5277
e4297d03e5d2 A higher-level treatment of LeadsTo, minimizing use of "reachable"
paulson
parents: 5257
diff changeset
     6
LeadsTo relation, restricted to the set of reachable states.
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
     7
*)
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
     8
6536
281d44905cab made many specification operators infix
paulson
parents: 6295
diff changeset
     9
overload_1st_set "SubstAx.op LeadsTo";
5277
e4297d03e5d2 A higher-level treatment of LeadsTo, minimizing use of "reachable"
paulson
parents: 5257
diff changeset
    10
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    11
6575
70d758762c50 new definitions of Co and LeadsTo
paulson
parents: 6570
diff changeset
    12
(*Resembles the previous definition of LeadsTo*)
70d758762c50 new definitions of Co and LeadsTo
paulson
parents: 6570
diff changeset
    13
Goalw [LeadsTo_def]
70d758762c50 new definitions of Co and LeadsTo
paulson
parents: 6570
diff changeset
    14
     "A LeadsTo B = {F. F : (reachable F Int A) leadsTo (reachable F Int B)}";
8069
19b9f92ca503 working with weak LeadsTo in guarantees precondition\!
paulson
parents: 8041
diff changeset
    15
by (blast_tac (claset() addDs [psp_stable2] addIs [leadsTo_weaken]) 1);
6575
70d758762c50 new definitions of Co and LeadsTo
paulson
parents: 6570
diff changeset
    16
qed "LeadsTo_eq_leadsTo";
70d758762c50 new definitions of Co and LeadsTo
paulson
parents: 6570
diff changeset
    17
70d758762c50 new definitions of Co and LeadsTo
paulson
parents: 6570
diff changeset
    18
5277
e4297d03e5d2 A higher-level treatment of LeadsTo, minimizing use of "reachable"
paulson
parents: 5257
diff changeset
    19
(*** Specialized laws for handling invariants ***)
e4297d03e5d2 A higher-level treatment of LeadsTo, minimizing use of "reachable"
paulson
parents: 5257
diff changeset
    20
6570
a7d7985050a9 Invariant -> Always and other tidying
paulson
parents: 6564
diff changeset
    21
(** Conjoining an Always property **)
5544
96078cf5fd2c new induction rule for integers
paulson
parents: 5536
diff changeset
    22
6811
4700ca722bbd Always_LeadsTo_pre. Always_LeadsTo_post: new equivalences suggested by Misra
paulson
parents: 6710
diff changeset
    23
Goal "F : Always INV ==> (F : (INV Int A) LeadsTo A') = (F : A LeadsTo A')";
5277
e4297d03e5d2 A higher-level treatment of LeadsTo, minimizing use of "reachable"
paulson
parents: 5257
diff changeset
    24
by (asm_full_simp_tac
6570
a7d7985050a9 Invariant -> Always and other tidying
paulson
parents: 6564
diff changeset
    25
    (simpset() addsimps [LeadsTo_def, Always_eq_includes_reachable,
a7d7985050a9 Invariant -> Always and other tidying
paulson
parents: 6564
diff changeset
    26
			 Int_absorb2, Int_assoc RS sym]) 1);
6811
4700ca722bbd Always_LeadsTo_pre. Always_LeadsTo_post: new equivalences suggested by Misra
paulson
parents: 6710
diff changeset
    27
qed "Always_LeadsTo_pre";
5544
96078cf5fd2c new induction rule for integers
paulson
parents: 5536
diff changeset
    28
6811
4700ca722bbd Always_LeadsTo_pre. Always_LeadsTo_post: new equivalences suggested by Misra
paulson
parents: 6710
diff changeset
    29
Goal "F : Always INV ==> (F : A LeadsTo (INV Int A')) = (F : A LeadsTo A')";
5544
96078cf5fd2c new induction rule for integers
paulson
parents: 5536
diff changeset
    30
by (asm_full_simp_tac
6575
70d758762c50 new definitions of Co and LeadsTo
paulson
parents: 6570
diff changeset
    31
    (simpset() addsimps [LeadsTo_eq_leadsTo, Always_eq_includes_reachable, 
6570
a7d7985050a9 Invariant -> Always and other tidying
paulson
parents: 6564
diff changeset
    32
			 Int_absorb2, Int_assoc RS sym]) 1);
6811
4700ca722bbd Always_LeadsTo_pre. Always_LeadsTo_post: new equivalences suggested by Misra
paulson
parents: 6710
diff changeset
    33
qed "Always_LeadsTo_post";
4700ca722bbd Always_LeadsTo_pre. Always_LeadsTo_post: new equivalences suggested by Misra
paulson
parents: 6710
diff changeset
    34
4700ca722bbd Always_LeadsTo_pre. Always_LeadsTo_post: new equivalences suggested by Misra
paulson
parents: 6710
diff changeset
    35
(* [| F : Always C;  F : (C Int A) LeadsTo A' |] ==> F : A LeadsTo A' *)
4700ca722bbd Always_LeadsTo_pre. Always_LeadsTo_post: new equivalences suggested by Misra
paulson
parents: 6710
diff changeset
    36
bind_thm ("Always_LeadsToI", Always_LeadsTo_pre RS iffD1);
4700ca722bbd Always_LeadsTo_pre. Always_LeadsTo_post: new equivalences suggested by Misra
paulson
parents: 6710
diff changeset
    37
4700ca722bbd Always_LeadsTo_pre. Always_LeadsTo_post: new equivalences suggested by Misra
paulson
parents: 6710
diff changeset
    38
(* [| F : Always INV;  F : A LeadsTo A' |] ==> F : A LeadsTo (INV Int A') *)
4700ca722bbd Always_LeadsTo_pre. Always_LeadsTo_post: new equivalences suggested by Misra
paulson
parents: 6710
diff changeset
    39
bind_thm ("Always_LeadsToD", Always_LeadsTo_post RS iffD2);
5277
e4297d03e5d2 A higher-level treatment of LeadsTo, minimizing use of "reachable"
paulson
parents: 5257
diff changeset
    40
e4297d03e5d2 A higher-level treatment of LeadsTo, minimizing use of "reachable"
paulson
parents: 5257
diff changeset
    41
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    42
(*** Introduction rules: Basis, Trans, Union ***)
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    43
6536
281d44905cab made many specification operators infix
paulson
parents: 6295
diff changeset
    44
Goal "F : A leadsTo B ==> F : A LeadsTo B";
5111
8f4b72f0c15d Uncurried functions LeadsTo and reach
paulson
parents: 5069
diff changeset
    45
by (simp_tac (simpset() addsimps [LeadsTo_def]) 1);
6575
70d758762c50 new definitions of Co and LeadsTo
paulson
parents: 6570
diff changeset
    46
by (blast_tac (claset() addIs [leadsTo_weaken_L]) 1);
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    47
qed "leadsTo_imp_LeadsTo";
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    48
6536
281d44905cab made many specification operators infix
paulson
parents: 6295
diff changeset
    49
Goal "[| F : A LeadsTo B;  F : B LeadsTo C |] ==> F : A LeadsTo C";
6575
70d758762c50 new definitions of Co and LeadsTo
paulson
parents: 6570
diff changeset
    50
by (full_simp_tac (simpset() addsimps [LeadsTo_eq_leadsTo]) 1);
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    51
by (blast_tac (claset() addIs [leadsTo_Trans]) 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    52
qed "LeadsTo_Trans";
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    53
5648
fe887910e32e specifications as sets of programs
paulson
parents: 5639
diff changeset
    54
val prems = Goalw [LeadsTo_def]
6536
281d44905cab made many specification operators infix
paulson
parents: 6295
diff changeset
    55
     "(!!A. A : S ==> F : A LeadsTo B) ==> F : (Union S) LeadsTo B";
5111
8f4b72f0c15d Uncurried functions LeadsTo and reach
paulson
parents: 5069
diff changeset
    56
by (Simp_tac 1);
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    57
by (stac Int_Union 1);
5648
fe887910e32e specifications as sets of programs
paulson
parents: 5639
diff changeset
    58
by (blast_tac (claset() addIs [leadsTo_UN] addDs prems) 1);
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    59
qed "LeadsTo_Union";
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    60
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    61
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    62
(*** Derived rules ***)
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    63
6536
281d44905cab made many specification operators infix
paulson
parents: 6295
diff changeset
    64
Goal "F : A LeadsTo UNIV";
6575
70d758762c50 new definitions of Co and LeadsTo
paulson
parents: 6570
diff changeset
    65
by (simp_tac (simpset() addsimps [LeadsTo_def]) 1);
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    66
qed "LeadsTo_UNIV";
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    67
Addsimps [LeadsTo_UNIV];
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    68
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    69
(*Useful with cancellation, disjunction*)
6536
281d44905cab made many specification operators infix
paulson
parents: 6295
diff changeset
    70
Goal "F : A LeadsTo (A' Un A') ==> F : A LeadsTo A'";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    71
by (asm_full_simp_tac (simpset() addsimps Un_ac) 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    72
qed "LeadsTo_Un_duplicate";
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    73
6536
281d44905cab made many specification operators infix
paulson
parents: 6295
diff changeset
    74
Goal "F : A LeadsTo (A' Un C Un C) ==> F : A LeadsTo (A' Un C)";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    75
by (asm_full_simp_tac (simpset() addsimps Un_ac) 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    76
qed "LeadsTo_Un_duplicate2";
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    77
5277
e4297d03e5d2 A higher-level treatment of LeadsTo, minimizing use of "reachable"
paulson
parents: 5257
diff changeset
    78
val prems = 
6536
281d44905cab made many specification operators infix
paulson
parents: 6295
diff changeset
    79
Goal "(!!i. i : I ==> F : (A i) LeadsTo B) ==> F : (UN i:I. A i) LeadsTo B";
6295
351b3c2b0d83 removed the infernal States, eqStates, compatible, etc.
paulson
parents: 5804
diff changeset
    80
by (simp_tac (HOL_ss addsimps [Union_image_eq RS sym]) 1);
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    81
by (blast_tac (claset() addIs (LeadsTo_Union::prems)) 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    82
qed "LeadsTo_UN";
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    83
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    84
(*Binary union introduction rule*)
6536
281d44905cab made many specification operators infix
paulson
parents: 6295
diff changeset
    85
Goal "[| F : A LeadsTo C; F : B LeadsTo C |] ==> F : (A Un B) LeadsTo C";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    86
by (stac Un_eq_Union 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    87
by (blast_tac (claset() addIs [LeadsTo_Union]) 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    88
qed "LeadsTo_Un";
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    89
6710
4d438b714571 new rule single_LeadsTo_I; stronger PSP rule; PSP_stable2->PSP_Stable2
paulson
parents: 6575
diff changeset
    90
(*Lets us look at the starting state*)
4d438b714571 new rule single_LeadsTo_I; stronger PSP rule; PSP_stable2->PSP_Stable2
paulson
parents: 6575
diff changeset
    91
val prems = 
4d438b714571 new rule single_LeadsTo_I; stronger PSP rule; PSP_stable2->PSP_Stable2
paulson
parents: 6575
diff changeset
    92
Goal "(!!s. s : A ==> F : {s} LeadsTo B) ==> F : A LeadsTo B";
4d438b714571 new rule single_LeadsTo_I; stronger PSP rule; PSP_stable2->PSP_Stable2
paulson
parents: 6575
diff changeset
    93
by (stac (UN_singleton RS sym) 1 THEN rtac LeadsTo_UN 1);
4d438b714571 new rule single_LeadsTo_I; stronger PSP rule; PSP_stable2->PSP_Stable2
paulson
parents: 6575
diff changeset
    94
by (blast_tac (claset() addIs prems) 1);
4d438b714571 new rule single_LeadsTo_I; stronger PSP rule; PSP_stable2->PSP_Stable2
paulson
parents: 6575
diff changeset
    95
qed "single_LeadsTo_I";
4d438b714571 new rule single_LeadsTo_I; stronger PSP rule; PSP_stable2->PSP_Stable2
paulson
parents: 6575
diff changeset
    96
6536
281d44905cab made many specification operators infix
paulson
parents: 6295
diff changeset
    97
Goal "A <= B ==> F : A LeadsTo B";
5111
8f4b72f0c15d Uncurried functions LeadsTo and reach
paulson
parents: 5069
diff changeset
    98
by (simp_tac (simpset() addsimps [LeadsTo_def]) 1);
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    99
by (blast_tac (claset() addIs [subset_imp_leadsTo]) 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   100
qed "subset_imp_LeadsTo";
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   101
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   102
bind_thm ("empty_LeadsTo", empty_subsetI RS subset_imp_LeadsTo);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   103
Addsimps [empty_LeadsTo];
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   104
6536
281d44905cab made many specification operators infix
paulson
parents: 6295
diff changeset
   105
Goal "[| F : A LeadsTo A';  A' <= B' |] ==> F : A LeadsTo B'";
5111
8f4b72f0c15d Uncurried functions LeadsTo and reach
paulson
parents: 5069
diff changeset
   106
by (full_simp_tac (simpset() addsimps [LeadsTo_def]) 1);
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   107
by (blast_tac (claset() addIs [leadsTo_weaken_R]) 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   108
qed_spec_mp "LeadsTo_weaken_R";
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   109
6536
281d44905cab made many specification operators infix
paulson
parents: 6295
diff changeset
   110
Goal "[| F : A LeadsTo A';  B <= A |]  \
281d44905cab made many specification operators infix
paulson
parents: 6295
diff changeset
   111
\     ==> F : B LeadsTo A'";
5111
8f4b72f0c15d Uncurried functions LeadsTo and reach
paulson
parents: 5069
diff changeset
   112
by (full_simp_tac (simpset() addsimps [LeadsTo_def]) 1);
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   113
by (blast_tac (claset() addIs [leadsTo_weaken_L]) 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   114
qed_spec_mp "LeadsTo_weaken_L";
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   115
6536
281d44905cab made many specification operators infix
paulson
parents: 6295
diff changeset
   116
Goal "[| F : A LeadsTo A';   \
5340
d75c03cf77b5 Misc changes
paulson
parents: 5313
diff changeset
   117
\        B  <= A;   A' <= B' |] \
6536
281d44905cab made many specification operators infix
paulson
parents: 6295
diff changeset
   118
\     ==> F : B LeadsTo B'";
5340
d75c03cf77b5 Misc changes
paulson
parents: 5313
diff changeset
   119
by (blast_tac (claset() addIs [LeadsTo_weaken_R, LeadsTo_weaken_L,
d75c03cf77b5 Misc changes
paulson
parents: 5313
diff changeset
   120
			       LeadsTo_Trans]) 1);
d75c03cf77b5 Misc changes
paulson
parents: 5313
diff changeset
   121
qed "LeadsTo_weaken";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   122
6570
a7d7985050a9 Invariant -> Always and other tidying
paulson
parents: 6564
diff changeset
   123
Goal "[| F : Always C;  F : A LeadsTo A';   \
5544
96078cf5fd2c new induction rule for integers
paulson
parents: 5536
diff changeset
   124
\        C Int B <= A;   C Int A' <= B' |] \
6536
281d44905cab made many specification operators infix
paulson
parents: 6295
diff changeset
   125
\     ==> F : B LeadsTo B'";
6570
a7d7985050a9 Invariant -> Always and other tidying
paulson
parents: 6564
diff changeset
   126
by (blast_tac (claset() addDs [Always_LeadsToI] addIs[LeadsTo_weaken]
a7d7985050a9 Invariant -> Always and other tidying
paulson
parents: 6564
diff changeset
   127
                        addIs [Always_LeadsToD]) 1);
a7d7985050a9 Invariant -> Always and other tidying
paulson
parents: 6564
diff changeset
   128
qed "Always_LeadsTo_weaken";
5340
d75c03cf77b5 Misc changes
paulson
parents: 5313
diff changeset
   129
d75c03cf77b5 Misc changes
paulson
parents: 5313
diff changeset
   130
(** Two theorems for "proof lattices" **)
d75c03cf77b5 Misc changes
paulson
parents: 5313
diff changeset
   131
8216
e4b3192dfefa updated the Client example
paulson
parents: 8122
diff changeset
   132
Goal "F : A LeadsTo B ==> F : (A Un B) LeadsTo B";
5340
d75c03cf77b5 Misc changes
paulson
parents: 5313
diff changeset
   133
by (blast_tac (claset() addIs [LeadsTo_Un, subset_imp_LeadsTo]) 1);
d75c03cf77b5 Misc changes
paulson
parents: 5313
diff changeset
   134
qed "LeadsTo_Un_post";
d75c03cf77b5 Misc changes
paulson
parents: 5313
diff changeset
   135
6536
281d44905cab made many specification operators infix
paulson
parents: 6295
diff changeset
   136
Goal "[| F : A LeadsTo B;  F : B LeadsTo C |] \
281d44905cab made many specification operators infix
paulson
parents: 6295
diff changeset
   137
\     ==> F : (A Un B) LeadsTo C";
5340
d75c03cf77b5 Misc changes
paulson
parents: 5313
diff changeset
   138
by (blast_tac (claset() addIs [LeadsTo_Un, subset_imp_LeadsTo, 
d75c03cf77b5 Misc changes
paulson
parents: 5313
diff changeset
   139
			       LeadsTo_weaken_L, LeadsTo_Trans]) 1);
d75c03cf77b5 Misc changes
paulson
parents: 5313
diff changeset
   140
qed "LeadsTo_Trans_Un";
d75c03cf77b5 Misc changes
paulson
parents: 5313
diff changeset
   141
d75c03cf77b5 Misc changes
paulson
parents: 5313
diff changeset
   142
d75c03cf77b5 Misc changes
paulson
parents: 5313
diff changeset
   143
(** Distributive laws **)
d75c03cf77b5 Misc changes
paulson
parents: 5313
diff changeset
   144
6536
281d44905cab made many specification operators infix
paulson
parents: 6295
diff changeset
   145
Goal "(F : (A Un B) LeadsTo C)  = (F : A LeadsTo C & F : B LeadsTo C)";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   146
by (blast_tac (claset() addIs [LeadsTo_Un, LeadsTo_weaken_L]) 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   147
qed "LeadsTo_Un_distrib";
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   148
6536
281d44905cab made many specification operators infix
paulson
parents: 6295
diff changeset
   149
Goal "(F : (UN i:I. A i) LeadsTo B)  =  (ALL i : I. F : (A i) LeadsTo B)";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   150
by (blast_tac (claset() addIs [LeadsTo_UN, LeadsTo_weaken_L]) 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   151
qed "LeadsTo_UN_distrib";
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   152
6536
281d44905cab made many specification operators infix
paulson
parents: 6295
diff changeset
   153
Goal "(F : (Union S) LeadsTo B)  =  (ALL A : S. F : A LeadsTo B)";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   154
by (blast_tac (claset() addIs [LeadsTo_Union, LeadsTo_weaken_L]) 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   155
qed "LeadsTo_Union_distrib";
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   156
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   157
6570
a7d7985050a9 Invariant -> Always and other tidying
paulson
parents: 6564
diff changeset
   158
(** More rules using the premise "Always INV" **)
5277
e4297d03e5d2 A higher-level treatment of LeadsTo, minimizing use of "reachable"
paulson
parents: 5257
diff changeset
   159
8122
b43ad07660b9 working version, with Alloc now working on the same state space as the whole
paulson
parents: 8069
diff changeset
   160
Goal "F : A Ensures B ==> F : A LeadsTo B";
6575
70d758762c50 new definitions of Co and LeadsTo
paulson
parents: 6570
diff changeset
   161
by (asm_full_simp_tac
8122
b43ad07660b9 working version, with Alloc now working on the same state space as the whole
paulson
parents: 8069
diff changeset
   162
    (simpset() addsimps [Ensures_def, LeadsTo_def, leadsTo_Basis]) 1);
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents: 5277
diff changeset
   163
qed "LeadsTo_Basis";
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents: 5277
diff changeset
   164
8122
b43ad07660b9 working version, with Alloc now working on the same state space as the whole
paulson
parents: 8069
diff changeset
   165
Goal "[| F : (A-B) Co (A Un B);  F : transient (A-B) |]   \
b43ad07660b9 working version, with Alloc now working on the same state space as the whole
paulson
parents: 8069
diff changeset
   166
\     ==> F : A Ensures B";
b43ad07660b9 working version, with Alloc now working on the same state space as the whole
paulson
parents: 8069
diff changeset
   167
by (asm_full_simp_tac
b43ad07660b9 working version, with Alloc now working on the same state space as the whole
paulson
parents: 8069
diff changeset
   168
    (simpset() addsimps [Ensures_def, Constrains_eq_constrains]) 1);
b43ad07660b9 working version, with Alloc now working on the same state space as the whole
paulson
parents: 8069
diff changeset
   169
by (blast_tac (claset() addIs [ensuresI, constrains_weaken, 
b43ad07660b9 working version, with Alloc now working on the same state space as the whole
paulson
parents: 8069
diff changeset
   170
			       transient_strengthen]) 1);
b43ad07660b9 working version, with Alloc now working on the same state space as the whole
paulson
parents: 8069
diff changeset
   171
qed "EnsuresI";
b43ad07660b9 working version, with Alloc now working on the same state space as the whole
paulson
parents: 8069
diff changeset
   172
6570
a7d7985050a9 Invariant -> Always and other tidying
paulson
parents: 6564
diff changeset
   173
Goal "[| F : Always INV;      \
6536
281d44905cab made many specification operators infix
paulson
parents: 6295
diff changeset
   174
\        F : (INV Int (A-A')) Co (A Un A'); \
5648
fe887910e32e specifications as sets of programs
paulson
parents: 5639
diff changeset
   175
\        F : transient (INV Int (A-A')) |]   \
6536
281d44905cab made many specification operators infix
paulson
parents: 6295
diff changeset
   176
\ ==> F : A LeadsTo A'";
6570
a7d7985050a9 Invariant -> Always and other tidying
paulson
parents: 6564
diff changeset
   177
by (rtac Always_LeadsToI 1);
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents: 5277
diff changeset
   178
by (assume_tac 1);
8122
b43ad07660b9 working version, with Alloc now working on the same state space as the whole
paulson
parents: 8069
diff changeset
   179
by (blast_tac (claset() addIs [EnsuresI, LeadsTo_Basis,
b43ad07660b9 working version, with Alloc now working on the same state space as the whole
paulson
parents: 8069
diff changeset
   180
			       Always_ConstrainsD RS Constrains_weaken, 
b43ad07660b9 working version, with Alloc now working on the same state space as the whole
paulson
parents: 8069
diff changeset
   181
			       transient_strengthen]) 1);
6570
a7d7985050a9 Invariant -> Always and other tidying
paulson
parents: 6564
diff changeset
   182
qed "Always_LeadsTo_Basis";
5277
e4297d03e5d2 A higher-level treatment of LeadsTo, minimizing use of "reachable"
paulson
parents: 5257
diff changeset
   183
5253
82a5ca6290aa New record type of programs
paulson
parents: 5240
diff changeset
   184
(*Set difference: maybe combine with leadsTo_weaken_L??
82a5ca6290aa New record type of programs
paulson
parents: 5240
diff changeset
   185
  This is the most useful form of the "disjunction" rule*)
6536
281d44905cab made many specification operators infix
paulson
parents: 6295
diff changeset
   186
Goal "[| F : (A-B) LeadsTo C;  F : (A Int B) LeadsTo C |] \
281d44905cab made many specification operators infix
paulson
parents: 6295
diff changeset
   187
\     ==> F : A LeadsTo C";
5479
5a5dfb0f0d7d fixed PROOF FAILED
paulson
parents: 5426
diff changeset
   188
by (blast_tac (claset() addIs [LeadsTo_Un, LeadsTo_weaken]) 1);
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   189
qed "LeadsTo_Diff";
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   190
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   191
5277
e4297d03e5d2 A higher-level treatment of LeadsTo, minimizing use of "reachable"
paulson
parents: 5257
diff changeset
   192
val prems = 
6536
281d44905cab made many specification operators infix
paulson
parents: 6295
diff changeset
   193
Goal "(!! i. i:I ==> F : (A i) LeadsTo (A' i)) \
281d44905cab made many specification operators infix
paulson
parents: 6295
diff changeset
   194
\     ==> F : (UN i:I. A i) LeadsTo (UN i:I. A' i)";
6295
351b3c2b0d83 removed the infernal States, eqStates, compatible, etc.
paulson
parents: 5804
diff changeset
   195
by (simp_tac (HOL_ss addsimps [Union_image_eq RS sym]) 1);
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   196
by (blast_tac (claset() addIs [LeadsTo_Union, LeadsTo_weaken_R] 
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   197
                        addIs prems) 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   198
qed "LeadsTo_UN_UN";
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   199
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   200
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   201
(*Version with no index set*)
5257
c03e3ba9cbcc Indentation, comments
paulson
parents: 5253
diff changeset
   202
val prems = 
6536
281d44905cab made many specification operators infix
paulson
parents: 6295
diff changeset
   203
Goal "(!! i. F : (A i) LeadsTo (A' i)) \
281d44905cab made many specification operators infix
paulson
parents: 6295
diff changeset
   204
\     ==> F : (UN i. A i) LeadsTo (UN i. A' i)";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   205
by (blast_tac (claset() addIs [LeadsTo_UN_UN] 
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   206
                        addIs prems) 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   207
qed "LeadsTo_UN_UN_noindex";
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   208
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   209
(*Version with no index set*)
6536
281d44905cab made many specification operators infix
paulson
parents: 6295
diff changeset
   210
Goal "ALL i. F : (A i) LeadsTo (A' i) \
281d44905cab made many specification operators infix
paulson
parents: 6295
diff changeset
   211
\     ==> F : (UN i. A i) LeadsTo (UN i. A' i)";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   212
by (blast_tac (claset() addIs [LeadsTo_UN_UN]) 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   213
qed "all_LeadsTo_UN_UN";
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   214
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   215
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   216
(*Binary union version*)
6536
281d44905cab made many specification operators infix
paulson
parents: 6295
diff changeset
   217
Goal "[| F : A LeadsTo A'; F : B LeadsTo B' |] \
281d44905cab made many specification operators infix
paulson
parents: 6295
diff changeset
   218
\           ==> F : (A Un B) LeadsTo (A' Un B')";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   219
by (blast_tac (claset() addIs [LeadsTo_Un, 
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   220
			       LeadsTo_weaken_R]) 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   221
qed "LeadsTo_Un_Un";
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   222
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   223
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   224
(** The cancellation law **)
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   225
6536
281d44905cab made many specification operators infix
paulson
parents: 6295
diff changeset
   226
Goal "[| F : A LeadsTo (A' Un B); F : B LeadsTo B' |]    \
281d44905cab made many specification operators infix
paulson
parents: 6295
diff changeset
   227
\     ==> F : A LeadsTo (A' Un B')";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   228
by (blast_tac (claset() addIs [LeadsTo_Un_Un, 
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   229
			       subset_imp_LeadsTo, LeadsTo_Trans]) 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   230
qed "LeadsTo_cancel2";
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   231
6536
281d44905cab made many specification operators infix
paulson
parents: 6295
diff changeset
   232
Goal "[| F : A LeadsTo (A' Un B); F : (B-A') LeadsTo B' |] \
281d44905cab made many specification operators infix
paulson
parents: 6295
diff changeset
   233
\     ==> F : A LeadsTo (A' Un B')";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   234
by (rtac LeadsTo_cancel2 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   235
by (assume_tac 2);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   236
by (ALLGOALS Asm_simp_tac);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   237
qed "LeadsTo_cancel_Diff2";
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   238
6536
281d44905cab made many specification operators infix
paulson
parents: 6295
diff changeset
   239
Goal "[| F : A LeadsTo (B Un A'); F : B LeadsTo B' |] \
281d44905cab made many specification operators infix
paulson
parents: 6295
diff changeset
   240
\     ==> F : A LeadsTo (B' Un A')";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   241
by (asm_full_simp_tac (simpset() addsimps [Un_commute]) 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   242
by (blast_tac (claset() addSIs [LeadsTo_cancel2]) 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   243
qed "LeadsTo_cancel1";
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   244
6536
281d44905cab made many specification operators infix
paulson
parents: 6295
diff changeset
   245
Goal "[| F : A LeadsTo (B Un A'); F : (B-A') LeadsTo B' |] \
281d44905cab made many specification operators infix
paulson
parents: 6295
diff changeset
   246
\     ==> F : A LeadsTo (B' Un A')";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   247
by (rtac LeadsTo_cancel1 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   248
by (assume_tac 2);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   249
by (ALLGOALS Asm_simp_tac);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   250
qed "LeadsTo_cancel_Diff1";
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   251
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   252
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   253
(** The impossibility law **)
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   254
5277
e4297d03e5d2 A higher-level treatment of LeadsTo, minimizing use of "reachable"
paulson
parents: 5257
diff changeset
   255
(*The set "A" may be non-empty, but it contains no reachable states*)
6570
a7d7985050a9 Invariant -> Always and other tidying
paulson
parents: 6564
diff changeset
   256
Goal "F : A LeadsTo {} ==> F : Always (-A)";
a7d7985050a9 Invariant -> Always and other tidying
paulson
parents: 6564
diff changeset
   257
by (full_simp_tac (simpset() addsimps [LeadsTo_def,
a7d7985050a9 Invariant -> Always and other tidying
paulson
parents: 6564
diff changeset
   258
				       Always_eq_includes_reachable]) 1);
a7d7985050a9 Invariant -> Always and other tidying
paulson
parents: 6564
diff changeset
   259
by (dtac leadsTo_empty 1);
a7d7985050a9 Invariant -> Always and other tidying
paulson
parents: 6564
diff changeset
   260
by Auto_tac;
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   261
qed "LeadsTo_empty";
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   262
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   263
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   264
(** PSP: Progress-Safety-Progress **)
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   265
5639
paulson
parents: 5620
diff changeset
   266
(*Special case of PSP: Misra's "stable conjunction"*)
6536
281d44905cab made many specification operators infix
paulson
parents: 6295
diff changeset
   267
Goal "[| F : A LeadsTo A';  F : Stable B |] \
281d44905cab made many specification operators infix
paulson
parents: 6295
diff changeset
   268
\     ==> F : (A Int B) LeadsTo (A' Int B)";
6575
70d758762c50 new definitions of Co and LeadsTo
paulson
parents: 6570
diff changeset
   269
by (full_simp_tac
70d758762c50 new definitions of Co and LeadsTo
paulson
parents: 6570
diff changeset
   270
    (simpset() addsimps [LeadsTo_eq_leadsTo, Stable_eq_stable]) 1);
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents: 5277
diff changeset
   271
by (dtac psp_stable 1);
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents: 5277
diff changeset
   272
by (assume_tac 1);
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents: 5277
diff changeset
   273
by (asm_full_simp_tac (simpset() addsimps Int_ac) 1);
6710
4d438b714571 new rule single_LeadsTo_I; stronger PSP rule; PSP_stable2->PSP_Stable2
paulson
parents: 6575
diff changeset
   274
qed "PSP_Stable";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   275
6536
281d44905cab made many specification operators infix
paulson
parents: 6295
diff changeset
   276
Goal "[| F : A LeadsTo A'; F : Stable B |] \
281d44905cab made many specification operators infix
paulson
parents: 6295
diff changeset
   277
\     ==> F : (B Int A) LeadsTo (B Int A')";
6710
4d438b714571 new rule single_LeadsTo_I; stronger PSP rule; PSP_stable2->PSP_Stable2
paulson
parents: 6575
diff changeset
   278
by (asm_simp_tac (simpset() addsimps PSP_Stable::Int_ac) 1);
4d438b714571 new rule single_LeadsTo_I; stronger PSP rule; PSP_stable2->PSP_Stable2
paulson
parents: 6575
diff changeset
   279
qed "PSP_Stable2";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   280
6575
70d758762c50 new definitions of Co and LeadsTo
paulson
parents: 6570
diff changeset
   281
Goal "[| F : A LeadsTo A'; F : B Co B' |] \
6710
4d438b714571 new rule single_LeadsTo_I; stronger PSP rule; PSP_stable2->PSP_Stable2
paulson
parents: 6575
diff changeset
   282
\     ==> F : (A Int B') LeadsTo ((A' Int B) Un (B' - B))";
6575
70d758762c50 new definitions of Co and LeadsTo
paulson
parents: 6570
diff changeset
   283
by (full_simp_tac
70d758762c50 new definitions of Co and LeadsTo
paulson
parents: 6570
diff changeset
   284
    (simpset() addsimps [LeadsTo_def, Constrains_eq_constrains]) 1);
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents: 5277
diff changeset
   285
by (blast_tac (claset() addDs [psp] addIs [leadsTo_weaken]) 1);
5277
e4297d03e5d2 A higher-level treatment of LeadsTo, minimizing use of "reachable"
paulson
parents: 5257
diff changeset
   286
qed "PSP";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   287
6536
281d44905cab made many specification operators infix
paulson
parents: 6295
diff changeset
   288
Goal "[| F : A LeadsTo A'; F : B Co B' |] \
6710
4d438b714571 new rule single_LeadsTo_I; stronger PSP rule; PSP_stable2->PSP_Stable2
paulson
parents: 6575
diff changeset
   289
\     ==> F : (B' Int A) LeadsTo ((B Int A') Un (B' - B))";
5536
130f3d891fb2 tidying and deleting needless parentheses
paulson
parents: 5479
diff changeset
   290
by (asm_simp_tac (simpset() addsimps PSP::Int_ac) 1);
5277
e4297d03e5d2 A higher-level treatment of LeadsTo, minimizing use of "reachable"
paulson
parents: 5257
diff changeset
   291
qed "PSP2";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   292
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents: 5277
diff changeset
   293
Goalw [Unless_def]
6536
281d44905cab made many specification operators infix
paulson
parents: 6295
diff changeset
   294
     "[| F : A LeadsTo A'; F : B Unless B' |] \
281d44905cab made many specification operators infix
paulson
parents: 6295
diff changeset
   295
\     ==> F : (A Int B) LeadsTo ((A' Int B) Un B')";
5277
e4297d03e5d2 A higher-level treatment of LeadsTo, minimizing use of "reachable"
paulson
parents: 5257
diff changeset
   296
by (dtac PSP 1);
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   297
by (assume_tac 1);
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents: 5277
diff changeset
   298
by (blast_tac (claset() addIs [LeadsTo_Diff, LeadsTo_weaken, 
5584
aad639e56d4e Now id:(Acts prg) is implicit
paulson
parents: 5569
diff changeset
   299
			       subset_imp_LeadsTo]) 1);
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents: 5277
diff changeset
   300
qed "PSP_Unless";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   301
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   302
5804
8e0a4c4fd67b Revising the Client proof as suggested by Michel Charpentier. New lemmas
paulson
parents: 5648
diff changeset
   303
Goal "[| F : Stable A;  F : transient C;  \
6570
a7d7985050a9 Invariant -> Always and other tidying
paulson
parents: 6564
diff changeset
   304
\        F : Always (-A Un B Un C) |] ==> F : A LeadsTo B";
a7d7985050a9 Invariant -> Always and other tidying
paulson
parents: 6564
diff changeset
   305
by (etac Always_LeadsTo_weaken 1);
5804
8e0a4c4fd67b Revising the Client proof as suggested by Michel Charpentier. New lemmas
paulson
parents: 5648
diff changeset
   306
by (rtac LeadsTo_Diff 1);
6710
4d438b714571 new rule single_LeadsTo_I; stronger PSP rule; PSP_stable2->PSP_Stable2
paulson
parents: 6575
diff changeset
   307
by (etac (transient_imp_leadsTo RS leadsTo_imp_LeadsTo RS PSP_Stable2) 2);
5804
8e0a4c4fd67b Revising the Client proof as suggested by Michel Charpentier. New lemmas
paulson
parents: 5648
diff changeset
   308
by (ALLGOALS (blast_tac (claset() addIs [subset_imp_LeadsTo])));
6570
a7d7985050a9 Invariant -> Always and other tidying
paulson
parents: 6564
diff changeset
   309
qed "Stable_transient_Always_LeadsTo";
5804
8e0a4c4fd67b Revising the Client proof as suggested by Michel Charpentier. New lemmas
paulson
parents: 5648
diff changeset
   310
8e0a4c4fd67b Revising the Client proof as suggested by Michel Charpentier. New lemmas
paulson
parents: 5648
diff changeset
   311
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   312
(*** Induction rules ***)
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   313
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   314
(** Meta or object quantifier ????? **)
5232
e5a7cdd07ea5 Tidied; uses records
paulson
parents: 5111
diff changeset
   315
Goal "[| wf r;     \
6536
281d44905cab made many specification operators infix
paulson
parents: 6295
diff changeset
   316
\        ALL m. F : (A Int f-``{m}) LeadsTo                     \
5584
aad639e56d4e Now id:(Acts prg) is implicit
paulson
parents: 5569
diff changeset
   317
\                           ((A Int f-``(r^-1 ^^ {m})) Un B) |] \
6536
281d44905cab made many specification operators infix
paulson
parents: 6295
diff changeset
   318
\     ==> F : A LeadsTo B";
6575
70d758762c50 new definitions of Co and LeadsTo
paulson
parents: 6570
diff changeset
   319
by (full_simp_tac (simpset() addsimps [LeadsTo_eq_leadsTo]) 1);
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   320
by (etac leadsTo_wf_induct 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   321
by (blast_tac (claset() addIs [leadsTo_weaken]) 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   322
qed "LeadsTo_wf_induct";
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   323
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   324
5232
e5a7cdd07ea5 Tidied; uses records
paulson
parents: 5111
diff changeset
   325
Goal "[| wf r;     \
6536
281d44905cab made many specification operators infix
paulson
parents: 6295
diff changeset
   326
\        ALL m:I. F : (A Int f-``{m}) LeadsTo                   \
5584
aad639e56d4e Now id:(Acts prg) is implicit
paulson
parents: 5569
diff changeset
   327
\                             ((A Int f-``(r^-1 ^^ {m})) Un B) |] \
6536
281d44905cab made many specification operators infix
paulson
parents: 6295
diff changeset
   328
\     ==> F : A LeadsTo ((A - (f-``I)) Un B)";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   329
by (etac LeadsTo_wf_induct 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   330
by Safe_tac;
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   331
by (case_tac "m:I" 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   332
by (blast_tac (claset() addIs [LeadsTo_weaken]) 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   333
by (blast_tac (claset() addIs [subset_imp_LeadsTo]) 1);
5277
e4297d03e5d2 A higher-level treatment of LeadsTo, minimizing use of "reachable"
paulson
parents: 5257
diff changeset
   334
qed "Bounded_induct";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   335
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   336
8216
e4b3192dfefa updated the Client example
paulson
parents: 8122
diff changeset
   337
val prems = 
e4b3192dfefa updated the Client example
paulson
parents: 8122
diff changeset
   338
Goal "(!! m. F : (A Int f-``{m}) LeadsTo ((A Int f-``(lessThan m)) Un B)) \
6536
281d44905cab made many specification operators infix
paulson
parents: 6295
diff changeset
   339
\     ==> F : A LeadsTo B";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   340
by (rtac (wf_less_than RS LeadsTo_wf_induct) 1);
8216
e4b3192dfefa updated the Client example
paulson
parents: 8122
diff changeset
   341
by (auto_tac (claset() addIs prems, simpset()));
5277
e4297d03e5d2 A higher-level treatment of LeadsTo, minimizing use of "reachable"
paulson
parents: 5257
diff changeset
   342
qed "LessThan_induct";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   343
5544
96078cf5fd2c new induction rule for integers
paulson
parents: 5536
diff changeset
   344
(*Integer version.  Could generalize from #0 to any lower bound*)
5584
aad639e56d4e Now id:(Acts prg) is implicit
paulson
parents: 5569
diff changeset
   345
val [reach, prem] =
6909
21601bc4f3c2 adapted to generic numerals;
wenzelm
parents: 6811
diff changeset
   346
Goal "[| F : Always {s. (#0::int) <= f s};  \
6536
281d44905cab made many specification operators infix
paulson
parents: 6295
diff changeset
   347
\        !! z. F : (A Int {s. f s = z}) LeadsTo                     \
5584
aad639e56d4e Now id:(Acts prg) is implicit
paulson
parents: 5569
diff changeset
   348
\                           ((A Int {s. f s < z}) Un B) |] \
6536
281d44905cab made many specification operators infix
paulson
parents: 6295
diff changeset
   349
\     ==> F : A LeadsTo B";
8216
e4b3192dfefa updated the Client example
paulson
parents: 8122
diff changeset
   350
by (res_inst_tac [("f", "nat o f")] LessThan_induct 1);
5544
96078cf5fd2c new induction rule for integers
paulson
parents: 5536
diff changeset
   351
by (simp_tac (simpset() addsimps [vimage_def]) 1);
6570
a7d7985050a9 Invariant -> Always and other tidying
paulson
parents: 6564
diff changeset
   352
by (rtac ([reach, prem] MRS Always_LeadsTo_weaken) 1);
5584
aad639e56d4e Now id:(Acts prg) is implicit
paulson
parents: 5569
diff changeset
   353
by (auto_tac (claset(), simpset() addsimps [nat_eq_iff, nat_less_iff]));
5544
96078cf5fd2c new induction rule for integers
paulson
parents: 5536
diff changeset
   354
qed "integ_0_le_induct";
96078cf5fd2c new induction rule for integers
paulson
parents: 5536
diff changeset
   355
6536
281d44905cab made many specification operators infix
paulson
parents: 6295
diff changeset
   356
Goal "[| ALL m:(greaterThan l). F : (A Int f-``{m}) LeadsTo   \
5584
aad639e56d4e Now id:(Acts prg) is implicit
paulson
parents: 5569
diff changeset
   357
\                                        ((A Int f-``(lessThan m)) Un B) |] \
6536
281d44905cab made many specification operators infix
paulson
parents: 6295
diff changeset
   358
\           ==> F : A LeadsTo ((A Int (f-``(atMost l))) Un B)";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   359
by (simp_tac (HOL_ss addsimps [Diff_eq RS sym, vimage_Compl, Compl_greaterThan RS sym]) 1);
5277
e4297d03e5d2 A higher-level treatment of LeadsTo, minimizing use of "reachable"
paulson
parents: 5257
diff changeset
   360
by (rtac (wf_less_than RS Bounded_induct) 1);
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   361
by (Asm_simp_tac 1);
5277
e4297d03e5d2 A higher-level treatment of LeadsTo, minimizing use of "reachable"
paulson
parents: 5257
diff changeset
   362
qed "LessThan_bounded_induct";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   363
6536
281d44905cab made many specification operators infix
paulson
parents: 6295
diff changeset
   364
Goal "[| ALL m:(lessThan l). F : (A Int f-``{m}) LeadsTo   \
5584
aad639e56d4e Now id:(Acts prg) is implicit
paulson
parents: 5569
diff changeset
   365
\                              ((A Int f-``(greaterThan m)) Un B) |] \
6536
281d44905cab made many specification operators infix
paulson
parents: 6295
diff changeset
   366
\     ==> F : A LeadsTo ((A Int (f-``(atLeast l))) Un B)";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   367
by (res_inst_tac [("f","f"),("f1", "%k. l - k")]
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   368
    (wf_less_than RS wf_inv_image RS LeadsTo_wf_induct) 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   369
by (simp_tac (simpset() addsimps [inv_image_def, Image_singleton]) 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   370
by (Clarify_tac 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   371
by (case_tac "m<l" 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   372
by (blast_tac (claset() addIs [not_leE, subset_imp_LeadsTo]) 2);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   373
by (blast_tac (claset() addIs [LeadsTo_weaken_R, diff_less_mono2]) 1);
5277
e4297d03e5d2 A higher-level treatment of LeadsTo, minimizing use of "reachable"
paulson
parents: 5257
diff changeset
   374
qed "GreaterThan_bounded_induct";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   375
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   376
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   377
(*** Completion: Binary and General Finite versions ***)
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   378
6536
281d44905cab made many specification operators infix
paulson
parents: 6295
diff changeset
   379
Goal "[| F : A LeadsTo A';  F : Stable A';   \
281d44905cab made many specification operators infix
paulson
parents: 6295
diff changeset
   380
\        F : B LeadsTo B';  F : Stable B' |] \
281d44905cab made many specification operators infix
paulson
parents: 6295
diff changeset
   381
\     ==> F : (A Int B) LeadsTo (A' Int B')";
6575
70d758762c50 new definitions of Co and LeadsTo
paulson
parents: 6570
diff changeset
   382
by (full_simp_tac
70d758762c50 new definitions of Co and LeadsTo
paulson
parents: 6570
diff changeset
   383
    (simpset() addsimps [LeadsTo_eq_leadsTo, Stable_eq_stable]) 1);
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents: 5277
diff changeset
   384
by (blast_tac (claset() addIs [stable_completion, leadsTo_weaken]) 1);
5277
e4297d03e5d2 A higher-level treatment of LeadsTo, minimizing use of "reachable"
paulson
parents: 5257
diff changeset
   385
qed "Stable_completion";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   386
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   387
5584
aad639e56d4e Now id:(Acts prg) is implicit
paulson
parents: 5569
diff changeset
   388
Goal "finite I      \
6536
281d44905cab made many specification operators infix
paulson
parents: 6295
diff changeset
   389
\     ==> (ALL i:I. F : (A i) LeadsTo (A' i)) -->  \
5648
fe887910e32e specifications as sets of programs
paulson
parents: 5639
diff changeset
   390
\         (ALL i:I. F : Stable (A' i)) -->         \
6536
281d44905cab made many specification operators infix
paulson
parents: 6295
diff changeset
   391
\         F : (INT i:I. A i) LeadsTo (INT i:I. A' i)";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   392
by (etac finite_induct 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   393
by (Asm_simp_tac 1);
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents: 5277
diff changeset
   394
by (asm_simp_tac (simpset() addsimps [Stable_completion, ball_Stable_INT]) 1);
5277
e4297d03e5d2 A higher-level treatment of LeadsTo, minimizing use of "reachable"
paulson
parents: 5257
diff changeset
   395
qed_spec_mp "Finite_stable_completion";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   396
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   397
6536
281d44905cab made many specification operators infix
paulson
parents: 6295
diff changeset
   398
Goal "[| F : A LeadsTo (A' Un C);  F : A' Co (A' Un C); \
281d44905cab made many specification operators infix
paulson
parents: 6295
diff changeset
   399
\        F : B LeadsTo (B' Un C);  F : B' Co (B' Un C) |] \
281d44905cab made many specification operators infix
paulson
parents: 6295
diff changeset
   400
\     ==> F : (A Int B) LeadsTo ((A' Int B') Un C)";
6575
70d758762c50 new definitions of Co and LeadsTo
paulson
parents: 6570
diff changeset
   401
by (full_simp_tac
70d758762c50 new definitions of Co and LeadsTo
paulson
parents: 6570
diff changeset
   402
    (simpset() addsimps [LeadsTo_eq_leadsTo, Constrains_eq_constrains,
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents: 5277
diff changeset
   403
				       Int_Un_distrib]) 1);
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents: 5277
diff changeset
   404
by (blast_tac (claset() addIs [completion, leadsTo_weaken]) 1);
5277
e4297d03e5d2 A higher-level treatment of LeadsTo, minimizing use of "reachable"
paulson
parents: 5257
diff changeset
   405
qed "Completion";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   406
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   407
6564
paulson
parents: 6536
diff changeset
   408
Goal "finite I \
6536
281d44905cab made many specification operators infix
paulson
parents: 6295
diff changeset
   409
\     ==> (ALL i:I. F : (A i) LeadsTo (A' i Un C)) -->  \
281d44905cab made many specification operators infix
paulson
parents: 6295
diff changeset
   410
\         (ALL i:I. F : (A' i) Co (A' i Un C)) --> \
281d44905cab made many specification operators infix
paulson
parents: 6295
diff changeset
   411
\         F : (INT i:I. A i) LeadsTo ((INT i:I. A' i) Un C)";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   412
by (etac finite_induct 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   413
by (ALLGOALS Asm_simp_tac);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   414
by (Clarify_tac 1);
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents: 5277
diff changeset
   415
by (dtac ball_Constrains_INT 1);
5277
e4297d03e5d2 A higher-level treatment of LeadsTo, minimizing use of "reachable"
paulson
parents: 5257
diff changeset
   416
by (asm_full_simp_tac (simpset() addsimps [Completion]) 1); 
6564
paulson
parents: 6536
diff changeset
   417
qed_spec_mp "Finite_completion";
5232
e5a7cdd07ea5 Tidied; uses records
paulson
parents: 5111
diff changeset
   418
e5a7cdd07ea5 Tidied; uses records
paulson
parents: 5111
diff changeset
   419
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents: 5277
diff changeset
   420
(*proves "ensures/leadsTo" properties when the program is specified*)
5426
566f47250bd0 A new approach, using simp_of_act and simp_of_set to activate definitions when
paulson
parents: 5422
diff changeset
   421
fun ensures_tac sact = 
5240
bbcd79ef7cf2 Constant "invariant" and new constrains_tac, ensures_tac
paulson
parents: 5232
diff changeset
   422
    SELECT_GOAL
6570
a7d7985050a9 Invariant -> Always and other tidying
paulson
parents: 6564
diff changeset
   423
      (EVERY [REPEAT (Always_Int_tac 1),
a7d7985050a9 Invariant -> Always and other tidying
paulson
parents: 6564
diff changeset
   424
	      etac Always_LeadsTo_Basis 1 
5240
bbcd79ef7cf2 Constant "invariant" and new constrains_tac, ensures_tac
paulson
parents: 5232
diff changeset
   425
	          ORELSE   (*subgoal may involve LeadsTo, leadsTo or ensures*)
7522
d93b52bda2dd ensures_tac now handles leadsTo as well as LeadsTo
paulson
parents: 6909
diff changeset
   426
		  REPEAT (ares_tac [LeadsTo_Basis, leadsTo_Basis,
8122
b43ad07660b9 working version, with Alloc now working on the same state space as the whole
paulson
parents: 8069
diff changeset
   427
				    EnsuresI, ensuresI] 1),
6536
281d44905cab made many specification operators infix
paulson
parents: 6295
diff changeset
   428
	      (*now there are two subgoals: co & transient*)
5648
fe887910e32e specifications as sets of programs
paulson
parents: 5639
diff changeset
   429
	      simp_tac (simpset() addsimps !program_defs_ref) 2,
8041
e3237d8c18d6 working version with new theory ELT
paulson
parents: 7522
diff changeset
   430
	      res_inst_tac [("act", sact)] transientI 2,
5340
d75c03cf77b5 Misc changes
paulson
parents: 5313
diff changeset
   431
                 (*simplify the command's domain*)
5426
566f47250bd0 A new approach, using simp_of_act and simp_of_set to activate definitions when
paulson
parents: 5422
diff changeset
   432
	      simp_tac (simpset() addsimps [Domain_def]) 3,
566f47250bd0 A new approach, using simp_of_act and simp_of_set to activate definitions when
paulson
parents: 5422
diff changeset
   433
	      constrains_tac 1,
5240
bbcd79ef7cf2 Constant "invariant" and new constrains_tac, ensures_tac
paulson
parents: 5232
diff changeset
   434
	      ALLGOALS Clarify_tac,
5422
578dc167453f Moved constrains_tac from SubstAx to Constrains.
paulson
parents: 5340
diff changeset
   435
	      ALLGOALS Asm_full_simp_tac]);