We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 12bd681 commit 7bf9fa8Copy full SHA for 7bf9fa8
1 file changed
src/common/defaults.jl
@@ -37,7 +37,4 @@ default_pullback_rank_atol(A) = eps(norm(A, Inf))^(3 / 4)
37
38
Default tolerance for deciding to warn if the provided `A` is not hermitian.
39
"""
40
-function default_hermitian_tol(A)
41
- n = norm(A, Inf)
42
- return eps(eltype(n))^(3 / 4) * max(n, one(n))
43
-end
+default_hermitian_tol(A) = eps(norm(A, Inf))^(3 / 4)
0 commit comments