-
Notifications
You must be signed in to change notification settings - Fork 248
[Add] Properties for DCPOs in Relation.Binary.Properties.Domain
#2734
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
Open
jmougeot
wants to merge
13
commits into
agda:master
Choose a base branch
from
jmougeot:domain_part2
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
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
Relation.Binary.Properties.Domain
Relation.Binary.Properties.Domain
JacquesCarette
requested changes
Jun 16, 2025
JacquesCarette
requested changes
Jun 19, 2025
record IsScottContinuous (f : P.Carrier → Q.Carrier) | ||
: Set (suc (c₁ ⊔ ℓ₁₁ ⊔ ℓ₁₂ ⊔ c₂ ⊔ ℓ₂₁ ⊔ ℓ₂₂)) where | ||
field | ||
preserveLub : ∀ {B : Set c₁} {g : B → P.Carrier} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think this layout is as per the style guide.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request introduces new modules and properties for directed complete partial orders (DCPOs) in the Agda standard library. These additions are adapted from the 1Lab library.
The first part of this pull request is available at [Add] Initial files for Domain theory #2721 .
Please comment only on the
src/Relation/Binary/Properties/Domain.agda
file hereKey Changes:
1. Properties of Least Upper Bounds:
uniqueLub:
Proves the uniqueness of least upper bounds.IsLub-cong
: Demonstrates congruence of least upper bounds under equivalence.2. Scott Continuity and Monotonicity:
DirectedCompletePartialOrder+scott→monotone
: Proves that Scott continuous functions are monotone.3. Scott Continuous Functions:
ScottId
: Identity function as a Scott continuous function.scott-∘
: Composition of Scott continuous functions.4. Suprema and Pointwise Ordering:
⋃-pointwise
: Proves pointwise ordering of suprema in directed families.5. Scott Continuity Module:
pres-⋁
: Proves preservation of least upper bounds under Scott continuous functions.6. Conversion to Scott Continuity:
-Added
to-scott
: Converts monotone functions with preservation of least upper bounds into Scott continuous functions.Source :
1Lab library