Skip to content

mhahsler/TSP

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

92 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

R package TSP - Traveling Salesperson Problem (TSP)

CRAN version stream r-universe status CRAN RStudio mirror downloads Anaconda.org

Introduction

This package provides the basic infrastructure and some algorithms for the traveling salesman problems (symmetric, asymmetric and Euclidean TSPs). The package provides some simple algorithms and an interface to the Concorde TSP solver and its implementation of the Chained-Lin-Kernighan heuristic.

The following R packages use TSP: archetypes, cholera, colorpatch, condvis, ForagingOrg, isocir, jocre, nilde, nlnet, PairViz, pencopulaCond, sensitivity, seriation, sfnetworks, tspmeta, VineCopula, vines

To cite package ‘TSP’ in publications use:

Hahsler M, Hornik K (2007). “TSP - Infrastructure for the traveling salesperson problem.” Journal of Statistical Software, 23(2), 1-21. ISSN 1548-7660, doi:10.18637/jss.v023.i02 https://doi.org/10.18637/jss.v023.i02.

@Article{,
  title = {TSP -- {I}nfrastructure for the traveling salesperson problem},
  author = {Michael Hahsler and Kurt Hornik},
  year = {2007},
  journal = {Journal of Statistical Software},
  volume = {23},
  number = {2},
  pages = {1--21},
  doi = {10.18637/jss.v023.i02},
  month = {December},
  issn = {1548-7660},
}

Installation

Stable CRAN version: Install from within R with

install.packages("TSP")

Current development version: Install from r-universe.

install.packages("TSP", repos = "https://mhahsler.r-universe.dev")

Usage

Load a data set with 312 cities (USA and Canada) and create a TSP object.

library("TSP")
data("USCA312")

tsp <- TSP(USCA312)
tsp
## object of class 'TSP' 
## 312 cities (distance 'euclidean')

Find a tour using the default heuristic.

tour <- solve_TSP(tsp)
tour
## object of class 'TOUR' 
## result of method 'arbitrary_insertion+two_opt' for 312 cities
## tour length: 40733

Show the first few cities in the tour.

head(tour, n = 10)
##    Wilmington, NC       Raleigh, NC        Durham, NC    Greensboro, NC 
##               303               215                80               109 
## Winston-Salem, NC       Roanoke, VA      Richmond, VA    Portsmouth, VA 
##               306               221               220               208 
##       Norfolk, VA    Washington, DC 
##               184               294

An online example application of TSP can be found on shinyapps.

Help and Bug Reports

You can find Q&A’s and ask your own questions at https://stackoverflow.com/search?q=TSP+R

Please submit bug reports to https://github.com/mhahsler/TSP/issues

References