src/HOL/TLA/Memory/RPCMemoryParams.thy
author paulson
Tue, 02 Feb 2010 09:48:20 +0000
changeset 35503 7bba12c3b7b6
parent 21624 6f79647cf536
child 41589 bbd861837ebc
permissions -rw-r--r--
Correction of a tiny error

(*
    File:        RPCMemoryParams.thy
    ID:          $Id$
    Author:      Stephan Merz
    Copyright:   1997 University of Munich
*)

header {* Basic declarations for the RPC-memory example *}

theory RPCMemoryParams
imports Main
begin

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. *)

(* all of these are simple (HOL) types *)
typedecl Locs    (* "syntactic" value type *)
typedecl Vals    (* "syntactic" value type *)
typedecl PrIds   (* process id's *)

end