Skip to content

Instantly share code, notes, and snippets.

@MoralCode
MoralCode / optimal_tsp.py
Last active May 7, 2019 17:33 — forked from westphahl/optimal_tsp.py
TSP brute-force solution in python3
"""
Author: Simon Westphahl <westphahl@gmail.com>
Description: Brute-force implementation for solving the TSP.
http://en.wikipedia.org/wiki/Travelling_salesman_problem
"""
routes = []