Order structures on finite types #
This file provides order instances on fintypes.
Computable instances #
On a Fintype, we can construct
- an
OrderBotfromSemilatticeInf. - an
OrderTopfromSemilatticeSup. - a
BoundedOrderfromLattice.
Those are marked as def to avoid defeqness issues.
Completion instances #
Those instances are noncomputable because the definitions of sSup and sInf use Set.toFinset
and set membership is undecidable in general.
On a Fintype, we can promote:
- a
Latticeto aCompleteLattice. - a
DistribLatticeto aCompleteDistribLattice. - a
LinearOrderto aCompleteLinearOrder. - a
BooleanAlgebrato aCompleteAtomicBooleanAlgebra.
Those are marked as def to avoid typeclass loops.
Concrete instances #
We provide a few instances for concrete types:
A finite bounded lattice is complete.
Equations
Instances For
A finite bounded distributive lattice is completely distributive.
Equations
Instances For
A finite bounded distributive lattice is completely distributive.
Equations
Instances For
A finite bounded linear order is complete.
If the α is already a BiheytingAlgebra, then prefer to construct this instance manually using
Fintype.toCompleteLattice instead, to avoid creating a diamond with
LinearOrder.toBiheytingAlgebra.
Equations
Instances For
A finite boolean algebra is complete.
Equations
Instances For
A finite boolean algebra is complete and atomic.
Equations
Instances For
A nonempty finite lattice is complete. If the lattice is already a BoundedOrder, then use
Fintype.toCompleteLattice instead, as this gives definitional equality for ⊥ and ⊤.
Equations
Instances For
A nonempty finite linear order is complete. If the linear order is already a BoundedOrder,
then use Fintype.toCompleteLinearOrder instead, as this gives definitional equality for ⊥ and
⊤.