src/HOL/UNITY/Alloc.ML
author wenzelm
Mon, 13 Mar 2000 13:21:39 +0100
changeset 8434 5e4bba59bfaa
parent 8327 108fcc85a767
child 8849 f1933a670ae4
permissions -rw-r--r--
use HOLogic.Not; export indexify_names;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
6828
ea6832d74353 not working but taking shape
paulson
parents: 6815
diff changeset
     1
(*  Title:      HOL/UNITY/Alloc
ea6832d74353 not working but taking shape
paulson
parents: 6815
diff changeset
     2
    ID:         $Id$
ea6832d74353 not working but taking shape
paulson
parents: 6815
diff changeset
     3
    Author:     Lawrence C Paulson, Cambridge University Computer Laboratory
ea6832d74353 not working but taking shape
paulson
parents: 6815
diff changeset
     4
    Copyright   1998  University of Cambridge
ea6832d74353 not working but taking shape
paulson
parents: 6815
diff changeset
     5
ea6832d74353 not working but taking shape
paulson
parents: 6815
diff changeset
     6
Specification of Chandy and Charpentier's Allocator
7540
8af61a565a4a working Safety proof for the system at last
paulson
parents: 7538
diff changeset
     7
8286
d4b895d3afa7 not working yet. partial conversion to use "rename" instead of "extend"
paulson
parents: 8251
diff changeset
     8
Goal "(plam x: lessThan Nclients. Client) = x";
d4b895d3afa7 not working yet. partial conversion to use "rename" instead of "extend"
paulson
parents: 8251
diff changeset
     9
Client :: (clientState * ((nat => clientState) * 'b)) program
6828
ea6832d74353 not working but taking shape
paulson
parents: 6815
diff changeset
    10
*)
ea6832d74353 not working but taking shape
paulson
parents: 6815
diff changeset
    11
8311
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
    12
(***USEFUL??*)
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
    13
Goal "surj h ==> h `` {s. P (h s)} = {s. P s}";
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
    14
by Auto_tac;
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
    15
by (force_tac (claset() addSIs [exI, surj_f_inv_f RS sym], 
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
    16
	       simpset() addsimps [surj_f_inv_f]) 1);
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
    17
qed "surj_image_Collect_lemma";
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
    18
8286
d4b895d3afa7 not working yet. partial conversion to use "rename" instead of "extend"
paulson
parents: 8251
diff changeset
    19
8065
658e0d4e4ed9 first working version to Alloc/System_Client_Progress;
paulson
parents: 8055
diff changeset
    20
AddIs [impOfSubs subset_preserves_o];
658e0d4e4ed9 first working version to Alloc/System_Client_Progress;
paulson
parents: 8055
diff changeset
    21
Addsimps [funPair_o_distrib];
8327
108fcc85a767 polished version of the Allocator using Rename
paulson
parents: 8314
diff changeset
    22
Addsimps [Always_INT_distrib];
8067
225e3b45b766 now workign as far as System_Alloc_Progress
paulson
parents: 8065
diff changeset
    23
Delsimps [o_apply];
225e3b45b766 now workign as far as System_Alloc_Progress
paulson
parents: 8065
diff changeset
    24
8314
463f63a9a7f2 even Alloc works again, using "rename"
paulson
parents: 8311
diff changeset
    25
(*Eliminate the "o" operator*)
7841
65d91d13fc13 working snapshot; more steps in Alloc
paulson
parents: 7826
diff changeset
    26
val o_simp = simplify (simpset() addsimps [o_def]);
7399
cf780c2bcccf changed "component" infix in HOL/UNITY/Comp.thy to be overloaded <
paulson
parents: 7365
diff changeset
    27
8314
463f63a9a7f2 even Alloc works again, using "rename"
paulson
parents: 8311
diff changeset
    28
(*For rewriting of specifications related by "guarantees"*)
463f63a9a7f2 even Alloc works again, using "rename"
paulson
parents: 8311
diff changeset
    29
Addsimps [rename_image_constrains, rename_image_stable, 
463f63a9a7f2 even Alloc works again, using "rename"
paulson
parents: 8311
diff changeset
    30
	  rename_image_increasing, rename_image_invariant,
463f63a9a7f2 even Alloc works again, using "rename"
paulson
parents: 8311
diff changeset
    31
	  rename_image_Constrains, rename_image_Stable,
463f63a9a7f2 even Alloc works again, using "rename"
paulson
parents: 8311
diff changeset
    32
	  rename_image_Increasing, rename_image_Always,
8327
108fcc85a767 polished version of the Allocator using Rename
paulson
parents: 8314
diff changeset
    33
	  rename_image_leadsTo, rename_image_LeadsTo,
108fcc85a767 polished version of the Allocator using Rename
paulson
parents: 8314
diff changeset
    34
	  rename_preserves,
108fcc85a767 polished version of the Allocator using Rename
paulson
parents: 8314
diff changeset
    35
	  bij_image_INT, bij_is_inj RS image_Int, bij_image_Collect_eq];
8065
658e0d4e4ed9 first working version to Alloc/System_Client_Progress;
paulson
parents: 8055
diff changeset
    36
8122
b43ad07660b9 working version, with Alloc now working on the same state space as the whole
paulson
parents: 8113
diff changeset
    37
(*Splits up conjunctions & intersections: like CONJUNCTS in the HOL system*)
b43ad07660b9 working version, with Alloc now working on the same state space as the whole
paulson
parents: 8113
diff changeset
    38
fun list_of_Int th = 
b43ad07660b9 working version, with Alloc now working on the same state space as the whole
paulson
parents: 8113
diff changeset
    39
    (list_of_Int (th RS conjunct1) @ list_of_Int (th RS conjunct2))
b43ad07660b9 working version, with Alloc now working on the same state space as the whole
paulson
parents: 8113
diff changeset
    40
    handle THM _ => (list_of_Int (th RS IntD1) @ list_of_Int (th RS IntD2))
b43ad07660b9 working version, with Alloc now working on the same state space as the whole
paulson
parents: 8113
diff changeset
    41
    handle THM _ => (list_of_Int (th RS INT_D))
b43ad07660b9 working version, with Alloc now working on the same state space as the whole
paulson
parents: 8113
diff changeset
    42
    handle THM _ => [th];
8065
658e0d4e4ed9 first working version to Alloc/System_Client_Progress;
paulson
parents: 8055
diff changeset
    43
8314
463f63a9a7f2 even Alloc works again, using "rename"
paulson
parents: 8311
diff changeset
    44
(*Used just once, for Alloc_Increasing*)
8065
658e0d4e4ed9 first working version to Alloc/System_Client_Progress;
paulson
parents: 8055
diff changeset
    45
val lessThanBspec = lessThan_iff RS iffD2 RSN (2, bspec);
658e0d4e4ed9 first working version to Alloc/System_Client_Progress;
paulson
parents: 8055
diff changeset
    46
fun normalize th = 
658e0d4e4ed9 first working version to Alloc/System_Client_Progress;
paulson
parents: 8055
diff changeset
    47
     normalize (th RS spec
658e0d4e4ed9 first working version to Alloc/System_Client_Progress;
paulson
parents: 8055
diff changeset
    48
		handle THM _ => th RS lessThanBspec
658e0d4e4ed9 first working version to Alloc/System_Client_Progress;
paulson
parents: 8055
diff changeset
    49
		handle THM _ => th RS bspec
658e0d4e4ed9 first working version to Alloc/System_Client_Progress;
paulson
parents: 8055
diff changeset
    50
		handle THM _ => th RS (guarantees_INT_right_iff RS iffD1))
658e0d4e4ed9 first working version to Alloc/System_Client_Progress;
paulson
parents: 8055
diff changeset
    51
     handle THM _ => th;
658e0d4e4ed9 first working version to Alloc/System_Client_Progress;
paulson
parents: 8055
diff changeset
    52
8067
225e3b45b766 now workign as far as System_Alloc_Progress
paulson
parents: 8065
diff changeset
    53
7538
357873391561 new rule PLam_ensures
paulson
parents: 7537
diff changeset
    54
Goal "(ALL i: lessThan n. f i <= g i) --> sum f n <= sum g n";
357873391561 new rule PLam_ensures
paulson
parents: 7537
diff changeset
    55
by (induct_tac "n" 1);
357873391561 new rule PLam_ensures
paulson
parents: 7537
diff changeset
    56
by Auto_tac;
357873391561 new rule PLam_ensures
paulson
parents: 7537
diff changeset
    57
by (dres_inst_tac [("x","n")] bspec 1);
357873391561 new rule PLam_ensures
paulson
parents: 7537
diff changeset
    58
by Auto_tac;
357873391561 new rule PLam_ensures
paulson
parents: 7537
diff changeset
    59
by (arith_tac 1);
357873391561 new rule PLam_ensures
paulson
parents: 7537
diff changeset
    60
qed_spec_mp "sum_mono";
357873391561 new rule PLam_ensures
paulson
parents: 7537
diff changeset
    61
7540
8af61a565a4a working Safety proof for the system at last
paulson
parents: 7538
diff changeset
    62
Goal "ALL xs. xs <= ys --> tokens xs <= tokens ys";
8af61a565a4a working Safety proof for the system at last
paulson
parents: 7538
diff changeset
    63
by (induct_tac "ys" 1);
8af61a565a4a working Safety proof for the system at last
paulson
parents: 7538
diff changeset
    64
by (auto_tac (claset(), simpset() addsimps [prefix_Cons]));
8af61a565a4a working Safety proof for the system at last
paulson
parents: 7538
diff changeset
    65
qed_spec_mp "tokens_mono_prefix";
8af61a565a4a working Safety proof for the system at last
paulson
parents: 7538
diff changeset
    66
8af61a565a4a working Safety proof for the system at last
paulson
parents: 7538
diff changeset
    67
Goalw [mono_def] "mono tokens";
8af61a565a4a working Safety proof for the system at last
paulson
parents: 7538
diff changeset
    68
by (blast_tac (claset() addIs [tokens_mono_prefix]) 1);
8af61a565a4a working Safety proof for the system at last
paulson
parents: 7538
diff changeset
    69
qed "mono_tokens";
7399
cf780c2bcccf changed "component" infix in HOL/UNITY/Comp.thy to be overloaded <
paulson
parents: 7365
diff changeset
    70
8314
463f63a9a7f2 even Alloc works again, using "rename"
paulson
parents: 8311
diff changeset
    71
463f63a9a7f2 even Alloc works again, using "rename"
paulson
parents: 8311
diff changeset
    72
(*** bijectivity of sysOfAlloc [MUST BE AUTOMATED] ***)
463f63a9a7f2 even Alloc works again, using "rename"
paulson
parents: 8311
diff changeset
    73
8286
d4b895d3afa7 not working yet. partial conversion to use "rename" instead of "extend"
paulson
parents: 8251
diff changeset
    74
Goalw [sysOfAlloc_def, Let_def] "inj sysOfAlloc";
6828
ea6832d74353 not working but taking shape
paulson
parents: 6815
diff changeset
    75
by (rtac injI 1);
7347
ad0ce67e4eb6 another snapshot
paulson
parents: 7188
diff changeset
    76
by (auto_tac (claset() addSWrapper record_split_wrapper, simpset()));
6828
ea6832d74353 not working but taking shape
paulson
parents: 6815
diff changeset
    77
qed "inj_sysOfAlloc";
8286
d4b895d3afa7 not working yet. partial conversion to use "rename" instead of "extend"
paulson
parents: 8251
diff changeset
    78
AddIffs [inj_sysOfAlloc];
7399
cf780c2bcccf changed "component" infix in HOL/UNITY/Comp.thy to be overloaded <
paulson
parents: 7365
diff changeset
    79
8314
463f63a9a7f2 even Alloc works again, using "rename"
paulson
parents: 8311
diff changeset
    80
(*We need the inverse; also having it simplifies the proof of surjectivity*)
7399
cf780c2bcccf changed "component" infix in HOL/UNITY/Comp.thy to be overloaded <
paulson
parents: 7365
diff changeset
    81
Goal "!!s. inv sysOfAlloc s = \
8286
d4b895d3afa7 not working yet. partial conversion to use "rename" instead of "extend"
paulson
parents: 8251
diff changeset
    82
\            (| allocGiv = allocGiv s,   \
d4b895d3afa7 not working yet. partial conversion to use "rename" instead of "extend"
paulson
parents: 8251
diff changeset
    83
\               allocAsk = allocAsk s,   \
d4b895d3afa7 not working yet. partial conversion to use "rename" instead of "extend"
paulson
parents: 8251
diff changeset
    84
\               allocRel = allocRel s,   \
d4b895d3afa7 not working yet. partial conversion to use "rename" instead of "extend"
paulson
parents: 8251
diff changeset
    85
\               allocState_u.extra = (client s, extra s) |)";
7399
cf780c2bcccf changed "component" infix in HOL/UNITY/Comp.thy to be overloaded <
paulson
parents: 7365
diff changeset
    86
by (rtac (inj_sysOfAlloc RS inv_f_eq) 1);
cf780c2bcccf changed "component" infix in HOL/UNITY/Comp.thy to be overloaded <
paulson
parents: 7365
diff changeset
    87
by (auto_tac (claset() addSWrapper record_split_wrapper, 
8286
d4b895d3afa7 not working yet. partial conversion to use "rename" instead of "extend"
paulson
parents: 8251
diff changeset
    88
	      simpset() addsimps [sysOfAlloc_def, Let_def]));
7399
cf780c2bcccf changed "component" infix in HOL/UNITY/Comp.thy to be overloaded <
paulson
parents: 7365
diff changeset
    89
qed "inv_sysOfAlloc_eq";
7538
357873391561 new rule PLam_ensures
paulson
parents: 7537
diff changeset
    90
Addsimps [inv_sysOfAlloc_eq];
7399
cf780c2bcccf changed "component" infix in HOL/UNITY/Comp.thy to be overloaded <
paulson
parents: 7365
diff changeset
    91
8286
d4b895d3afa7 not working yet. partial conversion to use "rename" instead of "extend"
paulson
parents: 8251
diff changeset
    92
Goal "surj sysOfAlloc";
8327
108fcc85a767 polished version of the Allocator using Rename
paulson
parents: 8314
diff changeset
    93
by (simp_tac (simpset() addsimps [surj_iff, expand_fun_eq, o_apply]) 1);
8286
d4b895d3afa7 not working yet. partial conversion to use "rename" instead of "extend"
paulson
parents: 8251
diff changeset
    94
by (auto_tac (claset() addSWrapper record_split_wrapper, 
d4b895d3afa7 not working yet. partial conversion to use "rename" instead of "extend"
paulson
parents: 8251
diff changeset
    95
	      simpset() addsimps [sysOfAlloc_def, Let_def]));
d4b895d3afa7 not working yet. partial conversion to use "rename" instead of "extend"
paulson
parents: 8251
diff changeset
    96
qed "surj_sysOfAlloc";
d4b895d3afa7 not working yet. partial conversion to use "rename" instead of "extend"
paulson
parents: 8251
diff changeset
    97
AddIffs [surj_sysOfAlloc];
d4b895d3afa7 not working yet. partial conversion to use "rename" instead of "extend"
paulson
parents: 8251
diff changeset
    98
d4b895d3afa7 not working yet. partial conversion to use "rename" instead of "extend"
paulson
parents: 8251
diff changeset
    99
Goal "bij sysOfAlloc";
d4b895d3afa7 not working yet. partial conversion to use "rename" instead of "extend"
paulson
parents: 8251
diff changeset
   100
by (blast_tac (claset() addIs [bijI]) 1);
d4b895d3afa7 not working yet. partial conversion to use "rename" instead of "extend"
paulson
parents: 8251
diff changeset
   101
qed "bij_sysOfAlloc";
d4b895d3afa7 not working yet. partial conversion to use "rename" instead of "extend"
paulson
parents: 8251
diff changeset
   102
AddIffs [bij_sysOfAlloc];
d4b895d3afa7 not working yet. partial conversion to use "rename" instead of "extend"
paulson
parents: 8251
diff changeset
   103
8314
463f63a9a7f2 even Alloc works again, using "rename"
paulson
parents: 8311
diff changeset
   104
463f63a9a7f2 even Alloc works again, using "rename"
paulson
parents: 8311
diff changeset
   105
(*** bijectivity of sysOfClient ***)
463f63a9a7f2 even Alloc works again, using "rename"
paulson
parents: 8311
diff changeset
   106
7347
ad0ce67e4eb6 another snapshot
paulson
parents: 7188
diff changeset
   107
Goalw [sysOfClient_def] "inj sysOfClient";
ad0ce67e4eb6 another snapshot
paulson
parents: 7188
diff changeset
   108
by (rtac injI 1);
8286
d4b895d3afa7 not working yet. partial conversion to use "rename" instead of "extend"
paulson
parents: 8251
diff changeset
   109
by (auto_tac (claset() addSWrapper record_split_wrapper, simpset()));
7347
ad0ce67e4eb6 another snapshot
paulson
parents: 7188
diff changeset
   110
qed "inj_sysOfClient";
8286
d4b895d3afa7 not working yet. partial conversion to use "rename" instead of "extend"
paulson
parents: 8251
diff changeset
   111
AddIffs [inj_sysOfClient];
6828
ea6832d74353 not working but taking shape
paulson
parents: 6815
diff changeset
   112
7347
ad0ce67e4eb6 another snapshot
paulson
parents: 7188
diff changeset
   113
Goal "!!s. inv sysOfClient s = \
ad0ce67e4eb6 another snapshot
paulson
parents: 7188
diff changeset
   114
\            (client s, \
ad0ce67e4eb6 another snapshot
paulson
parents: 7188
diff changeset
   115
\             (| allocGiv = allocGiv s, \
ad0ce67e4eb6 another snapshot
paulson
parents: 7188
diff changeset
   116
\                allocAsk = allocAsk s, \
8286
d4b895d3afa7 not working yet. partial conversion to use "rename" instead of "extend"
paulson
parents: 8251
diff changeset
   117
\                allocRel = allocRel s, \
d4b895d3afa7 not working yet. partial conversion to use "rename" instead of "extend"
paulson
parents: 8251
diff changeset
   118
\                allocState_u.extra = systemState.extra s|) )";
7347
ad0ce67e4eb6 another snapshot
paulson
parents: 7188
diff changeset
   119
by (rtac (inj_sysOfClient RS inv_f_eq) 1);
7399
cf780c2bcccf changed "component" infix in HOL/UNITY/Comp.thy to be overloaded <
paulson
parents: 7365
diff changeset
   120
by (auto_tac (claset() addSWrapper record_split_wrapper, 
8286
d4b895d3afa7 not working yet. partial conversion to use "rename" instead of "extend"
paulson
parents: 8251
diff changeset
   121
	      simpset() addsimps [sysOfClient_def]));
7365
b5bb32e0861c a bit further with property (1)
paulson
parents: 7347
diff changeset
   122
qed "inv_sysOfClient_eq";
7689
affe0c2fdfbf working snapshot (even Alloc)
paulson
parents: 7540
diff changeset
   123
Addsimps [inv_sysOfClient_eq];
6837
1bd850260747 another snapshot, still not working
paulson
parents: 6828
diff changeset
   124
8286
d4b895d3afa7 not working yet. partial conversion to use "rename" instead of "extend"
paulson
parents: 8251
diff changeset
   125
Goal "surj sysOfClient";
8327
108fcc85a767 polished version of the Allocator using Rename
paulson
parents: 8314
diff changeset
   126
by (simp_tac (simpset() addsimps [surj_iff, expand_fun_eq, o_apply]) 1);
8286
d4b895d3afa7 not working yet. partial conversion to use "rename" instead of "extend"
paulson
parents: 8251
diff changeset
   127
by (auto_tac (claset() addSWrapper record_split_wrapper, 
d4b895d3afa7 not working yet. partial conversion to use "rename" instead of "extend"
paulson
parents: 8251
diff changeset
   128
	      simpset() addsimps [sysOfClient_def]));
d4b895d3afa7 not working yet. partial conversion to use "rename" instead of "extend"
paulson
parents: 8251
diff changeset
   129
qed "surj_sysOfClient";
d4b895d3afa7 not working yet. partial conversion to use "rename" instead of "extend"
paulson
parents: 8251
diff changeset
   130
AddIffs [surj_sysOfClient];
d4b895d3afa7 not working yet. partial conversion to use "rename" instead of "extend"
paulson
parents: 8251
diff changeset
   131
d4b895d3afa7 not working yet. partial conversion to use "rename" instead of "extend"
paulson
parents: 8251
diff changeset
   132
Goal "bij sysOfClient";
d4b895d3afa7 not working yet. partial conversion to use "rename" instead of "extend"
paulson
parents: 8251
diff changeset
   133
by (blast_tac (claset() addIs [bijI]) 1);
d4b895d3afa7 not working yet. partial conversion to use "rename" instead of "extend"
paulson
parents: 8251
diff changeset
   134
qed "bij_sysOfClient";
d4b895d3afa7 not working yet. partial conversion to use "rename" instead of "extend"
paulson
parents: 8251
diff changeset
   135
AddIffs [bij_sysOfClient];
d4b895d3afa7 not working yet. partial conversion to use "rename" instead of "extend"
paulson
parents: 8251
diff changeset
   136
6837
1bd850260747 another snapshot, still not working
paulson
parents: 6828
diff changeset
   137
8314
463f63a9a7f2 even Alloc works again, using "rename"
paulson
parents: 8311
diff changeset
   138
(*** bijectivity of client_map ***)
8311
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   139
8314
463f63a9a7f2 even Alloc works again, using "rename"
paulson
parents: 8311
diff changeset
   140
Goal "inj client_map";
463f63a9a7f2 even Alloc works again, using "rename"
paulson
parents: 8311
diff changeset
   141
by (auto_tac (claset() addSWrapper record_split_wrapper, 
463f63a9a7f2 even Alloc works again, using "rename"
paulson
parents: 8311
diff changeset
   142
	      simpset() addsimps [client_map_def, non_extra_def, inj_on_def]));
463f63a9a7f2 even Alloc works again, using "rename"
paulson
parents: 8311
diff changeset
   143
qed "inj_client_map";
463f63a9a7f2 even Alloc works again, using "rename"
paulson
parents: 8311
diff changeset
   144
AddIffs [inj_client_map];
463f63a9a7f2 even Alloc works again, using "rename"
paulson
parents: 8311
diff changeset
   145
463f63a9a7f2 even Alloc works again, using "rename"
paulson
parents: 8311
diff changeset
   146
Goal "!!s. inv client_map s = \
463f63a9a7f2 even Alloc works again, using "rename"
paulson
parents: 8311
diff changeset
   147
\            (%(x,y).(|giv = giv x, ask = ask x, rel = rel x, \
463f63a9a7f2 even Alloc works again, using "rename"
paulson
parents: 8311
diff changeset
   148
\                      clientState_u.extra = y|)) s";
463f63a9a7f2 even Alloc works again, using "rename"
paulson
parents: 8311
diff changeset
   149
by (rtac (inj_client_map RS inv_f_eq) 1);
463f63a9a7f2 even Alloc works again, using "rename"
paulson
parents: 8311
diff changeset
   150
by (auto_tac (claset() addSWrapper record_split_wrapper, 
463f63a9a7f2 even Alloc works again, using "rename"
paulson
parents: 8311
diff changeset
   151
      simpset() addsimps [client_map_def, funPair_def, non_extra_def]));
463f63a9a7f2 even Alloc works again, using "rename"
paulson
parents: 8311
diff changeset
   152
qed "inv_client_map_eq";
463f63a9a7f2 even Alloc works again, using "rename"
paulson
parents: 8311
diff changeset
   153
Addsimps [inv_client_map_eq];
463f63a9a7f2 even Alloc works again, using "rename"
paulson
parents: 8311
diff changeset
   154
463f63a9a7f2 even Alloc works again, using "rename"
paulson
parents: 8311
diff changeset
   155
Goal "surj client_map";
8327
108fcc85a767 polished version of the Allocator using Rename
paulson
parents: 8314
diff changeset
   156
by (simp_tac (simpset() addsimps [surj_iff, expand_fun_eq, o_apply]) 1);
8314
463f63a9a7f2 even Alloc works again, using "rename"
paulson
parents: 8311
diff changeset
   157
by (auto_tac (claset() addSWrapper record_split_wrapper, 
463f63a9a7f2 even Alloc works again, using "rename"
paulson
parents: 8311
diff changeset
   158
	      simpset() addsimps [client_map_def, non_extra_def]));
463f63a9a7f2 even Alloc works again, using "rename"
paulson
parents: 8311
diff changeset
   159
qed "surj_client_map";
463f63a9a7f2 even Alloc works again, using "rename"
paulson
parents: 8311
diff changeset
   160
AddIffs [surj_client_map];
463f63a9a7f2 even Alloc works again, using "rename"
paulson
parents: 8311
diff changeset
   161
463f63a9a7f2 even Alloc works again, using "rename"
paulson
parents: 8311
diff changeset
   162
Goal "bij client_map";
463f63a9a7f2 even Alloc works again, using "rename"
paulson
parents: 8311
diff changeset
   163
by (blast_tac (claset() addIs [bijI]) 1);
463f63a9a7f2 even Alloc works again, using "rename"
paulson
parents: 8311
diff changeset
   164
qed "bij_client_map";
463f63a9a7f2 even Alloc works again, using "rename"
paulson
parents: 8311
diff changeset
   165
AddIffs [bij_client_map];
8311
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   166
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   167
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   168
(** o-simprules for client_map **)
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   169
8327
108fcc85a767 polished version of the Allocator using Rename
paulson
parents: 8314
diff changeset
   170
Goalw [client_map_def] "fst o client_map = non_extra";
108fcc85a767 polished version of the Allocator using Rename
paulson
parents: 8314
diff changeset
   171
by (rtac fst_o_funPair 1);
8311
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   172
qed "fst_o_client_map";
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   173
Addsimps (make_o_equivs fst_o_client_map);
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   174
8327
108fcc85a767 polished version of the Allocator using Rename
paulson
parents: 8314
diff changeset
   175
Goalw [client_map_def] "snd o client_map = clientState_u.extra";
108fcc85a767 polished version of the Allocator using Rename
paulson
parents: 8314
diff changeset
   176
by (rtac snd_o_funPair 1);
8311
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   177
qed "snd_o_client_map";
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   178
Addsimps (make_o_equivs snd_o_client_map);
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   179
8327
108fcc85a767 polished version of the Allocator using Rename
paulson
parents: 8314
diff changeset
   180
(** o-simprules for sysOfAlloc [MUST BE AUTOMATED] **)
8311
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   181
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   182
Goal "client o sysOfAlloc = fst o allocState_u.extra ";
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   183
by (rtac ext 1);
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   184
by (auto_tac (claset() addSWrapper record_split_wrapper, 
8327
108fcc85a767 polished version of the Allocator using Rename
paulson
parents: 8314
diff changeset
   185
	      simpset() addsimps [o_apply, sysOfAlloc_def, Let_def]));
8311
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   186
qed "client_o_sysOfAlloc";
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   187
Addsimps (make_o_equivs client_o_sysOfAlloc);
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   188
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   189
Goal "allocGiv o sysOfAlloc = allocGiv";
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   190
by (rtac ext 1);
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   191
by (auto_tac (claset() addSWrapper record_split_wrapper, 
8327
108fcc85a767 polished version of the Allocator using Rename
paulson
parents: 8314
diff changeset
   192
	      simpset() addsimps [sysOfAlloc_def, Let_def, o_apply]));
8311
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   193
qed "allocGiv_o_sysOfAlloc_eq";
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   194
Addsimps (make_o_equivs allocGiv_o_sysOfAlloc_eq);
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   195
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   196
Goal "allocAsk o sysOfAlloc = allocAsk";
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   197
by (rtac ext 1);
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   198
by (auto_tac (claset() addSWrapper record_split_wrapper, 
8327
108fcc85a767 polished version of the Allocator using Rename
paulson
parents: 8314
diff changeset
   199
	      simpset() addsimps [sysOfAlloc_def, Let_def, o_apply]));
8311
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   200
qed "allocAsk_o_sysOfAlloc_eq";
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   201
Addsimps (make_o_equivs allocAsk_o_sysOfAlloc_eq);
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   202
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   203
Goal "allocRel o sysOfAlloc = allocRel";
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   204
by (rtac ext 1);
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   205
by (auto_tac (claset() addSWrapper record_split_wrapper, 
8327
108fcc85a767 polished version of the Allocator using Rename
paulson
parents: 8314
diff changeset
   206
	      simpset() addsimps [sysOfAlloc_def, Let_def, o_apply]));
8311
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   207
qed "allocRel_o_sysOfAlloc_eq";
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   208
Addsimps (make_o_equivs allocRel_o_sysOfAlloc_eq);
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   209
8327
108fcc85a767 polished version of the Allocator using Rename
paulson
parents: 8314
diff changeset
   210
(** o-simprules for sysOfClient [MUST BE AUTOMATED] **)
8311
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   211
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   212
Goal "client o sysOfClient = fst";
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   213
by (rtac ext 1);
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   214
by (auto_tac (claset() addSWrapper record_split_wrapper, 
8327
108fcc85a767 polished version of the Allocator using Rename
paulson
parents: 8314
diff changeset
   215
	      simpset() addsimps [o_apply, sysOfClient_def]));
8311
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   216
qed "client_o_sysOfClient";
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   217
Addsimps (make_o_equivs client_o_sysOfClient);
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   218
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   219
Goal "allocGiv o sysOfClient = allocGiv o snd ";
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   220
by (rtac ext 1);
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   221
by (auto_tac (claset() addSWrapper record_split_wrapper, 
8327
108fcc85a767 polished version of the Allocator using Rename
paulson
parents: 8314
diff changeset
   222
	      simpset() addsimps [sysOfClient_def, o_apply]));
8311
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   223
qed "allocGiv_o_sysOfClient_eq";
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   224
Addsimps (make_o_equivs allocGiv_o_sysOfClient_eq);
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   225
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   226
Goal "allocAsk o sysOfClient = allocAsk o snd ";
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   227
by (rtac ext 1);
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   228
by (auto_tac (claset() addSWrapper record_split_wrapper, 
8327
108fcc85a767 polished version of the Allocator using Rename
paulson
parents: 8314
diff changeset
   229
	      simpset() addsimps [sysOfClient_def, o_apply]));
8311
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   230
qed "allocAsk_o_sysOfClient_eq";
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   231
Addsimps (make_o_equivs allocAsk_o_sysOfClient_eq);
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   232
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   233
Goal "allocRel o sysOfClient = allocRel o snd ";
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   234
by (rtac ext 1);
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   235
by (auto_tac (claset() addSWrapper record_split_wrapper, 
8327
108fcc85a767 polished version of the Allocator using Rename
paulson
parents: 8314
diff changeset
   236
	      simpset() addsimps [sysOfClient_def, o_apply]));
8311
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   237
qed "allocRel_o_sysOfClient_eq";
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   238
Addsimps (make_o_equivs allocRel_o_sysOfClient_eq);
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   239
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   240
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   241
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   242
(**
7365
b5bb32e0861c a bit further with property (1)
paulson
parents: 7347
diff changeset
   243
Open_locale "System";
b5bb32e0861c a bit further with property (1)
paulson
parents: 7347
diff changeset
   244
b5bb32e0861c a bit further with property (1)
paulson
parents: 7347
diff changeset
   245
val Alloc = thm "Alloc";
b5bb32e0861c a bit further with property (1)
paulson
parents: 7347
diff changeset
   246
val Client = thm "Client";
b5bb32e0861c a bit further with property (1)
paulson
parents: 7347
diff changeset
   247
val Network = thm "Network";
b5bb32e0861c a bit further with property (1)
paulson
parents: 7347
diff changeset
   248
val System_def = thm "System_def";
8314
463f63a9a7f2 even Alloc works again, using "rename"
paulson
parents: 8311
diff changeset
   249
463f63a9a7f2 even Alloc works again, using "rename"
paulson
parents: 8311
diff changeset
   250
(*CANNOT use bind_thm: it puts the theorem into standard form, in effect
463f63a9a7f2 even Alloc works again, using "rename"
paulson
parents: 8311
diff changeset
   251
  exporting it from the locale*)
8311
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   252
**)
7365
b5bb32e0861c a bit further with property (1)
paulson
parents: 7347
diff changeset
   253
b5bb32e0861c a bit further with property (1)
paulson
parents: 7347
diff changeset
   254
AddIffs [finite_lessThan];
b5bb32e0861c a bit further with property (1)
paulson
parents: 7347
diff changeset
   255
b5bb32e0861c a bit further with property (1)
paulson
parents: 7347
diff changeset
   256
(*Client : <unfolded specification> *)
b5bb32e0861c a bit further with property (1)
paulson
parents: 7347
diff changeset
   257
val Client_Spec =
b5bb32e0861c a bit further with property (1)
paulson
parents: 7347
diff changeset
   258
    rewrite_rule [client_spec_def, client_increasing_def,
8065
658e0d4e4ed9 first working version to Alloc/System_Client_Progress;
paulson
parents: 8055
diff changeset
   259
		  client_bounded_def, client_progress_def,
658e0d4e4ed9 first working version to Alloc/System_Client_Progress;
paulson
parents: 8055
diff changeset
   260
		  client_preserves_def] Client;
7365
b5bb32e0861c a bit further with property (1)
paulson
parents: 7347
diff changeset
   261
8311
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   262
val [Client_Increasing_ask, Client_Increasing_rel,
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   263
     Client_Bounded, Client_Progress, Client_preserves_giv,
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   264
     Client_preserves_extra] =
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   265
        Client_Spec 
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   266
          |> simplify (simpset() addsimps [guarantees_Int_right]) 
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   267
          |> list_of_Int;
7365
b5bb32e0861c a bit further with property (1)
paulson
parents: 7347
diff changeset
   268
8311
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   269
AddIffs [Client_Increasing_ask, Client_Increasing_rel, Client_Bounded,
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   270
	 Client_preserves_giv, Client_preserves_extra];
6828
ea6832d74353 not working but taking shape
paulson
parents: 6815
diff changeset
   271
ea6832d74353 not working but taking shape
paulson
parents: 6815
diff changeset
   272
7365
b5bb32e0861c a bit further with property (1)
paulson
parents: 7347
diff changeset
   273
(*Network : <unfolded specification> *)
b5bb32e0861c a bit further with property (1)
paulson
parents: 7347
diff changeset
   274
val Network_Spec =
8065
658e0d4e4ed9 first working version to Alloc/System_Client_Progress;
paulson
parents: 8055
diff changeset
   275
    rewrite_rule [network_spec_def, network_ask_def, network_giv_def, 
658e0d4e4ed9 first working version to Alloc/System_Client_Progress;
paulson
parents: 8055
diff changeset
   276
		  network_rel_def, network_preserves_def] Network;
7365
b5bb32e0861c a bit further with property (1)
paulson
parents: 7347
diff changeset
   277
8065
658e0d4e4ed9 first working version to Alloc/System_Client_Progress;
paulson
parents: 8055
diff changeset
   278
val [Network_Ask, Network_Giv, Network_Rel, 
658e0d4e4ed9 first working version to Alloc/System_Client_Progress;
paulson
parents: 8055
diff changeset
   279
     Network_preserves_allocGiv, Network_preserves_rel_ask] = 
658e0d4e4ed9 first working version to Alloc/System_Client_Progress;
paulson
parents: 8055
diff changeset
   280
    list_of_Int Network_Spec;
658e0d4e4ed9 first working version to Alloc/System_Client_Progress;
paulson
parents: 8055
diff changeset
   281
658e0d4e4ed9 first working version to Alloc/System_Client_Progress;
paulson
parents: 8055
diff changeset
   282
AddIffs  [Network_preserves_allocGiv];
658e0d4e4ed9 first working version to Alloc/System_Client_Progress;
paulson
parents: 8055
diff changeset
   283
8122
b43ad07660b9 working version, with Alloc now working on the same state space as the whole
paulson
parents: 8113
diff changeset
   284
Addsimps (Network_preserves_rel_ask |> simplify (simpset()) |> list_of_Int);
7365
b5bb32e0861c a bit further with property (1)
paulson
parents: 7347
diff changeset
   285
b5bb32e0861c a bit further with property (1)
paulson
parents: 7347
diff changeset
   286
b5bb32e0861c a bit further with property (1)
paulson
parents: 7347
diff changeset
   287
(*Alloc : <unfolded specification> *)
b5bb32e0861c a bit further with property (1)
paulson
parents: 7347
diff changeset
   288
val Alloc_Spec =
8065
658e0d4e4ed9 first working version to Alloc/System_Client_Progress;
paulson
parents: 8055
diff changeset
   289
    rewrite_rule [alloc_spec_def, alloc_increasing_def, alloc_safety_def, 
658e0d4e4ed9 first working version to Alloc/System_Client_Progress;
paulson
parents: 8055
diff changeset
   290
		  alloc_progress_def, alloc_preserves_def] Alloc;
7365
b5bb32e0861c a bit further with property (1)
paulson
parents: 7347
diff changeset
   291
8122
b43ad07660b9 working version, with Alloc now working on the same state space as the whole
paulson
parents: 8113
diff changeset
   292
val [Alloc_Increasing_0, Alloc_Safety, 
8069
19b9f92ca503 working with weak LeadsTo in guarantees precondition\!
paulson
parents: 8067
diff changeset
   293
     Alloc_Progress, Alloc_preserves] = list_of_Int Alloc_Spec;
7399
cf780c2bcccf changed "component" infix in HOL/UNITY/Comp.thy to be overloaded <
paulson
parents: 7365
diff changeset
   294
8122
b43ad07660b9 working version, with Alloc now working on the same state space as the whole
paulson
parents: 8113
diff changeset
   295
(*Strip off the INT in the guarantees postcondition*)
b43ad07660b9 working version, with Alloc now working on the same state space as the whole
paulson
parents: 8113
diff changeset
   296
val Alloc_Increasing = normalize Alloc_Increasing_0;
7365
b5bb32e0861c a bit further with property (1)
paulson
parents: 7347
diff changeset
   297
8122
b43ad07660b9 working version, with Alloc now working on the same state space as the whole
paulson
parents: 8113
diff changeset
   298
AddIffs (Alloc_preserves |> simplify (simpset()) |> list_of_Int);
b43ad07660b9 working version, with Alloc now working on the same state space as the whole
paulson
parents: 8113
diff changeset
   299
8327
108fcc85a767 polished version of the Allocator using Rename
paulson
parents: 8314
diff changeset
   300
(** Components lemmas [MUST BE AUTOMATED] **)
8065
658e0d4e4ed9 first working version to Alloc/System_Client_Progress;
paulson
parents: 8055
diff changeset
   301
8122
b43ad07660b9 working version, with Alloc now working on the same state space as the whole
paulson
parents: 8113
diff changeset
   302
Goal "Network Join \
8311
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   303
\     ((rename sysOfClient \
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   304
\       (plam x: lessThan Nclients. rename client_map Client)) Join \
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   305
\      rename sysOfAlloc Alloc) \
8122
b43ad07660b9 working version, with Alloc now working on the same state space as the whole
paulson
parents: 8113
diff changeset
   306
\     = System";
b43ad07660b9 working version, with Alloc now working on the same state space as the whole
paulson
parents: 8113
diff changeset
   307
by (simp_tac (simpset() addsimps System_def::Join_ac) 1);
b43ad07660b9 working version, with Alloc now working on the same state space as the whole
paulson
parents: 8113
diff changeset
   308
qed "Network_component_System";
8065
658e0d4e4ed9 first working version to Alloc/System_Client_Progress;
paulson
parents: 8055
diff changeset
   309
8314
463f63a9a7f2 even Alloc works again, using "rename"
paulson
parents: 8311
diff changeset
   310
Goal "(rename sysOfClient \
463f63a9a7f2 even Alloc works again, using "rename"
paulson
parents: 8311
diff changeset
   311
\      (plam x: lessThan Nclients. rename client_map Client)) Join \
8311
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   312
\     (Network Join rename sysOfAlloc Alloc)  =  System";
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   313
by (simp_tac (simpset() addsimps System_def::Join_ac) 1);
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   314
qed "Client_component_System";
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   315
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   316
Goal "rename sysOfAlloc Alloc Join \
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   317
\      ((rename sysOfClient (plam x: lessThan Nclients. rename client_map Client)) Join \
8122
b43ad07660b9 working version, with Alloc now working on the same state space as the whole
paulson
parents: 8113
diff changeset
   318
\       Network)  =  System";
b43ad07660b9 working version, with Alloc now working on the same state space as the whole
paulson
parents: 8113
diff changeset
   319
by (simp_tac (simpset() addsimps System_def::Join_ac) 1);
b43ad07660b9 working version, with Alloc now working on the same state space as the whole
paulson
parents: 8113
diff changeset
   320
qed "Alloc_component_System";
b43ad07660b9 working version, with Alloc now working on the same state space as the whole
paulson
parents: 8113
diff changeset
   321
b43ad07660b9 working version, with Alloc now working on the same state space as the whole
paulson
parents: 8113
diff changeset
   322
AddIffs [Client_component_System, Network_component_System, 
b43ad07660b9 working version, with Alloc now working on the same state space as the whole
paulson
parents: 8113
diff changeset
   323
	 Alloc_component_System];
8065
658e0d4e4ed9 first working version to Alloc/System_Client_Progress;
paulson
parents: 8055
diff changeset
   324
658e0d4e4ed9 first working version to Alloc/System_Client_Progress;
paulson
parents: 8055
diff changeset
   325
(** These preservation laws should be generated automatically **)
658e0d4e4ed9 first working version to Alloc/System_Client_Progress;
paulson
parents: 8055
diff changeset
   326
8311
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   327
AddIs    [impOfSubs subset_preserves_o];
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   328
Addsimps [impOfSubs subset_preserves_o];
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   329
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   330
(*Lifting Client_Increasing to systemState*)
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   331
Goal "i : I \
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   332
\     ==> rename sysOfClient (plam x: I. rename client_map Client) : \
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   333
\           UNIV \
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   334
\           guarantees[(funPair rel ask) o sub i o client]  \
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   335
\             Increasing (ask o sub i o client) Int \
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   336
\             Increasing (rel o sub i o client)";
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   337
by (simp_tac (simpset() addsimps [rename_guarantees_eq_rename_inv]) 1);
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   338
by (rtac guarantees_PLam_I 1);
8314
463f63a9a7f2 even Alloc works again, using "rename"
paulson
parents: 8311
diff changeset
   339
by (assume_tac 2);
8311
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   340
(*preserves: routine reasoning*)
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   341
by (asm_simp_tac (simpset() addsimps [lift_preserves_sub]) 2);
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   342
(*the guarantee for  "lift i (rename client_map Client)" *)
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   343
by (asm_simp_tac
8327
108fcc85a767 polished version of the Allocator using Rename
paulson
parents: 8314
diff changeset
   344
    (simpset() addsimps [lift_guarantees_eq_lift_inv,
8311
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   345
			 rename_guarantees_eq_rename_inv,
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   346
			 bij_imp_bij_inv, surj_rename RS surj_range,
8314
463f63a9a7f2 even Alloc works again, using "rename"
paulson
parents: 8311
diff changeset
   347
			 inv_inv_eq]) 1);
8311
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   348
by (asm_simp_tac
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   349
    (simpset() addsimps [o_def, non_extra_def, guarantees_Int_right]) 1);
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   350
qed "rename_Client_Increasing";
8065
658e0d4e4ed9 first working version to Alloc/System_Client_Progress;
paulson
parents: 8055
diff changeset
   351
8327
108fcc85a767 polished version of the Allocator using Rename
paulson
parents: 8314
diff changeset
   352
(*The proofs of rename_Client_Bounded and rename_Client_Progress are 
108fcc85a767 polished version of the Allocator using Rename
paulson
parents: 8314
diff changeset
   353
  similar to the one above.  All require copying out the original Client
108fcc85a767 polished version of the Allocator using Rename
paulson
parents: 8314
diff changeset
   354
  property.  A forward proof can be constructed as follows:
108fcc85a767 polished version of the Allocator using Rename
paulson
parents: 8314
diff changeset
   355
108fcc85a767 polished version of the Allocator using Rename
paulson
parents: 8314
diff changeset
   356
  Client_Increasing_ask RS
108fcc85a767 polished version of the Allocator using Rename
paulson
parents: 8314
diff changeset
   357
      (bij_client_map RS rename_rename_guarantees_eq RS iffD2)
108fcc85a767 polished version of the Allocator using Rename
paulson
parents: 8314
diff changeset
   358
  RS (lift_lift_guarantees_eq RS iffD2)
108fcc85a767 polished version of the Allocator using Rename
paulson
parents: 8314
diff changeset
   359
  RS guarantees_PLam_I
108fcc85a767 polished version of the Allocator using Rename
paulson
parents: 8314
diff changeset
   360
  RS (bij_sysOfClient RS rename_rename_guarantees_eq RS iffD2)
108fcc85a767 polished version of the Allocator using Rename
paulson
parents: 8314
diff changeset
   361
  |> simplify (simpset() addsimps [lift_image_eq_rename, o_def, split_def, 
108fcc85a767 polished version of the Allocator using Rename
paulson
parents: 8314
diff changeset
   362
				   surj_rename RS surj_range]);
108fcc85a767 polished version of the Allocator using Rename
paulson
parents: 8314
diff changeset
   363
108fcc85a767 polished version of the Allocator using Rename
paulson
parents: 8314
diff changeset
   364
However, the "preserves" property remains to be discharged, and the unfolding
108fcc85a767 polished version of the Allocator using Rename
paulson
parents: 8314
diff changeset
   365
of "o" and "sub" complicates subsequent reasoning.
108fcc85a767 polished version of the Allocator using Rename
paulson
parents: 8314
diff changeset
   366
*)
108fcc85a767 polished version of the Allocator using Rename
paulson
parents: 8314
diff changeset
   367
8311
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   368
Goal "i < Nclients \
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   369
\     ==> System : Increasing (ask o sub i o client) Int \
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   370
\                  Increasing (rel o sub i o client)";
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   371
by (rtac ([rename_Client_Increasing,
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   372
	   Client_component_System] MRS component_guaranteesD) 1);
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   373
by Auto_tac;
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   374
qed "System_Increasing";
8065
658e0d4e4ed9 first working version to Alloc/System_Client_Progress;
paulson
parents: 8055
diff changeset
   375
8327
108fcc85a767 polished version of the Allocator using Rename
paulson
parents: 8314
diff changeset
   376
bind_thm ("rename_guarantees_sysOfAlloc_I",
108fcc85a767 polished version of the Allocator using Rename
paulson
parents: 8314
diff changeset
   377
	  bij_sysOfAlloc RS rename_rename_guarantees_eq RS iffD2);
108fcc85a767 polished version of the Allocator using Rename
paulson
parents: 8314
diff changeset
   378
108fcc85a767 polished version of the Allocator using Rename
paulson
parents: 8314
diff changeset
   379
8314
463f63a9a7f2 even Alloc works again, using "rename"
paulson
parents: 8311
diff changeset
   380
(*Lifting Alloc_Increasing up to the level of systemState*)
463f63a9a7f2 even Alloc works again, using "rename"
paulson
parents: 8311
diff changeset
   381
val rename_Alloc_Increasing = 
8327
108fcc85a767 polished version of the Allocator using Rename
paulson
parents: 8314
diff changeset
   382
    Alloc_Increasing RS rename_guarantees_sysOfAlloc_I
108fcc85a767 polished version of the Allocator using Rename
paulson
parents: 8314
diff changeset
   383
     |> simplify (simpset() addsimps [surj_rename RS surj_range, o_def]);
8314
463f63a9a7f2 even Alloc works again, using "rename"
paulson
parents: 8311
diff changeset
   384
7841
65d91d13fc13 working snapshot; more steps in Alloc
paulson
parents: 7826
diff changeset
   385
Goalw [System_def]
65d91d13fc13 working snapshot; more steps in Alloc
paulson
parents: 7826
diff changeset
   386
     "i < Nclients ==> System : Increasing (sub i o allocGiv)";
8314
463f63a9a7f2 even Alloc works again, using "rename"
paulson
parents: 8311
diff changeset
   387
by (simp_tac (simpset() addsimps [o_def]) 1);
8311
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   388
by (rtac (rename_Alloc_Increasing RS guarantees_Join_I1 RS guaranteesD) 1);
7841
65d91d13fc13 working snapshot; more steps in Alloc
paulson
parents: 7826
diff changeset
   389
by Auto_tac;
65d91d13fc13 working snapshot; more steps in Alloc
paulson
parents: 7826
diff changeset
   390
qed "System_Increasing_allocGiv";
7365
b5bb32e0861c a bit further with property (1)
paulson
parents: 7347
diff changeset
   391
8311
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   392
AddSIs (list_of_Int System_Increasing);
6828
ea6832d74353 not working but taking shape
paulson
parents: 6815
diff changeset
   393
7841
65d91d13fc13 working snapshot; more steps in Alloc
paulson
parents: 7826
diff changeset
   394
(** Follows consequences.
65d91d13fc13 working snapshot; more steps in Alloc
paulson
parents: 7826
diff changeset
   395
    The "Always (INT ...) formulation expresses the general safety property
65d91d13fc13 working snapshot; more steps in Alloc
paulson
parents: 7826
diff changeset
   396
    and allows it to be combined using Always_Int_rule below. **)
65d91d13fc13 working snapshot; more steps in Alloc
paulson
parents: 7826
diff changeset
   397
8067
225e3b45b766 now workign as far as System_Alloc_Progress
paulson
parents: 8065
diff changeset
   398
Goal
225e3b45b766 now workign as far as System_Alloc_Progress
paulson
parents: 8065
diff changeset
   399
  "i < Nclients ==> System : ((sub i o allocRel) Fols (rel o sub i o client))";
8311
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   400
by (auto_tac (claset() addSIs [Network_Rel RS component_guaranteesD], 
8067
225e3b45b766 now workign as far as System_Alloc_Progress
paulson
parents: 8065
diff changeset
   401
	      simpset()));
225e3b45b766 now workign as far as System_Alloc_Progress
paulson
parents: 8065
diff changeset
   402
qed "System_Follows_rel";
225e3b45b766 now workign as far as System_Alloc_Progress
paulson
parents: 8065
diff changeset
   403
225e3b45b766 now workign as far as System_Alloc_Progress
paulson
parents: 8065
diff changeset
   404
Goal
225e3b45b766 now workign as far as System_Alloc_Progress
paulson
parents: 8065
diff changeset
   405
  "i < Nclients ==> System : ((sub i o allocAsk) Fols (ask o sub i o client))";
8311
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   406
by (auto_tac (claset() addSIs [Network_Ask RS component_guaranteesD], 
8067
225e3b45b766 now workign as far as System_Alloc_Progress
paulson
parents: 8065
diff changeset
   407
	      simpset()));
225e3b45b766 now workign as far as System_Alloc_Progress
paulson
parents: 8065
diff changeset
   408
qed "System_Follows_ask";
225e3b45b766 now workign as far as System_Alloc_Progress
paulson
parents: 8065
diff changeset
   409
225e3b45b766 now workign as far as System_Alloc_Progress
paulson
parents: 8065
diff changeset
   410
Goal
225e3b45b766 now workign as far as System_Alloc_Progress
paulson
parents: 8065
diff changeset
   411
  "i < Nclients ==> System : (giv o sub i o client) Fols (sub i o allocGiv)";
225e3b45b766 now workign as far as System_Alloc_Progress
paulson
parents: 8065
diff changeset
   412
by (auto_tac (claset() addSIs [Network_Giv RS component_guaranteesD, 
8311
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   413
		 rename_Alloc_Increasing RS component_guaranteesD], 
8067
225e3b45b766 now workign as far as System_Alloc_Progress
paulson
parents: 8065
diff changeset
   414
	      simpset()));
8314
463f63a9a7f2 even Alloc works again, using "rename"
paulson
parents: 8311
diff changeset
   415
by (ALLGOALS (simp_tac (simpset() addsimps [o_def, non_extra_def])));
463f63a9a7f2 even Alloc works again, using "rename"
paulson
parents: 8311
diff changeset
   416
by (auto_tac
463f63a9a7f2 even Alloc works again, using "rename"
paulson
parents: 8311
diff changeset
   417
    (claset() addSIs [rename_Alloc_Increasing RS component_guaranteesD],
463f63a9a7f2 even Alloc works again, using "rename"
paulson
parents: 8311
diff changeset
   418
     simpset()));
8067
225e3b45b766 now workign as far as System_Alloc_Progress
paulson
parents: 8065
diff changeset
   419
qed "System_Follows_allocGiv";
225e3b45b766 now workign as far as System_Alloc_Progress
paulson
parents: 8065
diff changeset
   420
7841
65d91d13fc13 working snapshot; more steps in Alloc
paulson
parents: 7826
diff changeset
   421
Goal "System : Always (INT i: lessThan Nclients. \
65d91d13fc13 working snapshot; more steps in Alloc
paulson
parents: 7826
diff changeset
   422
\                      {s. (giv o sub i o client) s <= (sub i o allocGiv) s})";
8327
108fcc85a767 polished version of the Allocator using Rename
paulson
parents: 8314
diff changeset
   423
