src/HOL/HOLCF/IOA/ABP/Action.thy
author wenzelm
Sat, 20 Feb 2021 13:42:37 +0100
changeset 73255 7e2a9a8c2b85
parent 62002 f1599e98c4d0
permissions -rw-r--r--
provide naproche-755224402e36;

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

section \<open>The set of all actions of the system\<close>

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