Add a 'FiniteHeightLattice' bundle
Signed-off-by: Danila Fedorin <danila.fedorin@gmail.com>
This commit is contained in:
parent
6fe8dc2a02
commit
33b7bc37f0
11
Lattice.agda
11
Lattice.agda
|
@ -145,3 +145,14 @@ record Lattice {a} (A : Set a) : Set (lsuc a) where
|
|||
isLattice : IsLattice A _≈_ _⊔_ _⊓_
|
||||
|
||||
open IsLattice isLattice public
|
||||
|
||||
record FiniteHeightLattice {a} (A : Set a) : Set (lsuc a) where
|
||||
field
|
||||
height : ℕ
|
||||
_≈_ : A → A → Set a
|
||||
_⊔_ : A → A → A
|
||||
_⊓_ : A → A → A
|
||||
|
||||
isFiniteHeightLattice : IsFiniteHeightLattice A height _≈_ _⊔_ _⊔_
|
||||
|
||||
open IsFiniteHeightLattice isFiniteHeightLattice public
|
||||
|
|
Loading…
Reference in New Issue
Block a user