by Auto_tac;
8067
225e3b45b766 now workign as far as System_Alloc_Progress
paulson
parents: 8065
diff changeset
   424
by (etac (System_Follows_allocGiv RS Follows_Bounded) 1);
7841
65d91d13fc13 working snapshot; more steps in Alloc
paulson
parents: 7826
diff changeset
   425
qed "Always_giv_le_allocGiv";
65d91d13fc13 working snapshot; more steps in Alloc
paulson
parents: 7826
diff changeset
   426
65d91d13fc13 working snapshot; more steps in Alloc
paulson
parents: 7826
diff changeset
   427
Goal "System : Always (INT i: lessThan Nclients. \
65d91d13fc13 working snapshot; more steps in Alloc
paulson
parents: 7826
diff changeset
   428
\                      {s. (sub i o allocAsk) s <= (ask o sub i o client) s})";
8327
108fcc85a767 polished version of the Allocator using Rename
paulson
parents: 8314
diff changeset
   429
by Auto_tac;
8067
225e3b45b766 now workign as far as System_Alloc_Progress
paulson
parents: 8065
diff changeset
   430
by (etac (System_Follows_ask RS Follows_Bounded) 1);
7841
65d91d13fc13 working snapshot; more steps in Alloc
paulson
parents: 7826
diff changeset
   431
