src/HOL/Library/Lattice_Syntax.thy
author blanchet
Tue, 27 Oct 2009 16:52:06 +0100
changeset 33556 cba22e2999d5
parent 32139 e271a64f03ff
child 35787 afdf1c4958b2
permissions -rw-r--r--
renamed Nitpick option "coalesce_type_vars" to "merge_type_vars" (shorter) and cleaned up old hacks that are no longer necessary

(* Author: Florian Haftmann, TU Muenchen *)

header {* Pretty syntax for lattice operations *}

(*<*)
theory Lattice_Syntax
imports Complete_Lattice
begin

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

end
(*>*)