You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Compute a star coloring of all vertices in the adjacency graph `g` and return a tuple `(color, star_set)`, where
60
60
@@ -67,14 +67,14 @@ The vertices are colored in a greedy fashion, following the `order` supplied.
67
67
68
68
# See also
69
69
70
-
- [`Graph`](@ref)
70
+
- [`AdjacencyGraph`](@ref)
71
71
- [`AbstractOrder`](@ref)
72
72
73
73
# References
74
74
75
75
> [_New Acyclic and Star Coloring Algorithms with Application to Computing Hessians_](https://epubs.siam.org/doi/abs/10.1137/050639879), Gebremedhin et al. (2007), Algorithm 4.1
Compute an acyclic coloring of all vertices in the adjacency graph `g` and return a tuple `(color, tree_set)`, where
253
253
@@ -260,17 +260,17 @@ The vertices are colored in a greedy fashion, following the `order` supplied.
260
260
261
261
# See also
262
262
263
-
- [`Graph`](@ref)
263
+
- [`AdjacencyGraph`](@ref)
264
264
- [`AbstractOrder`](@ref)
265
265
266
266
# References
267
267
268
268
> [_New Acyclic and Star Coloring Algorithms with Application to Computing Hessians_](https://epubs.siam.org/doi/abs/10.1137/050639879), Gebremedhin et al. (2007), Algorithm 3.1
0 commit comments