Last active
August 29, 2015 14:04
-
-
Save notogawa/ee5f29d7d5b4a025b2c8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module PO where | |
open import Level | |
open import Relation.Binary | |
open import Data.Product | |
module Propaties {a ℓ₁ ℓ₂} {A : Set a} {_≈_ : Rel A ℓ₁} {_≤_ : Rel A ℓ₂} (po : IsPartialOrder _≈_ _≤_ ) where | |
data lower-bound-of_is_ (P : A → Set ℓ₂) : A → Set (a ⊔ ℓ₂) where | |
lb : ∀ {x} → P x → (∀ x' → P x' → x ≤ x') → lower-bound-of P is x | |
data _is_∨_ : A → A → A → Set (a ⊔ ℓ₂) where | |
join : ∀ {x y z} → lower-bound-of (λ x' → y ≤ x' × z ≤ x') is x → x is y ∨ z |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment