vrp_core/models/mod.rs
1//! A collection of models to represent problem and solution in Vehicle Routing Problem domain.
2
3pub(crate) const OP_START_MSG: &str = "Optional start is not yet implemented.";
4
5mod domain;
6pub use self::domain::*;
7
8mod extras;
9pub use self::extras::*;
10
11mod goal;
12pub use self::goal::*;
13
14pub mod common;
15#[doc(hidden)]
16pub mod examples;
17pub mod problem;
18pub mod solution;