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 ca43b2e commit a98c235Copy full SHA for a98c235
test/core.jl
@@ -277,7 +277,9 @@ end
277
for A in [sparse([1.0 2.0; 3.0 4.0])]
278
@test ArrayInterface.lu_instance(A) isa typeof(lu(A))
279
@test ArrayInterface.qr_instance(A) isa typeof(qr(A))
280
- @test ArrayInterface.cholesky_instance(A' * A) isa typeof(cholesky(A' * A))
+ if VERSION >= v"1.9-"
281
+ @test ArrayInterface.cholesky_instance(A' * A) isa typeof(cholesky(A' * A))
282
+ end
283
@test ArrayInterface.ldlt_instance(SymTridiagonal(A' * A)) isa typeof(ldlt(SymTridiagonal(A' * A)))
284
end
285
0 commit comments