Skip to content

timgluz/teeline

Repository files navigation

Teeline

Teeline is a solver for the symmetric Traveling Salesman Problem, written in Rust.

The Traveling Salesman Problem (TSP) is the searchfor a minimum cost Hamiltonian circuit connecting aset of locations.source

It still work in progress. Although it already has for all algorithms teached by any CS courses. More advanced algorithms would be implemented after the structure of code and interfaces has been stabilized.

Backstory

It all started from the "In Pursuit of the Traveling Salesman" book. It is an fantastic book, it covers history of the Salesman problem and the big idea behind the Concorde solver. I was sincerely suprised that the Linear Programming worked so well for this problem and can provide exact solutions for very big problems.

After i finished the book, i took the Discrete Optimization course on the Coursera. So i could learn more about discrete optimization and a theory behind the Concorde solver.

One of the homeworks also asked to build the TSP solver, that could get also solve problem that has more than 10_000 cities, which encouraged me to experiment alternative solutions and give me good chance to learn Rust.

Getting started

  • install rust:

  • compile binary: cargo build --release

  • copy binary to your workfolder: cp ./target/release/bin teeline

  • test the binary: ./teeline -h

  • compile runnable binary:

cargo build --release

Visualizing solution

generate solution file

cat ./data/tsp_51_1 | ./target/debug/bin > solution51.txt

upload data file and solution file to: https://discreteoptimization.github.io/vis/tsp/ to visualize solution;

Using dev version

# build project
cargo build

# check available settings and commands
./target/debug/bin -h

# use default settings
cat ./data/tsplib/berlin52.tsp | ./target/debug/bin

# or pass files as cli argument if no extra processing is required
./target/debug/bin -i ./data/tsplib/berlin52.tsp

# use Bellman-Held-Karp algoritm as solver
# be careful, it wouldnt work for dataset bigger than 30
cat ./data/tsplib/bayg29.tsp | ./target/debug/bin bellman_karp

Preparing data

Teeline works only subset TSPLIB files - it expects that cities are presented as euclidean coordinates either in NODE_COORD_SECTION or DISPLAY_DATA_SECTION.

One can use the convert2tsplib to convert list of euclidean coordinates to TSPLIB file;

# chmod +x download_data

./download_data.sh

Exact algorithms:

*In computer science and operations research, exact algorithms are algorithms that always solve an optimization problem to optimality. *wiki

Exact algorithms are guaranteed to give optimal solutions. Although there's a small catch - a running time is exponential and they can solve only very small problems, because their running time complexity is either factorial or exponential.

branch-and-bound

A branch-and-bound algorithm consists of a systematic enumeration of candidate solutions by means of state space search: the set of candidate solutions is thought of as forming a rooted tree with the full set at the root.

The algorithm explores branches of this tree(branching), which represent subsets of the solution set. Before enumerating the candidate solutions of a branch, the branch is checked against upper and lower estimated bounds on the optimal solution (bounding), and is discarded if it cannot produce a better solution than the best one found so far by the algorithm. wiki

./teeline branch_bound --verbose
./teeling branch_bound -i ./data/discopt/tsp_5_1.tsp
Resources

Bellman-Karp-Held

The Held–Karp algorithm, also called Bellman–Held–Karp algorithm, is a dynamic programming algorithm proposed in 1962 independently by Bellman[1] and by Held and Karp[2] to solve the Traveling Salesman Problem (TSP). wiki

  1. Compute the solutions of all subproblems starting with the smallest.
  2. Whenever computing a solution requires solutions for smaller problems using the above recursive equations, look up these solutions which are already computed.
  3. To compute a minimum distance tour, use the final equation to generate the 1st node, and repeat for the other nodes. For this problem, we cannot know which subproblems we need to solve, so we solve them all.
./teeline bellman_karp  -i ./data/discopt/tsp_5_1.tsp
./teeline bhk
./teeline bhk --verbose
Resources

Approximate algorithms:

In computer science and operations research, approximation algorithms are efficient algorithms that find approximate solutions to optimization problems (in particular NP-hard problems) with provable guarantees on the distance of the returned solution to the optimal one. wiki

greedy nearest neighbors using KD-tree

It iterates over list of cities and selects the closest neighbor as next city. This implementation uses KD-tree for a lookup.

./teeline nn
./teeline nn --verbose
Resources

2-opt heuristic

In optimization, 2-opt is a simple local search algorithm for solving the traveling salesman problem. The main idea behind it is to take a route that crosses over itself and reorder it so that it does not.

./teeline two_opt
./teeline 2opt

./target/debug/bin 2opt -i ./data/discopt/tsp_5_1.tsp
Resources
stochastic hill climbing

It is an iterative algorithm that starts with an arbitrary solution to a problem, then attempts to find a better solution by making an incremental change to the solution. If the change produces a better solution, another incremental change is made to the new solution, and so on until no further improvements can be found.

The solver implements a version called Hill Climbing with random restarts to avoid getting stuck on plateu or local maxima;

Possible metaheuristics for tuning:

  • verbose - prints some debugging details onto std-out

  • epochs - max iterations, if 0 then it would run forever

  • platoo_epochs - how long to keep walking without any progress

./teeline stochastic_hill
./teeline stochastic_hill --epochs=100
./teeling stochastic_hill --platoo_epochs=10
Resources
simulated annealing

TODO

Simulated annealing (SA) is a probabilistic technique for approximating the global optimum of a given function.

available settings:

  • cooling_rate - specifies how fast should the temperature decrease

  • max_temperature - sets initial temperature, default 1000.0

  • min_temperature - sets the final temperature, default 0.001

  • epochs - how many iteration run before stopping the search

./teeline simulated_annealing
./teeline sa --verbose
./teeline sa --cooling_rate=0.1 --min_temperature=1.0
./teeline sa --max_temperature
Resources
tabu search

Tabu search enhances the performance of local search by relaxing its basic rule. First, at each step worsening moves can be accepted if no improving move is available (like when the search is stuck at a strict local minimum). In addition, prohibitions (henceforth the term tabu) are introduced to discourage the search from coming back to previously-visited solutions.

available options:

  • epochs - how many iterations to run before giving up
./teeline tabu_search --epochs=5
Resources
genetic search

In computer science and operations research, a genetic algorithm (GA) is a metaheuristic inspired by the process of natural selection that belongs to the larger class of evolutionary algorithms (EA).

available metaheuristics:

  • epochs - limits the max number of iteration before stopping the search, default 10.000

  • mutation_probability - sets the probability of applying random mutation for new child, default 0.001

  • n_elite - how many individuals of each population should sent directly to next generation, default 3

./teeline genetic_algorithm
./teeline ga --verbose
./teeline ga --epochs = 5 --mutation_probability = 0.2
./teeline ga --n_elite = 7
Resources

About

A solver for Traveling Salesman Problem with tunable metaheuristics

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published