We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ee2823 commit 5a4b5e0Copy full SHA for 5a4b5e0
src/decompression.jl
@@ -724,12 +724,13 @@ 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,M<:AbstractMatrix{R}} <: AbstractMatrix{R}
+struct JoinCompressed{R<:Real,M1<:AbstractMatrix{R},M2<:AbstractMatrix{R}} <:
728
+ AbstractMatrix{R}
729
m::Int
730
n::Int
731
c::Int
- Br::M
732
- Bc::M
+ Br::M1
733
+ Bc::M2
734
row_color_ind::Dict{Int,Int}
735
col_color_ind::Dict{Int,Int}
736
end
0 commit comments