Skip to content

Latest commit

 

History

History
9 lines (8 loc) · 659 Bytes

README.md

File metadata and controls

9 lines (8 loc) · 659 Bytes

Tabu Search Metaheuristic for the Graph Coloring Problem

Tabu Search is a local search procedure with a concept of a tabu list to broaden exploration of the search space by blocking previous moves. Worsening moves are also accepted if there is no better solution which helps with situations where algorithm gets stuck at a local minimum.
Thanks to these properties of the algorithm, it is a good fit for solving NP problems such as graph coloring.

More information