JuliaGaussianProcesses / JuliaGaussianProcesses/ParameterHandling.jl
[Feature request] `bounded` with equality (ie `[low, high]` rather than `(low, high)`)
Open
Nobody has claimed this yet.
- Dominant language
- Julia
- Stars
- 74
- Forks
- 10
- PR merge metrics
- No merged PRs in 30d
Description
It would be great to add an option to bounded so that it supports interval constraints with equality.
Current behaviour:
julia> bounded(0., 0., 1.)
ERROR: ArgumentError: Value, 0.0, outside of specified bounds (0.0, 1.0).
Stacktrace:
[1] bounded(val::Float64, lower_bound::Float64, upper_bound::Float64)
@ ParameterHandling ~/.julia/packages/ParameterHandling/QaqXk/src/parameters_scalar.jl:54
Contributor guide
No contributing guide indexed for this repository
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Start at parameters_scalar.jl:54 and inspect the existing bounded entry point and its current boundary checks. Trace its callers and tests to determine the option's expected API; done means bounded can represent inclusive intervals such as [low, high] and accepts values equal to either bound.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- julia
- Domain
- tooling
- Issue type
- Feature
- Difficulty
- 3/5
- Estimated time
- 1-2 days
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 45/100