wrk226 / ASA-GS_for_TSP

It is the implementation of paper "Solving the traveling salesman problem based on an adaptive simulated annealing algorithm with greedy search". This algorithm was created to solve TSP (travelling salesman problem).

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ASA-GS

It is the implementation of paper [1]. ASA-GS is the initial of adaptive simulated annealing algorithm with greedy search. This algorithm was created to solve TSP (travelling salesman problem).

Introduction

This algorithm is based on the simulated annealing algorithm and will perform greedy search in mutation process to speed up the convergence rate.
Here is the flow diagram of the ASA-GS. This implementation is following this diagram exactly. 20200923095423

How to use it

ASAGS.java will receive two arguments: path, OPT
"path" is the path of data file
"OPT" is the appproximate optimal distance

There are two parameters in the program you might want to tune, they can change the accuracy and converge speed of the algorithm
"alpha": higher alpha, lower cool speed
"beta": higher beta, more times of greedy search

You may found some useful information from here

References

  1. Solving the traveling salesman problem based on an adaptive simulated annealing algorithm with greedy search
    Xiutang Geng, Zhihua Chen, Wei Yang, Deqian Shi, Kai Zhao.
    [link]. Applied Soft Computing, 11(4), 3680-3689.(2011)

About

It is the implementation of paper "Solving the traveling salesman problem based on an adaptive simulated annealing algorithm with greedy search". This algorithm was created to solve TSP (travelling salesman problem).

License:MIT License


Languages

Language:Java 100.0%