src/HOL/Library/Lattice_Syntax.thy
author haftmann
Mon, 08 Feb 2010 14:06:41 +0100
changeset 35032 7efe662e41b4
parent 32139 e271a64f03ff
child 35787 afdf1c4958b2
permissions -rw-r--r--
separate library theory for type classes combining lattices with various algebraic structures
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
32139
e271a64f03ff moved complete_lattice &c. into separate theory
haftmann
parents: 30375
diff changeset
     7
imports Complete_Lattice
30330
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
32139
e271a64f03ff moved complete_lattice &c. into separate theory
haftmann
parents: 30375
diff changeset
    11
  top ("\<top>") and
e271a64f03ff moved complete_lattice &c. into separate theory
haftmann
parents: 30375
diff changeset
    12
  bot ("\<bottom>") and
30330
8291bc63d7c9 theory with syntax for lattice operations
haftmann
parents:
diff changeset
    13
  inf  (infixl "\<sqinter>" 70) and
8291bc63d7c9 theory with syntax for lattice operations
haftmann
parents:
diff changeset
    14
  sup  (infixl "\<squnion>" 65) and
8291bc63d7c9 theory with syntax for lattice operations
haftmann
parents:
diff changeset
    15
  Inf  ("\<Sqinter>_" [900] 900) and
32139
e271a64f03ff moved complete_lattice &c. into separate theory
haftmann
parents: 30375
diff changeset
    16
  Sup  ("\<Squnion>_" [900] 900)
30330
8291bc63d7c9 theory with syntax for lattice operations
haftmann
parents:
diff changeset
    17
30331
32ccef17d408 suppress document output
haftmann
parents: 30330
diff changeset
    18
end
32ccef17d408 suppress document output
haftmann
parents: 30330
diff changeset
    19
(*>*)