I was wondering what the computational complexity of a metaheuristic like tabu search. Why there is not a section to discuss the time and space complexity of the algorithm in the original paper and even on the improvement of the algorithm like iterative tabu search and reactive tabu search?
I want to analyze the algorithm with others on the travelling salesman problem.
begin
T:= [ ];
s:=initial solution;
s*:=s
repeat
find the best admissible s’ є N(s);
if f(s’) > f(s*) then s*:=s’
s:=s’;
update tabu list T;
until stopping criterion:
end;