src/HOLCF/IOA/ABP/Packet.thy
author paulson
Tue, 02 May 2000 18:56:39 +0200
changeset 8783 9edcc005ebd9
parent 3072 a31419014be5
child 10212 33fe2d701ddd
permissions -rw-r--r--
removed obsolete "evenness" proofs

(*  Title:      HOLCF/IOA/ABP/Packet.thy
    ID:         $Id$
    Author:     Olaf Mueller
    Copyright   1995  TU Muenchen

Packets
*)

Packet = Arith +

types

   'msg packet = "bool * 'msg"

constdefs

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

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

end