src/HOL/HOLCF/IOA/ABP/Packet.thy
author kleing
Thu, 20 Mar 2014 09:47:43 +0100
changeset 56224 18378a709991
parent 42151 4da4fc77664b
child 58880 0baae4311a9f
permissions -rw-r--r--
pointer to the other proof direction

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