Skip to content

Commit 5a4b5e0

Browse files
committed
[documentation] Add JoinCompressed
1 parent 2ee2823 commit 5a4b5e0

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/decompression.jl

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -724,12 +724,13 @@ 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,M<:AbstractMatrix{R}} <: AbstractMatrix{R}
727+
struct JoinCompressed{R<:Real,M1<:AbstractMatrix{R},M2<:AbstractMatrix{R}} <:
728+
AbstractMatrix{R}
728729
m::Int
729730
n::Int
730731
c::Int
731-
Br::M
732-
Bc::M
732+
Br::M1
733+
Bc::M2
733734
row_color_ind::Dict{Int,Int}
734735
col_color_ind::Dict{Int,Int}
735736
end

0 commit comments

Comments
 (0)