qed "Always_allocAsk_le_ask";
65d91d13fc13 working snapshot; more steps in Alloc
paulson
parents: 7826
diff changeset
   432
65d91d13fc13 working snapshot; more steps in Alloc
paulson
parents: 7826
diff changeset
   433
Goal "System : Always (INT i: lessThan Nclients. \
65d91d13fc13 working snapshot; more steps in Alloc
paulson
parents: 7826
diff changeset
   434
\                      {s. (sub i o allocRel) s <= (rel o sub i o client) s})";
8067
225e3b45b766 now workign as far as System_Alloc_Progress
paulson
parents: 8065
diff changeset
   435
by (auto_tac (claset() addSIs [Follows_Bounded, System_Follows_rel], 
8327
108fcc85a767 polished version of the Allocator using Rename
paulson
parents: 8314
diff changeset
   436
	      simpset()));
7841
65d91d13fc13 working snapshot; more steps in Alloc
paulson
parents: 7826
diff changeset
   437
qed "Always_allocRel_le_rel";
65d91d13fc13 working snapshot; more steps in Alloc
paulson
parents: 7826
diff changeset
   438
65d91d13fc13 working snapshot; more steps in Alloc
paulson
parents: 7826
diff changeset
   439
65d91d13fc13 working snapshot; more steps in Alloc
paulson
parents: 7826
diff changeset
   440
