Skip to content

This project developed a genetic algorithm package to solve the multi-traveling salesman problem based on the IPGA proposed by Zhou et al. (2018).

Notifications You must be signed in to change notification settings

Albafica28/IPGA-for-MTSP

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Jan 4, 2022
db0c203 · Jan 4, 2022

History

10 Commits
No commit message
Jan 4, 2022
No commit message
Jan 4, 2022
No commit message
Jan 4, 2022
No commit message
Jan 4, 2022
No commit message
Jan 4, 2022

Repository files navigation

IPGA-for-MTSP

Background and Reference

This project developed a genetic algorithm package to solve the multi-traveling salesman problem based on the IPGA proposed by Zhou et al. (2018).

  • Zhou, H., Song, M., & Pedrycz, W. (2018). A comparative study of improved GA and PSO in solving multiple traveling salesmen problem. Applied Soft Computing, 64, 564-580.

Methodology

染色体编码

IPGA

交叉算子

  • FlipInsert
  • SwapInsert
  • LSliInsert
  • RSliInsert

变异算子

Example

Dateset

使用data_Generate.m在设定的rangeXrangeY范围内生成nCity个点

rangeX = [-85.085, -84.607];
rangeY = [ 43.467,  43.815];
CityCoor(:, 1) = unifrnd(rangeX(1), rangeX(2), nCity, 1);
CityCoor(:, 2) = unifrnd(rangeY(1), rangeY(2), nCity, 1);

Results

About

This project developed a genetic algorithm package to solve the multi-traveling salesman problem based on the IPGA proposed by Zhou et al. (2018).

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages