src/HOL/TLA/Memory/RPCMemoryParams.thy
author wenzelm
Fri, 04 Sep 2015 21:40:59 +0200
changeset 61116 6189d179c2b5
parent 60592 c9bd1d902f04
permissions -rw-r--r--
close derivation *before* splitting conjuncts, like Goal.prove_common (see also 757cad5a3fe9) -- potential improvement of performance;

(*  Title:      HOL/TLA/Memory/RPCMemoryParams.thy
    Author:     Stephan Merz, University of Munich
*)

section \<open>Basic declarations for the RPC-memory example\<close>

theory RPCMemoryParams
imports Main
begin

type_synonym 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