GithubHelp home page GithubHelp logo

neusxw / tsp Goto Github PK

View Code? Open in Web Editor NEW

This project forked from lilyinstarlight/tsp

0.0 1.0 0.0 856 KB

A branch and bound solution to the Travelling Salesman Problem

License: MIT License

Java 100.00%

tsp's Introduction

TSP

A branch and bound solution to the travelling salesman problem. To find the best path, the program traverses a tree that it creates as it goes. It uses a lower bound cost algorithm to prune paths who couldn't possibly be lower than the current best path. To initialize the best cost, a greedy solution is found.

City Format

Cities and their distances are stored in a file that is selected at runtime. A sample file, tsp/cities.txt, contains the coordinates from 15 cities in Luxembourg and demonstrates the file format. The format is the standard TSPLIB format and is as follows:

NAME: <name>
COMMENT: <comment>
TYPE: TSP
DIMENSION: <n>
EDGE_WIEGHT_TYPE: EUC_2D
NODE_COORD_SECTION
<1> <x> <y>
<2> <x> <y>
...
<n> <x> <y>
EOF

The headers and EOF are all optional but the loader will use them if specified.

Running

The program can be run with the cities file as an argument or a dialog will ask for the file. The command line arguments are:

java -jar TSP.jar cities.tsp.txt

tsp's People

Contributors

lilyinstarlight avatar maxkirk avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.