We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8b377be commit d25581bCopy full SHA for d25581b
1 file changed
src/coloring.jl
@@ -431,7 +431,10 @@ struct TreeSet{T}
431
reverse_bfs_orders::Vector{Tuple{T,T}}
432
"For a tree index `1 <= k <= nt`, `is_star[k]` indicates whether the `k`th three is a star."
433
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"
+ """
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
438
tree_edge_indices::Vector{T}
439
"numbers of 2-colored trees for which trees sharing the same 2 colors have disjoint vertices"
440
nt::T
0 commit comments