| 
17309
 | 
     1  | 
(*
  | 
| 
3807
 | 
     2  | 
    File:        RPCMemoryParams.thy
  | 
| 
17309
 | 
     3  | 
    ID:          $Id$
  | 
| 
3807
 | 
     4  | 
    Author:      Stephan Merz
  | 
| 
 | 
     5  | 
    Copyright:   1997 University of Munich
  | 
| 
21624
 | 
     6  | 
*)
  | 
| 
3807
 | 
     7  | 
  | 
| 
21624
 | 
     8  | 
header {* Basic declarations for the RPC-memory example *}
 | 
| 
3807
 | 
     9  | 
  | 
| 
17309
 | 
    10  | 
theory RPCMemoryParams
  | 
| 
 | 
    11  | 
imports Main
  | 
| 
 | 
    12  | 
begin
  | 
| 
3807
 | 
    13  | 
  | 
| 
 | 
    14  | 
types
  | 
| 
6255
 | 
    15  | 
  bit = "bool"   (* Signal wires for the procedure interface.
  | 
| 
 | 
    16  | 
                    Defined as bool for simplicity. All I should really need is
  | 
| 
 | 
    17  | 
                    the existence of two distinct values. *)
  | 
| 
3807
 | 
    18  | 
  | 
| 
 | 
    19  | 
(* all of these are simple (HOL) types *)
  | 
| 
11703
 | 
    20  | 
typedecl Locs    (* "syntactic" value type *)
  | 
| 
 | 
    21  | 
typedecl Vals    (* "syntactic" value type *)
  | 
| 
 | 
    22  | 
typedecl PrIds   (* process id's *)
  | 
| 
3807
 | 
    23  | 
  | 
| 
 | 
    24  | 
end
  |