Skip to content
GitLab
  • Menu
Projects Groups Snippets
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in / Register
  • T TSPSD
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
  • Issues 0
    • Issues 0
    • List
    • Boards
    • Service Desk
    • Milestones
  • Merge requests 0
    • Merge requests 0
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
  • Deployments
    • Deployments
    • Environments
    • Releases
  • Packages & Registries
    • Packages & Registries
    • Package Registry
    • Infrastructure Registry
  • Monitor
    • Monitor
    • Metrics
    • Incidents
  • Analytics
    • Analytics
    • Value stream
    • CI/CD
    • Repository
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • imr
  • TSPSD
  • Wiki
  • Home

Home · Changes

Page history
Create home authored Jul 08, 2024 by David Woller's avatar David Woller
Hide whitespace changes
Inline Side-by-side
home.md 0 → 100644
View page @ ecc3deb0
This repository contains algorithms for the Travelling Salesperson *Problem with Circle Placement* **(TSP-CP)** and related subproblems: *Travelling Salesperson Problem with Self-deleting graphs* **(TSP-SD)** and *Weak Path-Conforming Circle Placement Problem* **(WPCCP)**.
# Travelling Salesperson Problem with Self-deleting graphs (TSP-SD)
TSP-SD was first introduced in the paper *[The Hamiltonian Cycle and Travelling Salesperson problems with traversal-dependent edge deletion
](https://www.sciencedirect.com/science/article/pii/S1877750323002168)*.
```
@article{Carmesin23jocs,
title = {The Hamiltonian Cycle and Travelling Salesperson problems with traversal-dependent edge deletion},
author = {Sarah Carmesin and David Woller and David Parker and Miroslav Kulich and Masoumeh Mansouri},
journal = {Journal of Computational Science},
volume = {74},
pages = {102156},
year = {2023},
issn = {1877-7503},
doi = {https://doi.org/10.1016/j.jocs.2023.102156},
url = {https://www.sciencedirect.com/science/article/pii/S1877750323002168}
}
```
Given a self-deleting graph $S=(G,f)$, where $G=(V,E)$ is a simple graph and $f:V \to 2^E$ is a delete function, the goal of the TSP-SD is to find the shortest Hamiltonian cycle on $S$.
The 11 instances used in `Carmesin23jocs` are available in the `./data/TSPLIB/` directory.
Clone repository
  • Home