vrp-core 1.5.8

A core algorithms to solve a Vehicle Routing Problem
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Solution domain models.

mod route;
pub use self::route::Activity;
pub use self::route::Place;
pub use self::route::Route;

mod registry;
pub use self::registry::Registry;

mod tour;
pub use self::tour::Tour;