Skip to content

Commit a7dfef4

Browse files
committed
some random fix
1 parent 83a2130 commit a7dfef4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/common/matrixproperties.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ function is_left_isometric(A::AbstractMatrix; atol::Real = 0, rtol::Real = defau
5050
P = A' * A
5151
nP = norm(P) # isapprox would use `rtol * max(norm(P), norm(I))`
5252
diagview(P) .-= 1
53-
return norm(P) <= max(atol, rtol * nP) # assume that the norm of I is `sqrt(n)`
53+
return norm(P) max(atol, rtol * nP) # assume that the norm of I is `sqrt(n)`
5454
end
5555

5656
@doc """

0 commit comments

Comments
 (0)