Package com.jgalgo.alg.color
Algorithms for solving graph coloring problems.
-
Interface Summary Interface Description ColoringAlgo An algorithm that assign a color to each vertex in a graph such that the endpoints of each edge have different colors. -
Class Summary Class Description ColoringAlgoAbstract Abstract class for coloring algorithms.ColoringDSatur The D-Satur coloring algorithm.ColoringGreedy A greedy coloring algorithm with random vertices order.ColoringRecursiveLargestFirst The Recursive Largest First coloring algorithm.