src/HOL/Library/Lattice_Syntax.thy
author wenzelm
Fri, 07 May 2010 20:57:37 +0200
changeset 36734 d9b10c173330
parent 35787 afdf1c4958b2
child 41080 294956ff285b
permissions -rw-r--r--
Pretty.formatted operates directly on XML trees, treating XML.Elem like a pro-forma block of indentation 0, like the ML version; tuned;

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