I am looking for a complete CSP solver, meaning it will always find a solution if it exists and will tell you if no solution exists. A solver that is optimized for graph coloring is preferred, but not necessary. There are many iterative algorithms/solvers out there but I require a completeness(?) for my work.

I have implemented my own solver using the Weak-Commitment Search algorithm but I'm sure there are many optimizations and thread-based features that could make for a much faster solver and allow me to increase the number of variables I can use in my simulation. I realize it's an exponentially difficult problem, but every little bit will help!

link|improve this question
feedback

1 Answer

up vote 0 down vote accepted

Someone has implemented the branch-and-price method of Mehrotra and Trick. I haven't used this code, but I believe that the approach is the state of the art in exact coloring.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.