Skip to content

Commit 7aaf5d2

Browse files
committed
Restore check_hermitian
1 parent 40d5d1a commit 7aaf5d2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/implementations/eigh.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ function check_hermitian(A; atol::Real = default_hermitian_tol(A), rtol::Real =
1919
end
2020

2121
function check_input(::typeof(eigh_full!), A::AbstractMatrix, DV, alg::AbstractAlgorithm)
22-
#check_hermitian(A, alg)
22+
check_hermitian(A, alg)
2323
D, V = DV
2424
m = size(A, 1)
2525
@assert D isa Diagonal && V isa AbstractMatrix

0 commit comments

Comments
 (0)