/rust-tsp-solver

A program that allows to read the TSP data matrix and compute the solution using different algorithms.

Primary LanguageRustMIT LicenseMIT

Rust TSP solver

This repo is my approach to learning rust combined with the nostalgia of solving the travelling salesman problem for the "Data Structures and Computational Complexity" course.

Getting started

  • Install rust
  • Compile the release version of the project
cargo build --release
  • Test the program
./target/release/tsp

Dev

Running the tests:

cargo test

Running the app:

cargo run