Skip to content

Commit d25581b

Browse files
authored
Update src/coloring.jl
1 parent 8b377be commit d25581b

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

src/coloring.jl

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -431,7 +431,10 @@ struct TreeSet{T}
431431
reverse_bfs_orders::Vector{Tuple{T,T}}
432432
"For a tree index `1 <= k <= nt`, `is_star[k]` indicates whether the `k`th three is a star."
433433
is_star::Vector{Bool}
434-
"`tree_edge_indices[1]` is one and `tree_edge_indices[k+1] - tree_edge_indices[k]` is the number of edges in the `k`th tree"
434+
"""
435+
`tree_edge_indices[1]` is one and `tree_edge_indices[k+1] - tree_edge_indices[k]` is the number of edges in the `k`th tree.
436+
One can think of it as a kind of fused vector of offsets (similar to the `colptr` field of `SparseMatrixCSC`) of all trees together.
437+
"""
435438
tree_edge_indices::Vector{T}
436439
"numbers of 2-colored trees for which trees sharing the same 2 colors have disjoint vertices"
437440
nt::T

0 commit comments

Comments
 (0)