Skip to content

Commit 3fb8a9e

Browse files
Fix error on mul!
1 parent 9190d18 commit 3fb8a9e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/basic.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -471,7 +471,7 @@ function LinearAlgebra.mul!(v::AbstractVecOrMat, L::AddedOperator, u::AbstractVe
471471
mul!(v, first(L.ops), u)
472472
for op in L.ops[2:end]
473473
iszero(op) && continue
474-
mul!(v, op, u)
474+
mul!(v, op, u, true, true)
475475
end
476476
v
477477
end

0 commit comments

Comments
 (0)