Uses of Interface
org.jgrapht.alg.interfaces.VertexColoringAlgorithm.Coloring
Packages that use VertexColoringAlgorithm.Coloring
Package
Description
Graph coloring algorithms.
Algorithm related interfaces.
-
Uses of VertexColoringAlgorithm.Coloring in org.jgrapht.alg.color
Methods in org.jgrapht.alg.color that return VertexColoringAlgorithm.ColoringModifier and TypeMethodDescriptionBrownBacktrackColoring.getColoring()
ChordalGraphColoring.getColoring()
Returns a minimum vertex coloring of the inspectedgraph
.ColorRefinementAlgorithm.getColoring()
Calculates a canonical surjective k-coloring of the given graph such that the classes of the coloring form the coarsest stable partition that refines alpha.GreedyColoring.getColoring()
Computes a vertex coloring.SaturationDegreeColoring.getColoring()
Computes a vertex coloring.Constructors in org.jgrapht.alg.color with parameters of type VertexColoringAlgorithm.ColoringModifierConstructorDescriptionColorRefinementAlgorithm
(Graph<V, E> graph, VertexColoringAlgorithm.Coloring<V> alpha) Construct a new coloring algorithm. -
Uses of VertexColoringAlgorithm.Coloring in org.jgrapht.alg.interfaces
Classes in org.jgrapht.alg.interfaces that implement VertexColoringAlgorithm.ColoringModifier and TypeClassDescriptionstatic class
Default implementation of the coloring interface.Methods in org.jgrapht.alg.interfaces that return VertexColoringAlgorithm.ColoringModifier and TypeMethodDescriptionVertexColoringAlgorithm.getColoring()
Computes a vertex coloring.