(*** Proof of the safety property (1) ***)
65d91d13fc13 working snapshot; more steps in Alloc
paulson
parents: 7826
diff changeset
   441
65d91d13fc13 working snapshot; more steps in Alloc
paulson
parents: 7826
diff changeset
   442
(*safety (1), step 1 is System_Increasing_rel*)
65d91d13fc13 working snapshot; more steps in Alloc
paulson
parents: 7826
diff changeset
   443
7689
affe0c2fdfbf working snapshot (even Alloc)
paulson
parents: 7540
diff changeset
   444
(*safety (1), step 2*)
7365
b5bb32e0861c a bit further with property (1)
paulson
parents: 7347
diff changeset
   445
Goal "i < Nclients ==> System : Increasing (sub i o allocRel)";
8067
225e3b45b766 now workign as far as System_Alloc_Progress
paulson
parents: 8065
diff changeset
   446
by (etac (System_Follows_rel RS Follows_Increasing1) 1);
7365
b5bb32e0861c a bit further with property (1)
paulson
parents: 7347
diff changeset
   447
qed "System_Increasing_allocRel";
6828
ea6832d74353 not working but taking shape
paulson
parents: 6815
diff changeset
   448
8314
463f63a9a7f2 even Alloc works again, using "rename"
paulson
parents: 8311
diff changeset
   449
