v2rmp 0.4.3

rmpca — Route Optimization TUI & Agent Engine
Documentation
1
2
3
4
5
6
7
8
9
10
//! VRP solver modules.

pub mod clarke_wright;
pub mod default;
pub mod or_opt;
pub mod sweep;
pub mod two_opt;
// NOTE: ortools solver requires a Python process or Google OR-Tools C++ bindings.
// For a pure-Rust build, ortools is not included. See the `server` module for
// an HTTP-bridge approach that delegates to the Python backend.