src/HOL/TLA/Memory/RPCMemoryParams.thy
author wenzelm
Sun, 30 Jan 2011 13:02:18 +0100
changeset 41648 6d736d983d5c
parent 41589 bbd861837ebc
child 42018 878f33040280
permissions -rw-r--r--
clarified example settings for Proof General;

(*  Title:      HOL/TLA/Memory/RPCMemoryParams.thy
    Author:     Stephan Merz, 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