src/HOLCF/IOA/Storage/Spec.thy
author kleing
Tue, 13 May 2003 08:59:21 +0200
changeset 14024 213dcc39358f
parent 12218 6597093b77e7
child 14981 e73f8140af78
permissions -rw-r--r--
HOL-Real -> HOL-Complex

(*  Title:      HOL/IOA/example/Spec.thy
    ID:         $Id$
    Author:     Olaf Müller
    License:    GPL (GNU GENERAL PUBLIC LICENSE)

The specification of a memory.
*)

Spec = IOA + Action +


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