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.
Bidiagonal
1 parent 30cb5d6 commit 6073f28Copy full SHA for 6073f28
test/bidiag.jl
@@ -362,8 +362,9 @@ Random.seed!(1)
362
@test (x\T)::typediv ≈ x\TM
363
@test (T/x)::typediv ≈ TM/x
364
if !isa(x, Number)
365
- @test Array((T\x)::typediv2) ≈ Array(TM\x)
366
- @test Array((x/T)::typediv2) ≈ Array(x/TM)
+ U = T.uplo == 'U' ? UpperTriangular : LowerTriangular
+ @test Array((T\x)::typediv2) ≈ Array(U(TM)\x)
367
+ @test Array((x/T)::typediv2) ≈ Array(x/U(TM))
368
end
369
return nothing
370
0 commit comments