├── .gitignore ├── LICENSE ├── README.md ├── aco_tsp.py ├── requirements.txt └── tour_plots ├── ACS.png ├── Elitist.png └── MaxMin.png /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/* 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rochakgupta/aco-tsp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rochakgupta/aco-tsp/HEAD/README.md -------------------------------------------------------------------------------- /aco_tsp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rochakgupta/aco-tsp/HEAD/aco_tsp.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | matplotlib==2.1.2 2 | -------------------------------------------------------------------------------- /tour_plots/ACS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rochakgupta/aco-tsp/HEAD/tour_plots/ACS.png -------------------------------------------------------------------------------- /tour_plots/Elitist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rochakgupta/aco-tsp/HEAD/tour_plots/Elitist.png -------------------------------------------------------------------------------- /tour_plots/MaxMin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rochakgupta/aco-tsp/HEAD/tour_plots/MaxMin.png --------------------------------------------------------------------------------