src/HOLCF/IOA/ABP/Packet.thy
author paulson
Wed, 13 Oct 1999 12:07:44 +0200
changeset 7844 6462cb4dfdc2
parent 3072 a31419014be5
child 10212 33fe2d701ddd
permissions -rw-r--r--
deleted the redundant less_imp_binomial_eq_0

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