src/HOLCF/IOA/ABP/Action.thy
author huffman
Mon, 13 Apr 2009 09:29:55 -0700
changeset 30913 10b26965a08f
parent 19738 1ac610922636
child 35174 e15040ae75d7
permissions -rw-r--r--
domain package now generates iff rules for definedness of constructors

(*  Title:      HOLCF/IOA/ABP/Action.thy
    ID:         $Id$
    Author:     Olaf Müller
*)

header {* The set of all actions of the system *}

theory Action
imports Packet
begin

datatype 'm action =
    Next | S_msg 'm | R_msg 'm
  | S_pkt "'m packet" | R_pkt "'m packet"
  | S_ack bool | R_ack bool

end