Skip to content

Commit 9a27522

Browse files
committed
Update decompression.jl
1 parent 07d7e1d commit 9a27522

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/decompression.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -724,12 +724,12 @@ We use the dictionaries `col_color_ind` and `row_color_ind` to map colors obtain
724724
- `row_color_ind::Dict{Int,Int}` : dictionary mapping symmetric colors to row indices in `Br`
725725
- `col_color_ind::Dict{Int,Int}` : dictionary mapping symmetric colors to column indices in `Bc`
726726
"""
727-
struct JoinCompressed{R<:Real} <: AbstractMatrix{R}
727+
struct JoinCompressed{R<:Real,M<:AbstractMatrix{R}} <: AbstractMatrix{R}
728728
m::Int
729729
n::Int
730730
c::Int
731-
Br::Matrix{R}
732-
Bc::Matrix{R}
731+
Br::M
732+
Bc::M
733733
row_color_ind::Dict{Int,Int}
734734
col_color_ind::Dict{Int,Int}
735735
end

0 commit comments

Comments
 (0)