Directed complete posets
Content created by Fredrik Bakke, Jonathan Prieto-Cubides and Egbert Rijke.
Created on 2022-06-02.
Last modified on 2023-05-13.
module order-theory.directed-complete-posets where
Imports
open import foundation.propositions open import foundation.subtypes open import foundation.universe-levels open import order-theory.directed-families open import order-theory.least-upper-bounds-posets open import order-theory.posets
Idea
A DCPO, i.e., a directed complete partially ordered set, is a poset in which each directed family of elements has a least upper bound.
Definition
is-directed-complete-Poset-Prop : {l1 l2 : Level} (l3 : Level) (P : Poset l1 l2) → Prop (l1 ⊔ l2 ⊔ lsuc l3) is-directed-complete-Poset-Prop l3 P = Π-Prop ( directed-family-Poset l3 P) ( λ x → has-least-upper-bound-family-of-elements-Poset-Prop P ( family-directed-family-Poset P x)) DCPO : (l1 l2 l3 : Level) → UU (lsuc l1 ⊔ lsuc l2 ⊔ lsuc l3) DCPO l1 l2 l3 = type-subtype (is-directed-complete-Poset-Prop {l1} {l2} l3)
Recent changes
- 2023-05-13. Fredrik Bakke. Remove unused imports and fix some unaddressed comments (#621).
- 2023-05-05. Egbert Rijke. cleaning up order theory (#591).
- 2023-03-10. Fredrik Bakke. Additions to
fix-import
(#497). - 2023-03-09. Jonathan Prieto-Cubides. Add hooks (#495).
- 2023-03-07. Fredrik Bakke. Add blank lines between
<details>
tags and markdown syntax (#490).