src/HOLCF/IOA/Storage/Spec.thy
author haftmann
Sat, 19 May 2007 11:33:30 +0200
changeset 23024 70435ffe077d
parent 19740 6b38551d0798
child 27361 24ec32bee347
permissions -rw-r--r--
fixed text

(*  Title:      HOL/IOA/example/Spec.thy
    ID:         $Id$
    Author:     Olaf Müller
*)

header {* The specification of a memory *}

theory Spec
imports IOA Action
begin

consts

spec_sig   :: "action signature"
spec_trans :: "(action, nat set * bool)transition set"
spec_ioa   :: "(action, nat set * bool)ioa"

defs

sig_def: "spec_sig == (UN l.{Free l} Un {New},
                     UN l.{Loc l},
                     {})"

trans_def: "spec_trans ==
 {tr. let s = fst(tr); used = fst s; c = snd s;
          t = snd(snd(tr)); used' = fst t; c' = snd t
      in
      case fst(snd(tr))
      of
      New       => used' = used & c'  |
      Loc l     => c & l~:used  & used'= used Un {l} & ~c'   |
      Free l    => used'=used - {l} & c'=c}"

ioa_def: "spec_ioa == (spec_sig, {({},False)}, spec_trans,{},{})"

end