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 cc01b00 commit a26b85aCopy full SHA for a26b85a
test/core.jl
@@ -266,7 +266,7 @@ end
266
@test ArrayInterface.lu_instance(A) isa typeof(lu(A))
267
@test ArrayInterface.qr_instance(A) isa typeof(qr(A))
268
269
- if !(eltype(A) isa BigFloat)
+ if !(eltype(A) <: BigFloat)
270
@test ArrayInterface.bunchkaufman_instance(A) isa typeof(bunchkaufman(A' * A))
271
@test ArrayInterface.cholesky_instance(A) isa typeof(cholesky(A' * A))
272
@test ArrayInterface.ldlt_instance(A) isa typeof(ldlt(SymTridiagonal(A' * A)))
0 commit comments