(*Lifting Alloc_safety up to the level of systemState*)
463f63a9a7f2 even Alloc works again, using "rename"
paulson
parents: 8311
diff changeset
   450
val rename_Alloc_Safety = 
8327
108fcc85a767 polished version of the Allocator using Rename
paulson
parents: 8314
diff changeset
   451
    Alloc_Safety RS rename_guarantees_sysOfAlloc_I
108fcc85a767 polished version of the Allocator using Rename
paulson
parents: 8314
diff changeset
   452
     |> simplify (simpset() addsimps [o_def]);
8311
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   453
7689
affe0c2fdfbf working snapshot (even Alloc)
paulson
parents: 7540
diff changeset
   454
(*safety (1), step 3*)
7399
cf780c2bcccf changed "component" infix in HOL/UNITY/Comp.thy to be overloaded <
paulson
parents: 7365
diff changeset
   455
Goal "System : Always {s. sum (%i. (tokens o sub i o allocGiv) s) Nclients \
cf780c2bcccf changed "component" infix in HOL/UNITY/Comp.thy to be overloaded <
paulson
parents: 7365
diff changeset
   456
\                  <= NbT + sum (%i. (tokens o sub i o allocRel) s) Nclients}";
8327
108fcc85a767 polished version of the Allocator using Rename
paulson
parents: 8314
diff changeset
   457
