src/HOL/Library/Lattice_Syntax.thy
author haftmann
Sat, 07 Mar 2009 10:06:12 +0100
changeset 30331 32ccef17d408
parent 30330 8291bc63d7c9
child 30375 ad2a9dc516ed
permissions -rw-r--r--
suppress document output
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
30330
8291bc63d7c9 theory with syntax for lattice operations
haftmann
parents:
diff changeset
     1
(* Author: Florian Haftmann, TU Muenchen *)
8291bc63d7c9 theory with syntax for lattice operations
haftmann
parents:
diff changeset
     2
8291bc63d7c9 theory with syntax for lattice operations
haftmann
parents:
diff changeset
     3
header {* Pretty syntax for lattice operations *}
8291bc63d7c9 theory with syntax for lattice operations
haftmann
parents:
diff changeset
     4
30331
32ccef17d408 suppress document output
haftmann
parents: 30330
diff changeset
     5
(*<*)
30330
8291bc63d7c9 theory with syntax for lattice operations
haftmann
parents:
diff changeset
     6
theory Lattice_Syntax
8291bc63d7c9 theory with syntax for lattice operations
haftmann
parents:
diff changeset
     7
imports Set
8291bc63d7c9 theory with syntax for lattice operations
haftmann
parents:
diff changeset
     8
begin
8291bc63d7c9 theory with syntax for lattice operations
haftmann
parents:
diff changeset
     9
8291bc63d7c9 theory with syntax for lattice operations
haftmann
parents:
diff changeset
    10
notation
8291bc63d7c9 theory with syntax for lattice operations
haftmann
parents:
diff changeset
    11
  inf  (infixl "\<sqinter>" 70) and
8291bc63d7c9 theory with syntax for lattice operations
haftmann
parents:
diff changeset
    12
  sup  (infixl "\<squnion>" 65) and
8291bc63d7c9 theory with syntax for lattice operations
haftmann
parents:
diff changeset
    13
  Inf  ("\<Sqinter>_" [900] 900) and
8291bc63d7c9 theory with syntax for lattice operations
haftmann
parents:
diff changeset
    14
  Sup  ("\<Squnion>_" [900] 900)
8291bc63d7c9 theory with syntax for lattice operations
haftmann
parents:
diff changeset
    15
30331
32ccef17d408 suppress document output
haftmann
parents: 30330
diff changeset
    16
end
32ccef17d408 suppress document output
haftmann
parents: 30330
diff changeset
    17
(*>*)