2

Do you know a good and most important detailed Tabu search example.

Something not to hard, as I am in the way to understand this cool algorithm.

I have found this tutorial and this with a SAT problem, but it is not very detailed

edgarmtze
  • 24,683
  • 80
  • 235
  • 386

3 Answers3

3

I learned it from Wikipedia years ago, but this book is much better. For code examples, take a look at OptaPlanner's source code.

Geoffrey De Smet
  • 26,223
  • 11
  • 73
  • 120
2

I wrote a blog about tabu search and how it's used to solve the TSP, along with the java implementation. I hope it's of help.

Nullbeans
  • 309
  • 1
  • 8
1

Clever Algorithms by Jason Brownlee PhD describes Tabu Search and also includes sample Ruby code.

Christopher Manning
  • 4,527
  • 2
  • 27
  • 36