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