src/HOL/Library/Lattice_Syntax.thy
author haftmann
Tue, 14 Jul 2009 16:27:32 +0200
changeset 32069 6d28bbd33e2c
parent 30375 ad2a9dc516ed
child 32139 e271a64f03ff
permissions -rw-r--r--
prefer code_inline over code_unfold; use code_unfold_post where appropriate

(* Author: Florian Haftmann, TU Muenchen *)

header {* Pretty syntax for lattice operations *}

(*<*)
theory Lattice_Syntax
imports Set
begin

notation
  inf  (infixl "\<sqinter>" 70) and
  sup  (infixl "\<squnion>" 65) and
  Inf  ("\<Sqinter>_" [900] 900) and
  Sup  ("\<Squnion>_" [900] 900) and
  top ("\<top>") and
  bot ("\<bottom>")

end
(*>*)