Skip to content

Commit

Permalink
Remove old code
Browse files Browse the repository at this point in the history
  • Loading branch information
amontoison committed Sep 25, 2024
1 parent a32bc37 commit 9d890be
Showing 1 changed file with 0 additions and 16 deletions.
16 changes: 0 additions & 16 deletions src/decompression.jl
Original file line number Diff line number Diff line change
Expand Up @@ -370,22 +370,6 @@ function decompress!(
return A
end

function decompress_single_color!(
A::SparseMatrixCSC{R}, b::AbstractVector{R}, c::Integer, result::RowColoringResult
) where {R<:Real}
@compat (; S, Sᵀ, group) = result
check_same_pattern(A, S)
rvSᵀ = rowvals(Sᵀ)
nzA = nonzeros(A)
for i in group[c]
for k in nzrange(Sᵀ, i)
j = rvSᵀ[k]
nzA[k] = b[j]
end
end
return A
end

## StarSetColoringResult

function decompress!(
Expand Down

0 comments on commit 9d890be

Please sign in to comment.