diff -r 3af5a06577c7 -r 8fb53badad99 src/HOL/Lattice/Lattice.thy --- a/src/HOL/Lattice/Lattice.thy Wed Dec 30 18:03:23 2015 +0100 +++ b/src/HOL/Lattice/Lattice.thy Wed Dec 30 18:07:10 2015 +0100 @@ -24,15 +24,11 @@ *} definition - meet :: "'a::lattice \ 'a \ 'a" (infixl "&&" 70) where - "x && y = (THE inf. is_inf x y inf)" + meet :: "'a::lattice \ 'a \ 'a" (infixl "\" 70) where + "x \ y = (THE inf. is_inf x y inf)" definition - join :: "'a::lattice \ 'a \ 'a" (infixl "||" 65) where - "x || y = (THE sup. is_sup x y sup)" - -notation (xsymbols) - meet (infixl "\" 70) and - join (infixl "\" 65) + join :: "'a::lattice \ 'a \ 'a" (infixl "\" 65) where + "x \ y = (THE sup. is_sup x y sup)" text {* Due to unique existence of bounds, the lattice operations may be