Class TabuSearch


  • public class TabuSearch
    extends java.lang.Object
    implements a simple Tabu Search without long term memory for combinatorics problems
    Author:
    Sebastian Franke
    • Constructor Summary

      Constructors 
      Constructor Description
      TabuSearch​(CombinatoricsProblem prob, int maxIteration, int tabuSize, int maxStepsWithNoImprove)  
    • Method Summary

      Modifier and Type Method Description
      java.util.ArrayList<ElementOfCombinatoricsProb> solve​(java.util.ArrayList<ElementOfCombinatoricsProb> initialSol)  
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • TabuSearch

        public TabuSearch​(CombinatoricsProblem prob,
                          int maxIteration,
                          int tabuSize,
                          int maxStepsWithNoImprove)