by (simp_tac (simpset() addsimps [o_apply]) 1);
108fcc85a767 polished version of the Allocator using Rename
paulson
parents: 8314
diff changeset
   458
by (rtac (rename_Alloc_Safety RS component_guaranteesD) 1);
108fcc85a767 polished version of the Allocator using Rename
paulson
parents: 8314
diff changeset
   459
by (auto_tac (claset(), 
108fcc85a767 polished version of the Allocator using Rename
paulson
parents: 8314
diff changeset
   460
	       simpset() addsimps [o_simp System_Increasing_allocRel]));
7538
357873391561 new rule PLam_ensures
paulson
parents: 7537
diff changeset
   461
qed "System_sum_bounded";
7537
875754b599df working snapshot
paulson
parents: 7482
diff changeset
   462
8314
463f63a9a7f2 even Alloc works again, using "rename"
paulson
parents: 8311
diff changeset
   463
7841
65d91d13fc13 working snapshot; more steps in Alloc
paulson
parents: 7826
diff changeset
   464
(** Follows reasoning **)
65d91d13fc13 working snapshot; more steps in Alloc
paulson
parents: 7826
diff changeset
   465
7540
8af61a565a4a working Safety proof for the system at last
paulson
parents: 7538
diff changeset
   466
Goal "System : Always (INT i: lessThan Nclients. \
8af61a565a4a working Safety proof for the system at last
paulson
parents: 7538
diff changeset
   467
\                         {s. (tokens o giv o sub i o client) s \
8af61a565a4a working Safety proof for the system at last
paulson
parents: 7538
diff changeset
   468
\                          <= (tokens o sub i o allocGiv) s})";
7841
65d91d13fc13 working snapshot; more steps in Alloc
paulson
parents: 7826
diff changeset
   469
by (rtac (Always_giv_le_allocGiv RS Always_weaken) 1);
8067
225e3b45b766 now workign as far as System_Alloc_Progress
paulson
parents: 8065
diff changeset
   470
by (auto_tac (claset() addIs [tokens_mono_prefix], 
225e3b45b766 now workign as far as System_Alloc_Progress
paulson
parents: 8065
diff changeset
   471
	      simpset() addsimps [o_apply]));
7841
65d91d13fc13 working snapshot; more steps in Alloc
paulson
parents: 7826
diff changeset
   472
qed "Always_tokens_giv_le_allocGiv";
7540
8af61a565a4a working Safety proof for the system at last
paulson
parents: 7538
diff changeset
   473
8af61a565a4a working Safety proof for the system at last
paulson
parents: 7538
diff changeset
   474
Goal "System : Always (INT i: lessThan Nclients. \
8af61a565a4a working Safety proof for the system at last
paulson
parents: 7538
diff changeset
   475
\                         {s. (tokens o sub i o allocRel) s \
8af61a565a4a working Safety proof for the system at last
paulson
parents: 7538
diff changeset
   476
\                          <= (tokens o rel o sub i o client) s})";
7841
65d91d13fc13 working snapshot; more steps in Alloc
paulson
parents: 7826
diff changeset
   477
by (rtac (Always_allocRel_le_rel RS Always_weaken) 1);
8067
225e3b45b766 now workign as far as System_Alloc_Progress
paulson
parents: 8065
diff changeset
   478
by (auto_tac (claset() addIs [tokens_mono_prefix], 
225e3b45b766 now workign as far as System_Alloc_Progress
paulson
parents: 8065
diff changeset
   479
	      simpset() addsimps [o_apply]));
7841
65d91d13fc13 working snapshot; more steps in Alloc
paulson
parents: 7826
diff changeset
   480
qed "Always_tokens_allocRel_le_rel";
7540
8af61a565a4a working Safety proof for the system at last
paulson
parents: 7538
diff changeset
   481
7841
65d91d13fc13 working snapshot; more steps in Alloc
paulson
parents: 7826
diff changeset
   482
(*safety (1), step 4 (final result!) *)
8128
3a5864b465e2 still working; a bit of polishing
paulson
parents: 8122
diff changeset
   483
Goalw [system_safety_def] "System : system_safety";
7841
65d91d13fc13 working snapshot; more steps in Alloc
paulson
parents: 7826
diff changeset
   484
by (rtac (Always_Int_rule [System_sum_bounded, Always_tokens_giv_le_allocGiv, 
65d91d13fc13 working snapshot; more steps in Alloc
paulson
parents: 7826
diff changeset
   485
			   Always_tokens_allocRel_le_rel] RS Always_weaken) 1);
7538
357873391561 new rule PLam_ensures
paulson
parents: 7537
diff changeset
   486
by Auto_tac;
7540
8af61a565a4a working Safety proof for the system at last
paulson
parents: 7538
diff changeset
   487
by (rtac (sum_mono RS order_trans) 1);
8af61a565a4a working Safety proof for the system at last
paulson
parents: 7538
diff changeset
   488
by (dtac order_trans 2);
8af61a565a4a working Safety proof for the system at last
paulson
parents: 7538
diff changeset
   489
by (rtac ([order_refl, sum_mono] MRS add_le_mono) 2);
8af61a565a4a working Safety proof for the system at last
paulson
parents: 7538
diff changeset
   490
by (assume_tac 3);
7482
7badd511844d working snapshot
paulson
parents: 7399
diff changeset
   491
by Auto_tac;
7540
8af61a565a4a working Safety proof for the system at last
paulson
parents: 7538
diff changeset
   492
qed "System_safety";
7399
cf780c2bcccf changed "component" infix in HOL/UNITY/Comp.thy to be overloaded <
paulson
parents: 7365
diff changeset
   493
7689
affe0c2fdfbf working snapshot (even Alloc)
paulson
parents: 7540
diff changeset
   494
affe0c2fdfbf working snapshot (even Alloc)
paulson
parents: 7540
diff changeset
   495
(*** Proof of the progress property (2) ***)
affe0c2fdfbf working snapshot (even Alloc)
paulson
parents: 7540
diff changeset
   496
7965
a00ad4ca6232 expandshort; tidied
paulson
parents: 7947
diff changeset
   497
(*Now there are proofs identical to System_Increasing_rel and
7689
affe0c2fdfbf working snapshot (even Alloc)
paulson
parents: 7540
diff changeset
   498
  System_Increasing_allocRel: tactics needed!*)
affe0c2fdfbf working snapshot (even Alloc)
paulson
parents: 7540
diff changeset
   499
7841
65d91d13fc13 working snapshot; more steps in Alloc
paulson
parents: 7826
diff changeset
   500
(*progress (2), step 1 is System_Increasing_ask and System_Increasing_rel*)
7689
affe0c2fdfbf working snapshot (even Alloc)
paulson
parents: 7540
diff changeset
   501
7841
65d91d13fc13 working snapshot; more steps in Alloc
paulson
parents: 7826
diff changeset
   502
(*progress (2), step 2; see also System_Increasing_allocRel*)
7689
affe0c2fdfbf working snapshot (even Alloc)
paulson
parents: 7540
diff changeset
   503
Goal "i < Nclients ==> System : Increasing (sub i o allocAsk)";
8311
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   504
by (etac (System_Follows_ask RS Follows_Increasing1) 1);
7689
affe0c2fdfbf working snapshot (even Alloc)
paulson
parents: 7540
diff changeset
   505
qed "System_Increasing_allocAsk";
affe0c2fdfbf working snapshot (even Alloc)
paulson
parents: 7540
diff changeset
   506
