smart-dynamic-gravity-tsp 0.1.0

A high-performance Rust library for solving the Traveling Salesman Problem (TSP) using the novel Dynamic Gravity algorithm.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Algorithm implementations for TSP solving.
//!
//! This module provides both the main Dynamic Gravity algorithm
//! and the Greedy baseline for comparison.

pub mod dynamic_gravity;
pub mod greedy;

pub use dynamic_gravity::dynamic_gravity_solve;
pub use greedy::greedy_solve;