This repository was archived by the owner on Aug 22, 2025. It is now read-only.
Commit fe1402b
committed
don't fill! on a SparseMatrix
```julia
julia> x = sprand(2,2,0.5)
2×2 SparseMatrixCSC{Float64, Int64} with 1 stored entry:
0.507603 ⋅
⋅ ⋅
julia> fill!(x, true)
2×2 SparseMatrixCSC{Float64, Int64} with 4 stored entries:
1.0 1.0
1.0 1.0
```
Seems like an issue for Base.1 parent de19848 commit fe1402b
1 file changed
+5
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
296 | 296 | | |
297 | 297 | | |
298 | 298 | | |
299 | | - | |
| 299 | + | |
| 300 | + | |
| 301 | + | |
| 302 | + | |
| 303 | + | |
300 | 304 | | |
301 | 305 | | |
302 | 306 | | |
| |||
0 commit comments