You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: test/eigengeneral.jl
+7Lines changed: 7 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -51,6 +51,13 @@ end
51
51
@testsort(GenericLinearAlgebra._eigvals!(GenericLinearAlgebra._schur!(copy(A))), by = t -> (real(t), imag(t))) ≈sort(eigvals(A), by = t -> (real(t), imag(t)))
52
52
end
53
53
54
+
@testset"Convergence in with 0s Issue 58."begin
55
+
A = [0.01.00.0; -1.00.00.0; 0.00.00.0]
56
+
@testsort(GenericLinearAlgebra._eigvals!(GenericLinearAlgebra._schur!(copy(A))), by = t -> (real(t), imag(t))) ≈sort(eigvals(A), by = t -> (real(t), imag(t)))
57
+
B = [0.00.00.0; 0.00.01.0; 0.0-1.00.0]
58
+
@testsort(GenericLinearAlgebra._eigvals!(GenericLinearAlgebra._schur!(copy(B))), by = t -> (real(t), imag(t))) ≈sort(eigvals(B), by = t -> (real(t), imag(t)))
0 commit comments