8311
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   507
(*progress (2), step 3*)
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   508
(*All this trouble just to lift "Client_Bounded" to systemState
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   509
  (though it is similar to that for Client_Increasing*)
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   510
Goal "i : I \
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   511
\   ==> rename sysOfClient (plam x: I. rename client_map Client) : \
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   512
\         UNIV \
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   513
\         guarantees[ask o sub i o client]  \
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   514
\           Always {s. ALL elt : set ((ask o sub i o client) s). elt <= NbT}";
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   515
by (simp_tac (simpset() addsimps [rename_guarantees_eq_rename_inv]) 1);
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   516
by (rtac guarantees_PLam_I 1);
8314
463f63a9a7f2 even Alloc works again, using "rename"
paulson
parents: 8311
diff changeset
   517
by (assume_tac 2);
8311
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   518
(*preserves: routine reasoning*)
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   519
by (asm_simp_tac (simpset() addsimps [lift_preserves_sub]) 2);
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   520
(*the guarantee for  "lift i (rename client_map Client)" *)
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   521
by (asm_simp_tac
8327
108fcc85a767 polished version of the Allocator using Rename
paulson
parents: 8314
diff changeset
   522
    (simpset() addsimps [lift_guarantees_eq_lift_inv,
8311
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   523
			 rename_guarantees_eq_rename_inv,
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   524
			 bij_imp_bij_inv, surj_rename RS surj_range,
8327
108fcc85a767 polished version of the Allocator using Rename
paulson
parents: 8314
diff changeset
   525
			 inv_inv_eq]) 1);
8311
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   526
by (asm_simp_tac (simpset() addsimps [o_def, non_extra_def]) 1);
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   527
qed "rename_Client_Bounded";
7841
65d91d13fc13 working snapshot; more steps in Alloc
paulson
parents: 7826
diff changeset
   528
8122
b43ad07660b9 working version, with Alloc now working on the same state space as the whole
paulson
parents: 8113
diff changeset
   529
Goal "i < Nclients \
b43ad07660b9 working version, with Alloc now working on the same state space as the whole
paulson
parents: 8113
diff changeset
   530
\     ==> System : Always \
b43ad07660b9 working version, with Alloc now working on the same state space as the whole
paulson
parents: 8113
diff changeset
   531
\                   {s. ALL elt : set ((ask o sub i o client) s). elt <= NbT}";
8311
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   532
by (rtac ([rename_Client_Bounded,
8122
b43ad07660b9 working version, with Alloc now working on the same state space as the whole
paulson
parents: 8113
diff changeset
   533
	   Client_component_System] MRS component_guaranteesD) 1);
8311
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   534
by Auto_tac;
7841
65d91d13fc13 working snapshot; more steps in Alloc
paulson
parents: 7826
diff changeset
   535
qed "System_Bounded_ask";
65d91d13fc13 working snapshot; more steps in Alloc
paulson
parents: 7826
diff changeset
   536
65d91d13fc13 working snapshot; more steps in Alloc
paulson
parents: 7826
diff changeset
   537
(*progress (2), step 4*)
65d91d13fc13 working snapshot; more steps in Alloc
paulson
parents: 7826
diff changeset
   538
Goal "System : Always {s. ALL i : lessThan Nclients. \
65d91d13fc13 working snapshot; more steps in Alloc
paulson
parents: 7826
diff changeset
   539
\                          ALL elt : set ((sub i o allocAsk) s). elt <= NbT}";
65d91d13fc13 working snapshot; more steps in Alloc
paulson
parents: 7826
diff changeset
   540
by (auto_tac (claset(), 
8327
108fcc85a767 polished version of the Allocator using Rename
paulson
parents: 8314
diff changeset
   541
	      simpset() addsimps [Collect_ball_eq]));
7841
65d91d13fc13 working snapshot; more steps in Alloc
paulson
parents: 7826
diff changeset
   542
by (rtac (Always_Int_rule [Always_allocAsk_le_ask, System_Bounded_ask] 
65d91d13fc13 working snapshot; more steps in Alloc
paulson
parents: 7826
diff changeset
   543
    RS Always_weaken) 1);
8065
658e0d4e4ed9 first working version to Alloc/System_Client_Progress;
paulson
parents: 8055
diff changeset
   544
by (auto_tac (claset() addDs [set_mono], simpset()));
7841
65d91d13fc13 working snapshot; more steps in Alloc
paulson
parents: 7826
diff changeset
   545
qed "System_Bounded_allocAsk";
65d91d13fc13 working snapshot; more steps in Alloc
paulson
parents: 7826
diff changeset
   546
7965
a00ad4ca6232 expandshort; tidied
paulson
parents: 7947
diff changeset
   547
(*progress (2), step 5 is System_Increasing_allocGiv*)
7841
65d91d13fc13 working snapshot; more steps in Alloc
paulson
parents: 7826
diff changeset
   548
7965
a00ad4ca6232 expandshort; tidied
paulson
parents: 7947
diff changeset
   549
(*progress (2), step 6*)
7841
65d91d13fc13 working snapshot; more steps in Alloc
paulson
parents: 7826
diff changeset
   550
Goal "i < Nclients ==> System : Increasing (giv o sub i o client)";
8311
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   551
by (etac (System_Follows_allocGiv RS Follows_Increasing1) 1);
7841
65d91d13fc13 working snapshot; more steps in Alloc
paulson
parents: 7826
diff changeset
   552
qed "System_Increasing_giv";
65d91d13fc13 working snapshot; more steps in Alloc
paulson
parents: 7826
diff changeset
   553
8311
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   554
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   555
Goal "i: I \
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   556
\  ==> rename sysOfClient (plam x: I. rename client_map Client) \
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   557
\       : Increasing (giv o sub i o client)  \
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   558
\         guarantees[funPair rel ask o sub i o client] \
8314
463f63a9a7f2 even Alloc works again, using "rename"
paulson
parents: 8311
diff changeset
   559
\         (INT h. {s. h <= (giv o sub i o client) s & \
463f63a9a7f2 even Alloc works again, using "rename"
paulson
parents: 8311
diff changeset
   560
\                           h pfixGe (ask o sub i o client) s}  \
8311
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   561
\                 LeadsTo {s. tokens h <= (tokens o rel o sub i o client) s})";
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   562
by (simp_tac (simpset() addsimps [rename_guarantees_eq_rename_inv]) 1);
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   563
by (rtac guarantees_PLam_I 1);
8314
463f63a9a7f2 even Alloc works again, using "rename"
paulson
parents: 8311
diff changeset
   564
by (assume_tac 2);
8311
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   565
(*preserves: routine reasoning*)
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   566
by (asm_simp_tac (simpset() addsimps [lift_preserves_sub]) 2);
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   567
(*the guarantee for  "lift i (rename client_map Client)" *)
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   568
by (asm_simp_tac
8327
108fcc85a767 polished version of the Allocator using Rename
paulson
parents: 8314
diff changeset
   569
    (simpset() addsimps [lift_guarantees_eq_lift_inv,
8311
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   570
			 rename_guarantees_eq_rename_inv,
8327
108fcc85a767 polished version of the Allocator using Rename
paulson
parents: 8314
diff changeset
   571
			 bij_imp_bij_inv, inv_inv_eq]) 1);
8314
463f63a9a7f2 even Alloc works again, using "rename"
paulson
parents: 8311
diff changeset
   572
by (asm_simp_tac (simpset() addsimps [o_def, non_extra_def,
463f63a9a7f2 even Alloc works again, using "rename"
paulson
parents: 8311
diff changeset
   573
				  rewrite_rule [o_def] Client_Progress]) 1);
8311
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   574
qed "rename_Client_Progress";
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   575
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   576
7965
a00ad4ca6232 expandshort; tidied
paulson
parents: 7947
diff changeset
   577
(*progress (2), step 7*)
8122
b43ad07660b9 working version, with Alloc now working on the same state space as the whole
paulson
parents: 8113
diff changeset
   578
Goal
8065
658e0d4e4ed9 first working version to Alloc/System_Client_Progress;
paulson
parents: 8055
diff changeset
   579
 "System : (INT i : lessThan Nclients. \
658e0d4e4ed9 first working version to Alloc/System_Client_Progress;
paulson
parents: 8055
diff changeset
   580
\           INT h. {s. h <= (giv o sub i o client) s & \
658e0d4e4ed9 first working version to Alloc/System_Client_Progress;
paulson
parents: 8055
diff changeset
   581
\                      h pfixGe (ask o sub i o client) s}  \
8314
463f63a9a7f2 even Alloc works again, using "rename"
paulson
parents: 8311
diff changeset
   582
\               LeadsTo {s. tokens h <= (tokens o rel o sub i o client) s})";
8122
b43ad07660b9 working version, with Alloc now working on the same state space as the whole
paulson
parents: 8113
diff changeset
   583
by (rtac INT_I 1);
8065
658e0d4e4ed9 first working version to Alloc/System_Client_Progress;
paulson
parents: 8055
diff changeset
   584
