vrp_core/models/problem/
mod.rs

1//! Problem domain models.
2
3mod builders;
4pub use self::builders::*;
5
6mod costs;
7pub use self::costs::*;
8
9mod fleet;
10pub use self::fleet::*;
11
12mod jobs;
13pub use self::jobs::*;