We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bed991d commit d6bc505Copy full SHA for d6bc505
stdlib/LinearAlgebra/test/cholesky.jl
@@ -64,7 +64,6 @@ end
64
65
@testset "throw for non-square input" begin
66
A = rand(eltya, 2, 3)
67
- @test_throws DimensionMismatch LinearAlgebra.chol!(A)
68
@test_throws DimensionMismatch cholesky(A)
69
@test_throws DimensionMismatch cholesky!(A)
70
end
@@ -87,7 +86,6 @@ end
87
86
88
apos = apd[1,1]
89
@test all(x -> x ≈ √apos, cholesky(apos).factors)
90
- @test_throws PosDefException cholesky(-one(eltya))
91
92
# Test cholesky with Symmetric/Hermitian upper/lower
93
apds = Symmetric(apd)
@@ -263,7 +261,6 @@ end
263
261
for A in (R, C)
264
262
@test !LinearAlgebra.issuccess(cholesky(A))
265
@test !LinearAlgebra.issuccess(cholesky!(copy(A)))
266
- @test_throws PosDefException LinearAlgebra.chol!(copy(A))
267
268
269
0 commit comments