src/HOL/HOLCF/IOA/ABP/Packet.thy
author wenzelm
Sun, 06 Nov 2011 16:22:26 +0100
changeset 45357 454b06bc9601
parent 42151 4da4fc77664b
child 58880 0baae4311a9f
permissions -rw-r--r--
more precise dependencies;

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