src/HOL/TLA/Memory/RPCMemoryParams.thy
author wenzelm
Mon, 09 Oct 2006 02:19:54 +0200
changeset 20902 a0034e545c13
parent 17309 c43ed29bd197
child 21624 6f79647cf536
permissions -rw-r--r--
replaced Drule.clhs/crhs_of by Drule.lhs/rhs_of;

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

    Theory Name: RPCMemoryParams
    Logic Image: TLA

    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