src/HOL/HOLCF/IOA/ABP/Packet.thy
author paulson <lp15@cam.ac.uk>
Mon, 23 May 2016 16:03:29 +0100
changeset 63126 2b50f79829d2
parent 62002 f1599e98c4d0
permissions -rw-r--r--
deleted stray thm command

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

section \<open>Packets\<close>

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