Skip to content

Define ≈ operator for Intervals #150

Open
@mzgubic

Description

@mzgubic
julia> i1 = Interval{Float64, Open, Closed}(1, 2)
Interval{Float64,Open,Closed}(1.0, 2.0)

julia> i2 = Interval{Float64, Open, Closed}(1, 2 + 1e-10)
Interval{Float64,Open,Closed}(1.0, 2.00001)

julia> i1 ≈ i2
ERROR: MethodError: no method matching isapprox(::Interval{Float64,Open,Closed}, ::Interval{Float64,Open,Closed})

How would this behaviour be defined?

  • The lower and upper bounds would have to be ≈ equal separately.

  • The closed/open distinction would be ignored.

  • If the underlying types don't have ≈ defined an error is thrown?

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions