Add ThickNumbers extension - #770
Open
timholy wants to merge 1 commit into
Open
Conversation
ThickNumbers.jl (https://github.com/HolyLab/ThickNumbers.jl) provides a general interface for "numbers with width," of which intervals are the premier example. Other examples include Gaussian random variables and other implementations of "fuzzy numbers." While this does not make this package's intervals a subtype of `ThickNumber`, it does add a compatibility shim that is sufficient for at least one tested non-trivial consumer.
OlivierHnt
reviewed
Jul 26, 2026
| # `in_interval(::Interval, ::Interval)`, a real point's membership in an interval is always | ||
| # decidable, and `IA.in_interval` already computes exactly that (`Base.in(::Interval, | ||
| # ::Interval)` is the one IA purposely leaves unsupported, for `issubset_interval` instead). | ||
| Base.in(x::Real, a::IA.Interval) = IA.in_interval(x, a) |
Member
There was a problem hiding this comment.
This looks like type piracy, no?
Member
There was a problem hiding this comment.
In the sense that this method has nothing to do with ThickNumber, and the package extension does not own Interval. In any case, it's probably not a feature we'd want to add to IA.jl.
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
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.
ThickNumbers.jl (https://github.com/HolyLab/ThickNumbers.jl) provides a general interface for "numbers with width," of which intervals are the premier example. Other examples include Gaussian random variables and other implementations of "fuzzy numbers." While this does not make this package's intervals a subtype of
ThickNumber, it does add a compatibility shim that is sufficient for at least one tested non-trivial consumer.