Skip to content

Commit 1518da5

Browse files
authored
Merge branch 'main' into incgamma
2 parents f2d5ea4 + 4511dcf commit 1518da5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/math/ops/op_dd_dd.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ end
5757

5858
function sqrt_dd_dd(x::Tuple{T,T}) where {T<:IEEEFloat}
5959
iszero(HI(x)) && return x
60-
signbit(HI(x)) && throw(DomainError("sqrt(x) expects x >= 0")) # maybe we can remove this check? It will return nan anyway.
60+
signbit(HI(x)) && throw(DomainError("sqrt(x) expects x >= 0"))
6161

6262
ahi, alo = HILO(x)
6363
s = sqrt(ahi)

0 commit comments

Comments
 (0)