src/HOL/BCV/SemiLattice.thy
author wenzelm
Wed, 31 May 2000 14:30:28 +0200
changeset 9011 0cfc347f8d19
parent 7626 5997f35954d7
permissions -rw-r--r--
Isar/Pure: removed obsolete 'transfer' attribute (transfer of thms to the current context is now done automatically);

(*  Title:      HOL/BCV/SemiLattice.thy
    ID:         $Id$
    Author:     Tobias Nipkow
    Copyright   1999 TUM

Semilattices
*)

SemiLattice = Plus +

constdefs
 semilat :: "('a::{order,plus} set) => bool"
"semilat A == (!x:A. !y:A. x <= x+y)  &
          (!x:A. !y:A. y <= x+y)  &
          (!x:A. !y:A. !z:A. x <= z & y <= z --> x+y <= z) &
          (!x:A. !y:A. x+y : A)"

end