1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! A collection of models to represent problem and solution in Vehicle Routing Problem domain.

pub(crate) const OP_START_MSG: &str = "Optional start is not yet implemented.";

mod domain;
pub use self::domain::*;

mod extras;
pub use self::extras::*;

mod goal;
pub use self::goal::*;

pub mod common;
#[doc(hidden)]
pub mod examples;
pub mod problem;
pub mod solution;