Skip to content

Instantly share code, notes, and snippets.

@alamin150212
alamin150212 / tsp.py
Created July 30, 2018 18:20 — forked from turbofart/tsp.py
Applying a genetic algorithm to the travelling salesman problem
#!/usr/bin/env python
"""
This Python code is based on Java code by Lee Jacobson found in an article
entitled "Applying a genetic algorithm to the travelling salesman problem"
that can be found at: http://goo.gl/cJEY1
"""
import math
import random