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 25f36af commit 061c6bbCopy full SHA for 061c6bb
test/linalg/uniformscaling.jl
@@ -69,7 +69,7 @@ let
69
@testset "transpose, conj, inv" begin
70
@test ndims(J) == 2
71
@test transpose(J) == J
72
- @test J * [1 0; 0 1] == conj(Ac_mul_B(J, [1 0; 0 1])) # ctranpose (and A(c)_mul_B)
+ @test J * [1 0; 0 1] == conj(*(Base.LinAlg.Adjoint(J), [1 0; 0 1])) # ctranpose (and A(c)_mul_B)
73
@test I + I === UniformScaling(2) # +
74
@test inv(I) == I
75
@test inv(J) == UniformScaling(inv(λ))
0 commit comments