(*Couldn't have just used Auto_tac since the "INT h" must be kept*)
8311
6218522253e7 new mostly working version; Alloc nearly converted to "Rename"
paulson
parents: 8286
diff changeset
   585
by (rtac ([rename_Client_Progress,
8122
b43ad07660b9 working version, with Alloc now working on the same state space as the whole
paulson
parents: 8113
diff changeset
   586
	   Client_component_System] MRS component_guaranteesD) 1);
8327
108fcc85a767 polished version of the Allocator using Rename
paulson
parents: 8314
diff changeset
   587
by (asm_full_simp_tac (simpset() addsimps [System_Increasing_giv]) 2);
8128
3a5864b465e2 still working; a bit of polishing
paulson
parents: 8122
diff changeset
   588
by Auto_tac;
8065
658e0d4e4ed9 first working version to Alloc/System_Client_Progress;
paulson
parents: 8055
diff changeset
   589
qed "System_Client_Progress";
8055
bb15396278fb abolition of localTo: instead "guarantees" has local vars as extra argument
paulson
parents: 8041
diff changeset
   590
8314
463f63a9a7f2 even Alloc works again, using "rename"
paulson
parents: 8311
diff changeset
   591
(*Concludes
463f63a9a7f2 even Alloc works again, using "rename"
paulson
parents: 8311
diff changeset
   592
 System : {s. k <= (sub i o allocGiv) s} 
463f63a9a7f2 even Alloc works again, using "rename"
paulson
parents: 8311
diff changeset
   593
          LeadsTo
463f63a9a7f2 even Alloc works again, using "rename"
paulson
parents: 8311
diff changeset
   594
          {s. (sub i o allocAsk) s <= (ask o sub i o client) s} Int
463f63a9a7f2 even Alloc works again, using "rename"
paulson
parents: 8311
diff changeset
   595
          {s. k <= (giv o sub i o client) s} *)
8067
225e3b45b766 now workign as far as System_Alloc_Progress
paulson
parents: 8065
diff changeset
   596
val lemma =
225e3b45b766 now workign as far as System_Alloc_Progress
paulson
parents: 8065
diff changeset
   597
    [System_Follows_ask RS Follows_Bounded,
225e3b45b766 now workign as far as System_Alloc_Progress
paulson
parents: 8065
diff changeset
   598
     System_Follows_allocGiv RS Follows_LeadsTo] MRS Always_LeadsToD;
8041
e3237d8c18d6 working version with new theory ELT
paulson
parents: 7965
diff changeset
   599
8314
463f63a9a7f2 even Alloc works again, using "rename"
paulson
parents: 8311
diff changeset
   600
(*A more complicated variant of the previous one*)
8067
225e3b45b766 now workign as far as System_Alloc_Progress
paulson
parents: 8065
diff changeset
   601
val lemma2 = [lemma, 
225e3b45b766 now workign as far as System_Alloc_Progress
paulson
parents: 8065
diff changeset
   602
	      System_Follows_ask RS Follows_Increasing1 RS IncreasingD]
225e3b45b766 now workign as far as System_Alloc_Progress
paulson
parents: 8065
diff changeset
   603
             MRS PSP_Stable;
225e3b45b766 now workign as far as System_Alloc_Progress
paulson
parents: 8065
diff changeset
   604
225e3b45b766 now workign as far as System_Alloc_Progress
paulson
parents: 8065
diff changeset
   605
Goal "i < Nclients \
225e3b45b766 now workign as far as System_Alloc_Progress
paulson
parents: 8065
diff changeset
   606
\     ==> System : {s. h <= (sub i o allocGiv) s &      \
225e3b45b766 now workign as far as System_Alloc_Progress
paulson
parents: 8065
diff changeset
   607
\                      h pfixGe (sub i o allocAsk) s}   \
225e3b45b766 now workign as far as System_Alloc_Progress
paulson
parents: 8065
diff changeset
   608
\                  LeadsTo  \
225e3b45b766 now workign as far as System_Alloc_Progress
paulson
parents: 8065
diff changeset
   609
\                  {s. h <= (giv o sub i o client) s &  \
225e3b45b766 now workign as far as System_Alloc_Progress
paulson
parents: 8065
diff changeset
   610
\                      h pfixGe (ask o sub i o client) s}";
225e3b45b766 now workign as far as System_Alloc_Progress
paulson
parents: 8065
diff changeset
   611
by (rtac single_LeadsTo_I 1);
225e3b45b766 now workign as far as System_Alloc_Progress
paulson
parents: 8065
diff changeset
   612
by (res_inst_tac [("k6", "h"), ("x2", "(sub i o allocAsk) s")]
225e3b45b766 now workign as far as System_Alloc_Progress
paulson
parents: 8065
diff changeset
   613
    (lemma2 RS LeadsTo_weaken) 1);
225e3b45b766 now workign as far as System_Alloc_Progress
paulson
parents: 8065
diff changeset
   614
by Auto_tac;
225e3b45b766 now workign as far as System_Alloc_Progress
paulson
parents: 8065
diff changeset
   615
by (blast_tac (claset() addIs [trans_Ge RS trans_genPrefix RS transD,
225e3b45b766 now workign as far as System_Alloc_Progress
paulson
parents: 8065
diff changeset
   616
			       prefix_imp_pfixGe]) 1);
225e3b45b766 now workign as far as System_Alloc_Progress
paulson
parents: 8065
diff changeset
   617
val lemma3 = result();
225e3b45b766 now workign as far as System_Alloc_Progress
paulson
parents: 8065
diff changeset
   618
225e3b45b766 now workign as far as System_Alloc_Progress
paulson
parents: 8065
diff changeset
   619
8122
b43ad07660b9 working version, with Alloc now working on the same state space as the whole
paulson
parents: 8113
diff changeset
   620
(*progress (2), step 8: Client i's "release" action is visible system-wide*)
8075
93b62f856af7 tidied, with a bit more progress
paulson
parents: 8069
diff changeset
   621
Goal "i < Nclients  \
93b62f856af7 tidied, with a bit more progress
paulson
parents: 8069
diff changeset
   622
\     ==> System : {s. h <= (sub i o allocGiv) s & \
8067
225e3b45b766 now workign as far as System_Alloc_Progress
paulson
parents: 8065
diff changeset
   623
\                      h pfixGe (sub i o allocAsk) s}  \
8075
93b62f856af7 tidied, with a bit more progress
paulson
parents: 8069
diff changeset
   624
\                  LeadsTo {s. tokens h <= (tokens o sub i o allocRel) s}";
8067
225e3b45b766 now workign as far as System_Alloc_Progress
paulson
parents: 8065
diff changeset
   625
by (rtac LeadsTo_Trans 1);
225e3b45b766 now workign as far as System_Alloc_Progress
paulson
parents: 8065
diff changeset
   626
by (dtac (System_Follows_rel RS impOfSubs (mono_tokens RS mono_Follows_o) RS 
8113
paulson
parents: 8075
diff changeset
   627
	  Follows_LeadsTo) 2);
8067
225e3b45b766 now workign as far as System_Alloc_Progress
paulson
parents: 8065
diff changeset
   628
by (asm_full_simp_tac (simpset() addsimps [o_assoc]) 2);
225e3b45b766 now workign as far as System_Alloc_Progress
paulson
parents: 8065
diff changeset
   629
by (rtac LeadsTo_Trans 1);
225e3b45b766 now workign as far as System_Alloc_Progress
paulson
parents: 8065
diff changeset
   630
by (cut_facts_tac [System_Client_Progress] 2);
8122
b43ad07660b9 working version, with Alloc now working on the same state space as the whole
paulson
parents: 8113
diff changeset
   631
by (blast_tac (claset() addIs [LeadsTo_Basis]) 2);
8067
225e3b45b766 now workign as far as System_Alloc_Progress
paulson
parents: 8065
diff changeset
   632
by (etac lemma3 1);
8122
b43ad07660b9 working version, with Alloc now working on the same state space as the whole
paulson
parents: 8113
diff changeset
   633
qed "System_Alloc_Client_Progress";
8069
19b9f92ca503 working with weak LeadsTo in guarantees precondition\!
paulson
parents: 8067
diff changeset
   634
8314
463f63a9a7f2 even Alloc works again, using "rename"
paulson
parents: 8311
diff changeset
   635
(*Lifting Alloc_Progress up to the level of systemState*)
463f63a9a7f2 even Alloc works again, using "rename"
paulson
parents: 8311
diff changeset
   636
val rename_Alloc_Progress = 
8327
108fcc85a767 polished version of the Allocator using Rename
paulson
parents: 8314
diff changeset
   637
    Alloc_Progress RS rename_guarantees_sysOfAlloc_I
108fcc85a767 polished version of the Allocator using Rename
paulson
parents: 8314
diff changeset
   638
     |> simplify (simpset() addsimps [o_def]);
8075
93b62f856af7 tidied, with a bit more progress
paulson
parents: 8069
diff changeset
   639
8069
19b9f92ca503 working with weak LeadsTo in guarantees precondition\!
paulson
parents: 8067
diff changeset
   640
(*progress (2), step 9*)
19b9f92ca503 working with weak LeadsTo in guarantees precondition\!
paulson
parents: 8067
diff changeset
   641
Goal
19b9f92ca503 working with weak LeadsTo in guarantees precondition\!
paulson
parents: 8067
diff changeset
   642
 "System : (INT i : lessThan Nclients. \
19b9f92ca503 working with weak LeadsTo in guarantees precondition\!
paulson
parents: 8067
diff changeset
   643
\           INT h. {s. h <= (sub i o allocAsk) s}  \
8122
b43ad07660b9 working version, with Alloc now working on the same state space as the whole
paulson
parents: 8113
diff changeset
   644
\                  LeadsTo {s. h pfixLe (sub i o allocGiv) s})";
8314
463f63a9a7f2 even Alloc works again, using "rename"
paulson
parents: 8311
diff changeset
   645
(*Can't use simpset(): the "INT h" must be kept*)
8327
108fcc85a767 polished version of the Allocator using Rename
paulson
parents: 8314
diff changeset
   646
by (simp_tac (HOL_ss addsimps [o_apply, sub_def]) 1);
108fcc85a767 polished version of the Allocator using Rename
paulson
parents: 8314
diff changeset
   647
by (rtac (rename_Alloc_Progress RS component_guaranteesD) 1);
8075
93b62f856af7 tidied, with a bit more progress
paulson
parents: 8069
diff changeset
   648
by (auto_tac (claset(), 
8314
463f63a9a7f2 even Alloc works again, using "rename"
paulson
parents: 8311
diff changeset
   649
	      simpset() addsimps [o_simp System_Increasing_allocRel,
463f63a9a7f2 even Alloc works again, using "rename"
paulson
parents: 8311
diff changeset
   650
				  o_simp System_Increasing_allocAsk,
463f63a9a7f2 even Alloc works again, using "rename"
paulson
parents: 8311
diff changeset
   651
				  o_simp System_Bounded_allocAsk,
463f63a9a7f2 even Alloc works again, using "rename"
paulson
parents: 8311
diff changeset
   652
				  o_simp System_Alloc_Client_Progress]));
8122
b43ad07660b9 working version, with Alloc now working on the same state space as the whole
paulson
parents: 8113
diff changeset
   653
qed "System_Alloc_Progress";
b43ad07660b9 working version, with Alloc now working on the same state space as the whole
paulson
parents: 8113
diff changeset
   654
b43ad07660b9 working version, with Alloc now working on the same state space as the whole
paulson
parents: 8113
diff changeset
   655
8128
3a5864b465e2 still working; a bit of polishing
paulson
parents: 8122
diff changeset
   656
(*progress (2), step 10 (final result!) *)
3a5864b465e2 still working; a bit of polishing
paulson
parents: 8122
diff changeset
   657
Goalw [system_progress_def] "System : system_progress";
3a5864b465e2 still working; a bit of polishing
paulson
parents: 8122
diff changeset
   658
by (Clarify_tac 1);
3a5864b465e2 still working; a bit of polishing
paulson
parents: 8122
diff changeset
   659
by (rtac LeadsTo_Trans 1);
3a5864b465e2 still working; a bit of polishing
paulson
parents: 8122
diff changeset
   660
by (etac (System_Follows_allocGiv RS Follows_LeadsTo_pfixLe) 2);
3a5864b465e2 still working; a bit of polishing
paulson
parents: 8122
diff changeset
   661
by (rtac LeadsTo_Trans 1);
3a5864b465e2 still working; a bit of polishing
paulson
parents: 8122
diff changeset
   662
by (cut_facts_tac [System_Alloc_Progress] 2);
3a5864b465e2 still working; a bit of polishing
paulson
parents: 8122
diff changeset
   663
by (Blast_tac 2);
3a5864b465e2 still working; a bit of polishing
paulson
parents: 8122
diff changeset
   664
by (etac (System_Follows_ask RS Follows_LeadsTo) 1);
3a5864b465e2 still working; a bit of polishing
paulson
parents: 8122
diff changeset
   665
qed "System_Progress";
3a5864b465e2 still working; a bit of polishing
paulson
parents: 8122
diff changeset
   666
8122
b43ad07660b9 working version, with Alloc now working on the same state space as the whole
paulson
parents: 8113
diff changeset
   667
b43ad07660b9 working version, with Alloc now working on the same state space as the whole
paulson
parents: 8113
diff changeset
   668
(*Ultimate goal*)
8128
3a5864b465e2 still working; a bit of polishing
paulson
parents: 8122
diff changeset
   669
Goalw [system_spec_def] "System : system_spec";
3a5864b465e2 still working; a bit of polishing
paulson
parents: 8122
diff changeset
   670
by (blast_tac (claset() addIs [System_safety, System_Progress]) 1);
3a5864b465e2 still working; a bit of polishing
paulson
parents: 8122
diff changeset
   671
qed "System_correct";
8122
b43ad07660b9 working version, with Alloc now working on the same state space as the whole
paulson
parents: 8113
diff changeset
   672
8314
463f63a9a7f2 even Alloc works again, using "rename"
paulson
parents: 8311
diff changeset
   673