Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Match on _IsRelatedTo_ later for the PartialSetoid Reasoning #2677

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions src/Relation/Binary/Reasoning/Base/Partial.agda
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,12 @@ data _IsRelatedTo_ : A → A → Set (a ⊔ ℓ) where
singleStep : ∀ x → x IsRelatedTo x
multiStep : ∀ {x y} (x∼y : x ∼ y) → x IsRelatedTo y

∼-go-build : Trans _∼_ _IsRelatedTo_ _∼_
∼-go-build x∼y (singleStep y) = x∼y
∼-go-build x∼y (multiStep y∼z) = trans x∼y y∼z

∼-go : Trans _∼_ _IsRelatedTo_ _IsRelatedTo_
∼-go x∼y (singleStep y) = multiStep x∼y
∼-go x∼y (multiStep y∼z) = multiStep (trans x∼y y∼z)
∼-go x∼y y<z = multiStep (∼-go-build x∼y y<z)

stop : Reflexive _IsRelatedTo_
stop = singleStep _
Expand Down