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