Skip to content

PanNorek/essa-tsp-metaheuristics

Repository files navigation

essa-tsp-metaheuristics

Contents

  1. 📊 About
  2. 📋 Requirements
  3. ⭐ Features
  4. 📝 Examples
  5. 👨‍💻 Contributing
  6. 📂 Directory Structure
  7. 📅 Development schedule
  8. 📧 Contact
  9. 📄 License

📊 About

A repository containing heuristics for the traveling salesman problem (TSP) is a collection of algorithms and techniques that can be used to approximately solve the TSP. The TSP is a classic optimization problem in computer science that involves finding the shortest possible route that visits a given set of cities and returns to the starting city. The problem is NP-hard, meaning that it is very difficult to find an exact solution, particularly for large sets of cities. Heuristics are methods that can quickly find a good, but not necessarily optimal, solution to the TSP. These methods are useful for real-world applications where finding the exact solution may be impractical due to time or resource constraints. The repository contains a variety of heuristics, such as nearest neighbor, hill climbing and genetic algorithm.

📋 Requirements

  1. The library works under Python 3.9+
  2. Algorithms need distance matrix to solve the problem. A distance matrix is a table that lists the distances between pairs of objects. In the context of this repository, a distance matrix is an excel file that specifies the distances between every pair of cities in the TSP. The distance matrix is used to define the TSP, as it specifies the cost of traveling from one city to another.

Distance matrix examples:

  • Example Problem

https://www.thecrazyprogrammer.com/2017/05/travelling-salesman-problem.html

  • Format supported by the repository

⭐ Features

  • Parallel Multistart for algorithms except Genetic Algorithm
  • GridSearch running in parallel for Genetic Algorithm

Parallel Multistart

from src.utils import load_data, PathPlotter, BenchmarkPlotter, DistanceHistoryPlotter
from src.algos import *
import os

distances = load_data(os.path.join("data", "Data_TSP_127.xlsx"))

result = MultistartAlgorithm()(HillClimbing, distances, n_starts=NUM_STARTS, only_best=True, verbose=False, n_jobs=-1, n_iter=25)
print(result)

GridSearch

from src.utils import *
from src.algos import *
import os

distances = load_data(os.path.join("data", "Data_TSP_29.xlsx"))

param_grid = {
    "POP_SIZE": [500],
    "N_ITERS": [100],
    "SELECTION_METHOD": ["truncation", "roulette", "tournament"], # "truncation", "roulette", "tournament"
    "CROSSOVER_METHOD": ["pmx", "ox"], # "ox", "pmx"
    "ELITE_SIZE": [0, ],
    "MATING_POOL_SIZE": [.5],
    "MUTATION_RATE": [.15],
    "NEIGH_TYPE": ["inversion", "insertion", "swap"], # "inversion", "insertion", "swap"
    "VERBOSE": [True]
}

gg = GridSearchGA(param_grid=param_grid, n_jobs=-1)
result = gg.solve(distances)
print(result)

📝 Examples

Example 1. Run Nearest Neighbor Algorithm

The nearest neighbor algorithm is a heuristic for solving the traveling salesman problem (TSP). It is a simple and efficient method that can be used to quickly find a good, although not necessarily optimal, solution to the TSP. The algorithm works by iteratively adding the nearest unvisited city to the current tour until all cities have been visited.

from src.utils import load_data
from src.algos import *
import os

distances = load_data(os.path.join("data", "Data_TSP_127.xlsx"))

n = NearestNeighbour(verbose=False)
result = n.solve(distances, start_order=14) # we start from 14th city
print(result)

👨‍💻 Contributing

📂 Directory Structure

├───.github
|   └───workflows
├───assets
├───data
├───notebooks
└───src
    ├───algos
    └───utils
        └───genetic

📅 Development Schedule

Version 1.0.0

  • Nearest Neighbour Algorithm
  • Hill Climbing Algorithm
  • Tabu Search Algorithm
  • Simulated Annealing Algorithm
  • Genetic Algorithm
  • Parallel Multistart for algorithms except Genetic Algorithm
  • GridSearch running in parallel for Genetic Algorithm
  • Python package

Version 2.0.0

  • Rework Multistart feature
  • Code optimization
  • More data load possibilities

🎓 Learning Materials

📧 Contact

📄 License

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published