src/HOLCF/IOA/ABP/Action.thy
author haftmann
Tue, 20 Mar 2007 15:52:39 +0100
changeset 22482 8fc3d7237e03
parent 19738 1ac610922636
child 35174 e15040ae75d7
permissions -rw-r--r--
dropped OrderedGroup.ML

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