Skip to content

edgarsmdn/TS

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Tabu Search

Development

This work was part of the project I did during my undergrad research internship in the summer of 2018 at the Centre for Process Integration, The University of Manchester on stochastic optimization.

Background

Tabu Search (TS) is an extension of the Local Search (LS) optimization algorithm and it is accredited to Fred Glover (Glover, 1986). Likewise, TS starts with a random point in the search space and try to reach the local minimum in the vicinity of the point. Once the LS stage finishes, it stores the best point found in a list (known as “Tabu List”) and repeat the search process with a new random point. As the name suggests, the tabu list prevents the algorithm to choose the same point twice.

TS is usually used for discrete points but it can be extended for continuous functions if a tabu continuous radius is implemented. In this case, the Tabu List will prevent the algorithm to select points within the vecinity defined by the continuous radius. In other words, instead of preventing single points to be selected, the augmented algorithm prevents the sampling in the neighborhoods of the already visited points. The Tabu list is updated once its final length (which the user has to determine) is reached, and it deletes the oldest tabu to be able to store the new one. In this way, the memory requirement is small and the algorithm can walk towards the optimum.

Prerequisites

The function requires Python 3.0 (or more recent versions). The stoch_optim_utilities.py file (which contains common utilities needed in stochastic optimization algorithms) needs to be in the same directory as the function file TS.py.

Functioning

Inputs

TS(f, max_iter, max_iter_LS, bounds, radius, reduce_iter, reduce_frac, max_tabu_size, continuos_radius, p_init=None, traj=False)

        1. The function to be optimized. The functions needs to be of the form equation.

        2. The maximum number of iterations in the Tabu Search (stopping criteria).

        3. The maximum number of iterations for the sub-routine Local Search. Local Search is used at each non-Tabu proposed point to find the local optimum close to it.

        4. The bounds for each dimension of the fucntion. This has to be a list of the form [(lb1, ub1), (1b2, ub2), ...].

        5. The initial search radius for Local Search.

        6. The number of iterations with the same optimum that will induce a search radius reduction in LS.

        7. The fraction to which the search radius is reduced in LS.

        8. The maximum number of points stored in the Tabu List.

        9. The Tabu radius which defines the Tabu neighborhoods.

        9. (Optional) The initial point for the funtion to be firstly evaluated. If not given, it will generates one randomly

        10. (Optional) The ON/OFF feature for the algorithm to provide the trajectory. Default is false.

Outputs

Optimum: (class) Results with:
        Optimum.f: (float) The best value of the funtion found in the optimization
        Optimum.x: (array) The best point in which the function was evaluated
        Optimum.traj_f: (array) Trajectory of function values (including LS iterations)
        Optimum.traj_x: (array) Trajectory of positions (including LS iterations)
        Optimum.traj_f_sum_up: (array) Trajectory of function values (including TS steps only). 
                                        First column is number of total iterations.
        Optimum.traj_x_sum_up: (array) Trajectory of positions (including TS steps only)

General information

  • The current stopping criteria is the maximum number of iterations specified by the user.

  • Within the Local Search (LS) framework that is performed at each major iteration of TS, the search neighborhood is reduced iteratively by eq. A LS is performed at each major iteration of the Tabu Search algorithm.

  • The Local Search algorithm is contained in the utilities file stoch_optim_utilities.py

References

Glover, F. (1986). Future Paths for Integer Programming and Links to Artificial Intelligence. Computers and Operations Research Vol. 13, 533-549.

License

This repository contains a MIT LICENSE

Releases

No releases published

Packages

No packages published

Languages