src/HOL/TLA/Memory/RPCMemoryParams.thy
author Andreas Lochbihler
Thu, 14 Feb 2013 16:01:28 +0100
changeset 51116 0dac0158b8d4
parent 42018 878f33040280
child 58889 5b7a9633cfa8
permissions -rw-r--r--
implement code generation for finite, card, op = and op <= for sets always via finite_UNIV and card_UNIV, as fragile rewrites based on sorts are hard to find and debug

(*  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

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