src/HOL/IOA/NTP/Packet.thy
author mueller
Mon, 13 Nov 1995 12:06:57 +0100
changeset 1328 9a449a91425d
parent 1051 4fcd0638e61d
child 1376 92f83b9d17e1
permissions -rw-r--r--
*** empty log message ***

(*  Title:      HOL/IOA/NTP/Packet.thy
    ID:         $Id$
    Author:     Tobias Nipkow & Konrad Slind
    Copyright   1994  TU Muenchen

Packets
*)

Packet = Arith + Multiset +  

types

   'msg packet = "bool * 'msg"

consts

  hdr  :: "'msg packet => bool"
  msg :: "'msg packet => 'msg"

defs

  hdr_def "hdr == fst"
  msg_def "msg == snd"

end