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