Topological lattices #
THIS FILE IS SYNCHRONIZED WITH MATHLIB4. Any changes to this file require a corresponding PR to mathlib4.
In this file we define mixin classes has_continuous_inf
and has_continuous_sup
. We define the
class topological_lattice
as a topological space and lattice L
extending has_continuous_inf
and has_continuous_sup
.
References #
Tags #
topological, lattice
- continuous_inf : continuous (λ (p : L × L), p.fst ⊓ p.snd)
Let L
be a topological space and let L×L
be equipped with the product topology and let
⊓:L×L → L
be an infimum. Then L
is said to have (jointly) continuous infimum if the map
⊓:L×L → L
is continuous.
- continuous_sup : continuous (λ (p : L × L), p.fst ⊔ p.snd)
Let L
be a topological space and let L×L
be equipped with the product topology and let
⊓:L×L → L
be a supremum. Then L
is said to have (jointly) continuous supremum if the map
⊓:L×L → L
is continuous.
Instances of this typeclass
- to_has_continuous_inf : has_continuous_inf L
- to_has_continuous_sup : has_continuous_sup L
Let L
be a lattice equipped with a topology such that L
has continuous infimum and supremum.
Then L
is said to be a topological lattice.
Instances of this typeclass
Instances of other typeclasses for topological_lattice
- topological_lattice.has_sizeof_inst