src/HOL/TLA/Memory/RPCMemoryParams.thy
author wenzelm
Tue, 24 Aug 1999 11:50:58 +0200
changeset 7333 6cb15c6f1d9f
parent 6255 db63752140c7
child 11703 6e5de8d4290a
permissions -rw-r--r--
isar: no_pos flag;

(* 
    File:        RPCMemoryParams.thy
    Author:      Stephan Merz
    Copyright:   1997 University of Munich

    Theory Name: RPCMemoryParams
    Logic Image: TLA

    Basic declarations for the RPC-memory example.
*)

RPCMemoryParams = HOL +

types
  bit = "bool"   (* Signal wires for the procedure interface.
                    Defined as bool for simplicity. All I should really need is
                    the existence of two distinct values. *)
  Locs           (* "syntactic" value type *)
  Vals           (* "syntactic" value type *)
  PrIds          (* process id's *)

(* all of these are simple (HOL) types *)
arities
  Locs   :: term
  Vals   :: term
  PrIds  :: term

end