You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The pi_interval is no longer exported in IntervalArithmetic 0.16.3. So in trig.jl line 59 and 128, IntervalArithmetic.pi_interval(Float64) needs to be swapped for Interval{Float64}(π) or an upper bound of 0.16.2 needs to be added to the project.toml.
functioncos_main(X::IntervalBox)
x, y = X
x_range =Interval(0, IntervalArithmetic.pi_interval(Float64).lo)
y_range =-1..1
x = x ∩ x_range
y = y ∩ y_range
isempty(IntervalBox(x, y)) &&returnIntervalBox(x, y)
y = y ∩cos(x)
x = x ∩acos(y)
returnIntervalBox(x, y)
end
The
pi_interval
is no longer exported in IntervalArithmetic 0.16.3. So in trig.jl line 59 and 128,IntervalArithmetic.pi_interval(Float64)
needs to be swapped forInterval{Float64}(π)
or an upper bound of 0.16.2 needs to be added to the project.toml.The text was updated successfully, but these errors were encountered: