src/HOL/UNITY/AllocImpl.thy
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:
9027
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
     1
(*  Title:      HOL/UNITY/AllocImpl
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
     2
    ID:         $Id$
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
     3
    Author:     Lawrence C Paulson, Cambridge University Computer Laboratory
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
     4
    Copyright   1998  University of Cambridge
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
     5
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
     6
Implementation of a multiple-client allocator from a single-client allocator
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
     7
*)
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
     8
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
     9
AllocImpl = AllocBase + Follows + PPROD + 
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
    10
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
    11
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
    12
(** State definitions.  OUTPUT variables are locals **)
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
    13
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
    14
(*Type variable 'b is the type of items being merged*)
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
    15
record 'b merge =
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
    16
  In   :: nat => 'b list   (*merge's INPUT histories: streams to merge*)
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
    17
  Out  :: 'b list          (*merge's OUTPUT history: merged items*)
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
    18
  iOut :: nat list         (*merge's OUTPUT history: origins of merged items*)
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
    19
9403
aad13b59b8d9 much tidying in connection with the 2nd UNITY paper
paulson
parents: 9105
diff changeset
    20
record ('a,'b) merge_d =
9027
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
    21
  'b merge +
9403
aad13b59b8d9 much tidying in connection with the 2nd UNITY paper
paulson
parents: 9105
diff changeset
    22
  dummy :: 'a       (*dummy field for new variables*)
9027
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
    23
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
    24
constdefs
9403
aad13b59b8d9 much tidying in connection with the 2nd UNITY paper
paulson
parents: 9105
diff changeset
    25
  non_dummy :: ('a,'b) merge_d => 'b merge
aad13b59b8d9 much tidying in connection with the 2nd UNITY paper
paulson
parents: 9105
diff changeset
    26
    "non_dummy s == (|In = In s, Out = Out s, iOut = iOut s|)"
9027
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
    27
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
    28
record 'b distr =
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
    29
  In  :: 'b list          (*items to distribute*)
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
    30
  iIn :: nat list         (*destinations of items to distribute*)
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
    31
  Out :: nat => 'b list   (*distributed items*)
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
    32
9403
aad13b59b8d9 much tidying in connection with the 2nd UNITY paper
paulson
parents: 9105
diff changeset
    33
record ('a,'b) distr_d =
9027
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
    34
  'b distr +
9403
aad13b59b8d9 much tidying in connection with the 2nd UNITY paper
paulson
parents: 9105
diff changeset
    35
  dummy :: 'a       (*dummy field for new variables*)
9027
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
    36
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
    37
record allocState =
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
    38
  giv :: nat list   (*OUTPUT history: source of tokens*)
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
    39
  ask :: nat list   (*INPUT: tokens requested from allocator*)
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
    40
  rel :: nat list   (*INPUT: tokens released to allocator*)
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
    41
9403
aad13b59b8d9 much tidying in connection with the 2nd UNITY paper
paulson
parents: 9105
diff changeset
    42
record 'a allocState_d =
9027
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
    43
  allocState +
9403
aad13b59b8d9 much tidying in connection with the 2nd UNITY paper
paulson
parents: 9105
diff changeset
    44
  dummy    :: 'a                (*dummy field for new variables*)
9027
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
    45
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
    46
record 'a systemState =
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
    47
  allocState +
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
    48
  mergeRel :: nat merge
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
    49
  mergeAsk :: nat merge
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
    50
  distr    :: nat distr
9403
aad13b59b8d9 much tidying in connection with the 2nd UNITY paper
paulson
parents: 9105
diff changeset
    51
  dummy    :: 'a                  (*dummy field for new variables*)
9027
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
    52
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
    53
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
    54
constdefs
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
    55
9105
d9257992b845 fixed the merge spec (NbT -> Nclients) and added the distributor spec
paulson
parents: 9027
diff changeset
    56
(** Merge specification (the number of inputs is Nclients) ***)
9027
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
    57
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
    58
  (*spec (10)*)
9403
aad13b59b8d9 much tidying in connection with the 2nd UNITY paper
paulson
parents: 9105
diff changeset
    59
  merge_increasing :: ('a,'b) merge_d program set
9027
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
    60
    "merge_increasing ==
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
    61
         UNIV guarantees[funPair merge.Out merge.iOut]
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
    62
         (Increasing merge.Out) Int (Increasing merge.iOut)"
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
    63
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
    64
  (*spec (11)*)
9403
aad13b59b8d9 much tidying in connection with the 2nd UNITY paper
paulson
parents: 9105
diff changeset
    65
  merge_eqOut :: ('a,'b) merge_d program set
9027
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
    66
    "merge_eqOut ==
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
    67
         UNIV guarantees[funPair merge.Out merge.iOut]
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
    68
         Always {s. length (merge.Out s) = length (merge.iOut s)}"
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
    69
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
    70
  (*spec (12)*)
9403
aad13b59b8d9 much tidying in connection with the 2nd UNITY paper
paulson
parents: 9105
diff changeset
    71
  merge_bounded :: ('a,'b) merge_d program set
9027
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
    72
    "merge_bounded ==
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
    73
         UNIV guarantees[merge.iOut]
9105
d9257992b845 fixed the merge spec (NbT -> Nclients) and added the distributor spec
paulson
parents: 9027
diff changeset
    74
         Always {s. ALL elt : set (merge.iOut s). elt < Nclients}"
9027
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
    75
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
    76
  (*spec (13)*)
9403
aad13b59b8d9 much tidying in connection with the 2nd UNITY paper
paulson
parents: 9105
diff changeset
    77
  merge_follows :: ('a,'b) merge_d program set
9027
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
    78
    "merge_follows ==
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
    79
	 (INT i : lessThan Nclients. Increasing (sub i o merge.In))
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
    80
	 guarantees[funPair merge.Out merge.iOut]
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
    81
	 (INT i : lessThan Nclients. 
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
    82
	  (%s. sublist (merge.Out s) 
9105
d9257992b845 fixed the merge spec (NbT -> Nclients) and added the distributor spec
paulson
parents: 9027
diff changeset
    83
                       {k. k < size(merge.iOut s) & merge.iOut s! k = i})
9027
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
    84
	  Fols (sub i o merge.In))"
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
    85
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
    86
  (*spec: preserves part*)
9403
aad13b59b8d9 much tidying in connection with the 2nd UNITY paper
paulson
parents: 9105
diff changeset
    87
    merge_preserves :: ('a,'b) merge_d program set
aad13b59b8d9 much tidying in connection with the 2nd UNITY paper
paulson
parents: 9105
diff changeset
    88
    "merge_preserves == preserves (funPair merge.In merge_d.dummy)"
9027
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
    89
9403
aad13b59b8d9 much tidying in connection with the 2nd UNITY paper
paulson
parents: 9105
diff changeset
    90
  merge_spec :: ('a,'b) merge_d program set
9027
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
    91
    "merge_spec == merge_increasing Int merge_eqOut Int merge_bounded Int
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
    92
                   merge_follows Int merge_preserves"
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
    93
9105
d9257992b845 fixed the merge spec (NbT -> Nclients) and added the distributor spec
paulson
parents: 9027
diff changeset
    94
(** Distributor specification (the number of outputs is Nclients) ***)
d9257992b845 fixed the merge spec (NbT -> Nclients) and added the distributor spec
paulson
parents: 9027
diff changeset
    95
d9257992b845 fixed the merge spec (NbT -> Nclients) and added the distributor spec
paulson
parents: 9027
diff changeset
    96
  (*spec (14)*)
9403
aad13b59b8d9 much tidying in connection with the 2nd UNITY paper
paulson
parents: 9105
diff changeset
    97
  distr_follows :: ('a,'b) distr_d program set
9105
d9257992b845 fixed the merge spec (NbT -> Nclients) and added the distributor spec
paulson
parents: 9027
diff changeset
    98
    "distr_follows ==
d9257992b845 fixed the merge spec (NbT -> Nclients) and added the distributor spec
paulson
parents: 9027
diff changeset
    99
	 Increasing distr.In Int Increasing distr.iIn Int
d9257992b845 fixed the merge spec (NbT -> Nclients) and added the distributor spec
paulson
parents: 9027
diff changeset
   100
	 Always {s. ALL elt : set (distr.iIn s). elt < Nclients}
d9257992b845 fixed the merge spec (NbT -> Nclients) and added the distributor spec
paulson
parents: 9027
diff changeset
   101
	 guarantees[distr.Out]
d9257992b845 fixed the merge spec (NbT -> Nclients) and added the distributor spec
paulson
parents: 9027
diff changeset
   102
	 (INT i : lessThan Nclients. 
d9257992b845 fixed the merge spec (NbT -> Nclients) and added the distributor spec
paulson
parents: 9027
diff changeset
   103
	  (sub i o distr.Out) Fols
d9257992b845 fixed the merge spec (NbT -> Nclients) and added the distributor spec
paulson
parents: 9027
diff changeset
   104
	  (%s. sublist (distr.In s) 
d9257992b845 fixed the merge spec (NbT -> Nclients) and added the distributor spec
paulson
parents: 9027
diff changeset
   105
                       {k. k < size(distr.iIn s) & distr.iIn s ! k = i}))"
d9257992b845 fixed the merge spec (NbT -> Nclients) and added the distributor spec
paulson
parents: 9027
diff changeset
   106
d9257992b845 fixed the merge spec (NbT -> Nclients) and added the distributor spec
paulson
parents: 9027
diff changeset
   107
9027
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
   108
(** Single-client allocator specification (required) ***)
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
   109
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
   110
  (*spec (18)*)
9403
aad13b59b8d9 much tidying in connection with the 2nd UNITY paper
paulson
parents: 9105
diff changeset
   111
  alloc_increasing :: 'a allocState_d program set
9027
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
   112
    "alloc_increasing == UNIV guarantees[giv] Increasing giv"
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
   113
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
   114
  (*spec (19)*)
9403
aad13b59b8d9 much tidying in connection with the 2nd UNITY paper
paulson
parents: 9105
diff changeset
   115
  alloc_safety :: 'a allocState_d program set
9027
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
   116
    "alloc_safety ==
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
   117
	 Increasing rel
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
   118
         guarantees[giv] Always {s. tokens (giv s) <= NbT + tokens (rel s)}"
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
   119
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
   120
  (*spec (20)*)
9403
aad13b59b8d9 much tidying in connection with the 2nd UNITY paper
paulson
parents: 9105
diff changeset
   121
  alloc_progress :: 'a allocState_d program set
9027
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
   122
    "alloc_progress ==
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
   123
	 Increasing ask Int Increasing rel Int
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
   124
         Always {s. ALL elt : set (ask s). elt <= NbT}
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
   125
         Int
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
   126
         (INT h. {s. h <= giv s & h pfixGe (ask s)}
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
   127
		 LeadsTo
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
   128
	         {s. tokens h <= tokens (rel s)})
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
   129
         guarantees[giv]
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
   130
	     (INT h. {s. h <= ask s} LeadsTo {s. h pfixLe giv s})"
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
   131
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
   132
  (*spec: preserves part*)
9403
aad13b59b8d9 much tidying in connection with the 2nd UNITY paper
paulson
parents: 9105
diff changeset
   133
    alloc_preserves :: 'a allocState_d program set
9027
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
   134
    "alloc_preserves == preserves (funPair rel
9403
aad13b59b8d9 much tidying in connection with the 2nd UNITY paper
paulson
parents: 9105
diff changeset
   135
				   (funPair ask allocState_d.dummy))"
9027
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
   136
  
9403
aad13b59b8d9 much tidying in connection with the 2nd UNITY paper
paulson
parents: 9105
diff changeset
   137
  alloc_spec :: 'a allocState_d program set
9027
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
   138
    "alloc_spec == alloc_increasing Int alloc_safety Int alloc_progress Int
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
   139
                   alloc_preserves"
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
   140
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
   141
(****
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
   142
    (** Network specification ***)
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
   143
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
   144
      (*spec (9.1)*)
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
   145
      network_ask :: 'a systemState program set
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
   146
	"network_ask == INT i : lessThan Nclients.
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
   147
			    Increasing (ask o sub i o client)
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
   148
			    guarantees[ask]
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
   149
			    (ask  Fols (ask o sub i o client))"
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
   150
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
   151
      (*spec (9.2)*)
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
   152
      network_giv :: 'a systemState program set
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
   153
	"network_giv == INT i : lessThan Nclients.
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
   154
			    Increasing giv 
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
   155
			    guarantees[giv o sub i o client]
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
   156
			    ((giv o sub i o client) Fols giv )"
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
   157
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
   158
      (*spec (9.3)*)
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
   159
      network_rel :: 'a systemState program set
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
   160
	"network_rel == INT i : lessThan Nclients.
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
   161
			    Increasing (rel o sub i o client)
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
   162
			    guarantees[rel]
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
   163
			    (rel  Fols (rel o sub i o client))"
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
   164
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
   165
      (*spec: preserves part*)
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
   166
	network_preserves :: 'a systemState program set
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
   167
	"network_preserves == preserves giv  Int
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
   168
			      (INT i : lessThan Nclients.
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
   169
			       preserves (funPair rel ask o sub i o client))"
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
   170
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
   171
      network_spec :: 'a systemState program set
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
   172
	"network_spec == network_ask Int network_giv Int
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
   173
			 network_rel Int network_preserves"
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
   174
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
   175
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
   176
    (** State mappings **)
9403
aad13b59b8d9 much tidying in connection with the 2nd UNITY paper
paulson
parents: 9105
diff changeset
   177
      sysOfAlloc :: "((nat => merge) * 'a) allocState_d => 'a systemState"
aad13b59b8d9 much tidying in connection with the 2nd UNITY paper
paulson
parents: 9105
diff changeset
   178
	"sysOfAlloc == %s. let (cl,xtr) = allocState_d.dummy s
9027
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
   179
			   in (| giv = giv s,
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
   180
				 ask = ask s,
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
   181
				 rel = rel s,
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
   182
				 client   = cl,
9403
aad13b59b8d9 much tidying in connection with the 2nd UNITY paper
paulson
parents: 9105
diff changeset
   183
				 dummy    = xtr|)"
9027
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
   184
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
   185
9403
aad13b59b8d9 much tidying in connection with the 2nd UNITY paper
paulson
parents: 9105
diff changeset
   186
      sysOfClient :: "(nat => merge) * 'a allocState_d => 'a systemState"
9027
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
   187
	"sysOfClient == %(cl,al). (| giv = giv al,
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
   188
				     ask = ask al,
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
   189
				     rel = rel al,
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
   190
				     client   = cl,
9403
aad13b59b8d9 much tidying in connection with the 2nd UNITY paper
paulson
parents: 9105
diff changeset
   191
				     systemState.dummy = allocState_d.dummy al|)"
9027
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
   192
****)
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
   193
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
   194
consts 
9403
aad13b59b8d9 much tidying in connection with the 2nd UNITY paper
paulson
parents: 9105
diff changeset
   195
    Alloc  :: 'a allocState_d program
aad13b59b8d9 much tidying in connection with the 2nd UNITY paper
paulson
parents: 9105
diff changeset
   196
    Merge  :: ('a,'b) merge_d program
aad13b59b8d9 much tidying in connection with the 2nd UNITY paper
paulson
parents: 9105
diff changeset
   197
9027
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
   198
(*    
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
   199
    Network :: 'a systemState program
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
   200
    System  :: 'a systemState program
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
   201
  *)
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
   202
  
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
   203
rules
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
   204
    Alloc   "Alloc   : alloc_spec"
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
   205
    Merge  "Merge  : merge_spec"
9403
aad13b59b8d9 much tidying in connection with the 2nd UNITY paper
paulson
parents: 9105
diff changeset
   206
9027
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
   207
(**    Network "Network : network_spec"**)
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
   208
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
   209
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
   210
daeccd9f885f The Allocator Implementation (not yet working)
paulson
parents:
diff changeset
   211
end