Skip to content

Valdecy/Metaheuristic-Local_Search-Scatter_Search

Repository files navigation

Metaheuristic-Local_Search-Scatter_Search

Scatter Search Function for TSP problems. The function returns: 1) A list with the order of the cities to visit, and the total distance for visiting this same list order.

  • X = Distance Matrix.

  • buid_distance_matrix (HELPER FUNCTION) = Tranforms coordinates in a distance matrix (euclidean distance).

  • city_tour = Initial list of visitation.

  • seed (HELPER FUNCTION) = Generates a random list of visitation.

  • iterations = Total number of iterations. The Default Value is 5.

  • reference_size = Population size. The Default Value is 25.

  • reverse_prob = Crossover operator that reverses the visitation order of a group of cities. The Default Value is 0.5.

  • scramble_prob = Crossover operator that scrambles the visitation order of a group of cities. The Default Value is 0.3.

  • plot_tour_distance_matrix (HELPER FUNCTION) = A projection is generated based on the distance matrix. The estimated projection may present a plot with path crosses, even for the 2-opt optimal solution (Red Point = Initial city; Orange Point = Second City).

  • plot_tour_coordinates (HELPER FUNCTION) = Plots the 2-opt optimal solution (Red Point = Initial city; Orange Point = Second City).

Single Objective Optimization

For Single Objective Optimization try pyMetaheuristic

Multiobjective Optimization or Many Objectives Optimization

For Multiobjective Optimization or Many Objectives Optimization try pyMultiobjective

TSP (Travelling Salesman Problem)

For Travelling Salesman Problems try pyCombinatorial

About

Scatter Search Function for TSP problems

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages