@@ -716,31 +716,31 @@ end
716716
717717# # StarSetBicoloringResult
718718
719- function decompress! (
720- A:: AbstractMatrix ,
721- Br:: AbstractMatrix ,
722- Bc:: AbstractMatrix ,
723- result:: StarSetBicoloringResult ,
724- )
725- (; ag, symmetric_color, symmetric_to_row, symmetric_to_column, star_set) = result
726- (; star, hub, spokes) = star_set
727- (; S) = ag
728- fill! (A, zero (eltype (A)))
729-
730- m, n = size (A)
731- for s in eachindex (hub, spokes)
732- j = abs (hub[s])
733- cj = symmetric_color[j]
734- for i in spokes[s]
735- if in_triangle (i, j, :L )
736- A[i - n, j] = Bc[i - n, symmetric_to_column[cj]]
737- else
738- A[j - n, i] = Br[symmetric_to_row[cj], i]
739- end
740- end
741- end
742- return A
743- end
719+ # function decompress!(
720+ # A::AbstractMatrix,
721+ # Br::AbstractMatrix,
722+ # Bc::AbstractMatrix,
723+ # result::StarSetBicoloringResult,
724+ # )
725+ # (; ag, symmetric_color, symmetric_to_row, symmetric_to_column, star_set) = result
726+ # (; star, hub, spokes) = star_set
727+ # (; S) = ag
728+ # fill!(A, zero(eltype(A)))
729+
730+ # m, n = size(A)
731+ # for s in eachindex(hub, spokes)
732+ # j = abs(hub[s])
733+ # cj = symmetric_color[j]
734+ # for i in spokes[s]
735+ # if in_triangle(i, j, :L)
736+ # A[i - n, j] = Bc[i - n, symmetric_to_column[cj]]
737+ # else
738+ # A[j - n, i] = Br[symmetric_to_row[cj], i]
739+ # end
740+ # end
741+ # end
742+ # return A
743+ # end
744744
745745function decompress! (
746746 A:: SparseMatrixCSC ,
0 commit comments