Skip to content

Commit 9844021

Browse files
authored
fix precompilation issue (#53)
Co-authored-by: Luca Ferranti <lucaferranti@users.noreply.github.com>
1 parent bb96de5 commit 9844021

File tree

2 files changed

+1
-12
lines changed

2 files changed

+1
-12
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "IntervalContractors"
22
uuid = "15111844-de3b-5229-b4ba-526f2f385dc9"
3-
version = "0.4.6"
3+
version = "0.4.7"
44

55
[deps]
66
IntervalArithmetic = "d1acc4aa-44c8-5952-acd4-ba5d80a2a253"

src/arithmetic.jl

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -334,14 +334,3 @@ function mul_rev_to_pair(b::DecoratedInterval{T}, c::DecoratedInterval{T}) where
334334
x1, x2 = extended_div(interval(c), interval(b))
335335
return (DecoratedInterval(x1, trv), DecoratedInterval(x2, trv))
336336
end
337-
338-
mul_rev_to_pair(b::Interval, c::Interval) = extended_div(c, b)
339-
340-
function mul_rev_to_pair(b::DecoratedInterval{T}, c::DecoratedInterval{T}) where T
341-
(isnai(b) || isnai(c)) && return (nai(T), nai(T))
342-
343-
0 b && return (c/b, DecoratedInterval(emptyinterval(T), trv))
344-
345-
x1, x2 = extended_div(interval(c), interval(b))
346-
return (DecoratedInterval(x1, trv), DecoratedInterval(x2, trv))
347-
end

0 commit comments

Comments
 (0)