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
@@ -204,9 +217,6 @@ The out-of-place alternative is [`decompress`](@ref).
204
217
Compression means summing either the columns or the rows of `A` which share the same color.
205
218
It is done by calling [`compress`](@ref).
206
219
207
-
For `:symmetric` coloring results (and for those only), an optional positional argument `uplo in (:U, :L, :F)` can be passed to specify which part of the matrix `A` should be updated: the Upper triangle, the Lower triangle, or the Full matrix.
208
-
When `A isa SparseMatrixCSC`, using the `uplo` argument requires a target matrix which only stores the relevant triangle(s).
209
-
210
220
!!! warning
211
221
For some coloring variants, the `result` object is mutated during decompression.
212
222
@@ -260,7 +270,7 @@ function decompress! end
260
270
"""
261
271
decompress_single_color!(
262
272
A::AbstractMatrix, b::AbstractVector, c::Integer,
263
-
result::AbstractColoringResult, [uplo=:F]
273
+
result::AbstractColoringResult,
264
274
)
265
275
266
276
Decompress the vector `b` corresponding to color `c` in-place into `A`, given a `:direct` coloring `result` of the sparsity pattern of `A` (it will not work with a `:substitution` coloring).
@@ -272,9 +282,6 @@ Decompress the vector `b` corresponding to color `c` in-place into `A`, given a
272
282
!!! warning
273
283
This function will only update some coefficients of `A`, without resetting the rest to zero.
274
284
275
-
For `:symmetric` coloring results (and for those only), an optional positional argument `uplo in (:U, :L, :F)` can be passed to specify which part of the matrix `A` should be updated: the Upper triangle, the Lower triangle, or the Full matrix.
276
-
When `A isa SparseMatrixCSC`, using the `uplo` argument requires a target matrix which only stores the relevant triangle(s).
277
-
278
285
!!! warning
279
286
For some coloring variants, the `result` object is mutated during decompression.
0 commit comments