Skip to content

Commit

Permalink
Update src/linalg.jl
Browse files Browse the repository at this point in the history
Co-authored-by: Daniel Karrasch <daniel.karrasch@posteo.de>
  • Loading branch information
albertomercurio and dkarrasch authored Jul 12, 2023
1 parent 1854e8a commit b3e300e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/linalg.jl
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ function dot(x::AbstractVector{T1}, A::AbstractSparseMatrixCSC{T2}, y::AbstractV
for j in nzrange(A, col)
row = A.rowval[j]
val = A.nzval[j]
s += dot(conj(x[row]), val, ycol)
s += dot(x[row], val, ycol)
end
end
return s
Expand Down

0 comments on commit b3e300e

Please sign in to comment.