Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/linalg.jl
Original file line number Diff line number Diff line change
Expand Up @@ -1312,7 +1312,7 @@ function rdiv!(A::AbstractSparseMatrixCSC{T}, D::Diagonal{T}) where T
A
end

function ldiv!(D::Diagonal{T}, A::AbstractSparseMatrixCSC{T}) where {T}
function ldiv!(D::Diagonal{T}, A::Union{AbstractSparseMatrixCSC{T}, AbstractSparseVector{T}}) where {T}
# require_one_based_indexing(A)
if size(A, 1) != length(D.diag)
throw(DimensionMismatch("diagonal matrix is $(length(D.diag)) by $(length(D.diag)) but right hand side has $(size(A, 1)) rows"))
Expand Down
3 changes: 3 additions & 0 deletions test/linalg.jl
Original file line number Diff line number Diff line change
Expand Up @@ -338,6 +338,9 @@ end
@test lmul!(transpose(copy(D)), copy(b)) ≈ transpose(MD)*bd
@test lmul!(adjoint(copy(D)), copy(b)) ≈ MD'*bd
end

v = sprand(eltype(D), size(D,1), 0.1)
@test ldiv!(D, copy(v)) == D \ Array(v)
end
end

Expand Down
Loading