src/HOLCF/IOA/ABP/Packet.thy
author wenzelm
Sun, 16 Jul 2000 20:52:43 +0200
changeset 9359 a4b990838074
parent 3072 a31419014be5
child 10212 33fe2d701ddd
permissions -rw-r--r--
improved unit theory: unit_all_eq1, unit_all_eq2, split_all_tac; tuned;

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