Skip to content

Commit 202d1aa

Browse files
thchrDilumAluthge
authored andcommitted
drop changes to atol default value
1 parent bef2820 commit 202d1aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stdlib/LinearAlgebra/src/generic.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1767,7 +1767,7 @@ promote_leaf_eltypes(x::Union{AbstractArray,Tuple}) = mapreduce(promote_leaf_elt
17671767
# Supports nested arrays; e.g., for `a = [[1,2, [3,4]], 5.0, [6im, [7.0, 8.0]]]`
17681768
# `a ≈ a` is `true`.
17691769
function isapprox(x::AbstractArray, y::AbstractArray;
1770-
atol::Real=zero(promote_type(real(promote_leaf_eltypes(x)),real(promote_leaf_eltypes(y)))),
1770+
atol::Real=0,
17711771
rtol::Real=Base.rtoldefault(promote_leaf_eltypes(x),promote_leaf_eltypes(y),atol),
17721772
nans::Bool=false, norm::Function=norm)
17731773
d = norm(x - y)

0 commit comments

Comments
 (0)