src/HOL/HOLCF/IOA/NTP/Action.thy
author blanchet
Tue, 09 Sep 2014 20:51:36 +0200
changeset 58249 180f1b3508ed
parent 42151 4da4fc77664b
child 58310 91ea607a34d8
permissions -rw-r--r--
use 'datatype_new' (soon to be renamed 'datatype') in Isabelle's libraries

(*  Title:      HOL/HOLCF/IOA/NTP/Action.thy
    Author:     Tobias Nipkow & Konrad Slind
*)

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

theory Action
imports Packet
begin

datatype_new 'm action = S_msg 'm | R_msg 'm
                   | S_pkt "'m packet" | R_pkt "'m packet"
                   | S_ack bool | R_ack bool
                   | C_m_s | C_m_r | C_r_s | C_r_r 'm

end