We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 07d7e1d commit 9a27522Copy full SHA for 9a27522
1 file changed
src/decompression.jl
@@ -724,12 +724,12 @@ We use the dictionaries `col_color_ind` and `row_color_ind` to map colors obtain
724
- `row_color_ind::Dict{Int,Int}` : dictionary mapping symmetric colors to row indices in `Br`
725
- `col_color_ind::Dict{Int,Int}` : dictionary mapping symmetric colors to column indices in `Bc`
726
"""
727
-struct JoinCompressed{R<:Real} <: AbstractMatrix{R}
+struct JoinCompressed{R<:Real,M<:AbstractMatrix{R}} <: AbstractMatrix{R}
728
m::Int
729
n::Int
730
c::Int
731
- Br::Matrix{R}
732
- Bc::Matrix{R}
+ Br::M
+ Bc::M
733
row_color_ind::Dict{Int,Int}
734
col_color_ind::Dict{Int,Int}
735
end
0 commit comments