noone3001 / GA-TSPCPP

Genetic Algorithm with modified operators for an integrated Traveling Salesman and Coverage Path Planning Problem

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Genetic Algorithm with modified operators for an integrated Traveling Salesman and Coverage Path Planning Problem

Coverage path planning (CPP) is a fundamental task to many robotics applications such as cleaning, mine sweeping, lawn mowing, UAV mapping and surveillance. One approach for a known environment with obstacles is to decompose the environment into cells such that each cell can be covered individually. We can then decide the visiting order of cells to connect those intra-cell paths together. Finding the shortest inter-cell path that visits every cell and returns to the origin cell is similar to the traveling salesman problem (TSP), the additional variation to consider is that there are multiple intra-cell path choices for each cell, those choices will result in different entry and exit points of cells, and therefore affect the inter-cell path. This integrated traveling salesman and coverage path planning problem is called TSP-CPP. Recent approaches for TSP-CPP include adapting dynamic programming algorithm for TSP, or brute force on combinations of entry and exit points of every cell and solve each entry and exit points combination with TSP-solver. Both of them suffer from exponential complexity and are prohibitive for complex environments with large number of cells. In this paper, we propose a genetic algorithm approach with modified operators for TSP-CPP. Our approach can find the same solution as the optimal solution of DP in all experiments. When cell number is large, our approach is more than one thousand times faster than DP approach. The proposed GA approach is also a potential solution for environments with cell number beyond the limit of DP.

Boustrophedon cellular decomposition

Boustrophedon cellular decomposition

Visibility graph for finding the shortest path

Visibility graph for finding the shortest path

Optimal solution

Optimal solution

Random environments with multiple rectangular regions to cover

Random environments with multiple rectangular regions to cover

Usage

  1. Compile GA.cpp and optimal.cpp to get executable files GA and optimal
  2. Execute the main program TSPCPP.py with Python3, there are some options
    • Line 21 : test case, W and H have to be modified according to test case (follow Line 13 ~ 19).
    • Line 26 ~ 29 : Those options are just for convenience of experiments, can be set to 0 to save time if the required input of that part already exists.
    • Line 31 : Whether to save result figures directly or show the animation step by step.

W.-C. Tung and J.-S. Liu, "SOLUTION OF AN INTEGRATED TRAVELING SALESMAN AND COVERAGE PATH PLANNING PROBLEM BY USING A GENETIC ALGORITHM WITH MODIFIED OPERATORS," IADIS International Journal on Computer Science and Information Systems, volume 14, number 2, pages 95-114, December 2019.

About

Genetic Algorithm with modified operators for an integrated Traveling Salesman and Coverage Path Planning Problem


Languages

Language:Python 75.3%Language:C++ 24.7%