Tabu search algorithm flow <br>through the introduction of the above examples, basically understand the mechanism and steps of tabu search. The basic idea of the simple TS algorithm is: Given a current solution (initial solution) and a neighborhood, and then determine a number of candidate solutions in the neighborhood of the current solution; if the target value of the best candidate solution is better than "best so "far" state, ignore its taboo characteristics, use it to replace the current solution and "best so far" state, add the corresponding object to the taboo table, and modify the term of each object in the taboo table; if there is no such candidate solution, then Choose the best non-taboo state among the candidate solutions as the new current solution, ignoring the pros and cons between it and the current solution, and at the same time add the corresponding object to the taboo table, and modify the term of each object in the taboo table; repeat the above Iterate the search process until the stopping criterion is met. <br>To be more organized, the algorithm steps of simple tabu search can be described as follows:
正在翻译中..