You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
diff --git a/base/sparse/sparsematrix.jl b/base/sparse/sparsematrix.jl
index 21720ab..fb6e0c5 100644
--- a/base/sparse/sparsematrix.jl+++ b/base/sparse/sparsematrix.jl@@ -2788,7 +2788,7 @@ function dropstored!(A::SparseMatrixCSC, i::Integer, j::Integer)
# Entry A[i,j] is stored. Drop and return.
deleteat!(A.rowval, searchk)
deleteat!(A.nzval, searchk)
- @simd for m in j:(A.n + 1)+ @simd for m in (j+1):(A.n + 1)
@inbounds A.colptr[m] -= 1
end
end
Tracker for #20488 (comment).
dropstored!
appears broken:Best!
The text was updated successfully, but these errors were encountered: