Skip to content

Commit

Permalink
Hotfix for ==(DecoratedInterval,Interval)
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelraz committed Sep 19, 2018
1 parent 3fdc8ee commit a38d710
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/decorations/functions.jl
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ end

in(x::T, a::DecoratedInterval) where T<:Real = in(x, interval_part(a))

@inline Base.:(==)(xx::DecoratedInterval, yy::Interval) = false
@inline Base.:(==)(y::Interval, xx::DecoratedInterval) = false
==(xx::DecoratedInterval, yy::Interval) = false
==(y::Interval, xx::DecoratedInterval) = false


## scalar functions: mig, mag and friends
Expand Down

0 comments on commit a38d710

Please sign in to comment.