Module docstring
{"# Definition of complete lattices
This file contains the definition of complete lattices with suprema/infima of arbitrary sets.
Main definitions
sSupandsInfare the supremum and the infimum of a set;iSup (f : ι → α)andiInf (f : ι → α)are indexed supremum and infimum of a function, defined assSupandsInfof the range of this function;- class
CompleteLattice: a bounded lattice such thatsSup sis always the least upper boundary ofsandsInf sis always the greatest lower boundary ofs; - class
CompleteLinearOrder: a linear ordered complete lattice.
Naming conventions
In lemma names,
* sSup is called sSup
* sInf is called sInf
* ⨆ i, s i is called iSup
* ⨅ i, s i is called iInf
* ⨆ i j, s i j is called iSup₂. This is an iSup inside an iSup.
* ⨅ i j, s i j is called iInf₂. This is an iInf inside an iInf.
* ⨆ i ∈ s, t i is called biSup for \"bounded iSup\". This is the special case of iSup₂
where j : i ∈ s.
* ⨅ i ∈ s, t i is called biInf for \"bounded iInf\". This is the special case of iInf₂
where j : i ∈ s.
Notation
⨆ i, f i:iSup f, the supremum of the range off;⨅ i, f i:iInf f, the infimum of the range off. "}