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 09d8c8a commit e5657d2Copy full SHA for e5657d2
test/test_adjtrans.jl
@@ -41,8 +41,8 @@ function test_derived_adjoint()
41
A = rand(5, 3) + im * rand(5, 3)
42
43
opA = LinearOperator{eltype(A)}(size(A,1), size(A,2), false, false,
44
- (y,x) -> (mul!(y,A,x)),
45
- (x,y) -> (mul!(x,transpose(A),y)),
+ (y,x) -> mul!(y,A,x),
+ (x,y) -> mul!(x,transpose(A),y),
46
nothing)
47
48
aopA = AdjointLinearOperator(opA)
@@ -84,9 +84,9 @@ function test_derived_transpose()
84
85
86
87
88
nothing,
89
- (x,y) -> (mul!(x,adjoint(A),y)))
+ (x,y) -> mul!(x,adjoint(A),y))
90
91
92
copA = ConjugateLinearOperator(opA)
0 commit comments