src/HOL/HOLCF/IOA/ABP/Packet.thy
author wenzelm
Wed, 10 Apr 2013 20:58:01 +0200
changeset 51691 69e3bc394f09
parent 42151 4da4fc77664b
child 58880 0baae4311a9f
permissions -rw-r--r--
updated keywords;

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

header {* Packets *}

theory Packet
imports Main
begin

type_synonym
  'msg packet = "bool * 'msg"

definition
  hdr :: "'msg packet => bool" where
  "hdr = fst"

definition
  msg :: "'msg packet => 'msg" where
  "msg = snd"

end