Skip to content

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

Notifications You must be signed in to change notification settings

wrk226/ASA-GS_for_TSP

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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).

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages