vrp_scientific/
lib.rs

1//! Scientific crate contains logic to read scientific problems used to benchmark different
2//! VRP related algorithms.
3//!
4//!
5//! # Supported formats
6//!
7//! - **solomon**: see [Solomon benchmark](https://www.sintef.no/projectweb/top/vrptw/solomon-benchmark)
8//! - **lilim**: see [Li&Lim benchmark](https://www.sintef.no/projectweb/top/pdptw/li-lim-benchmark)
9//! - **tsplib** subset of TSPLIB95 format
10
11#![warn(missing_docs)]
12#![forbid(unsafe_code)]
13
14#[cfg(test)]
15#[path = "../tests/helpers/mod.rs"]
16#[macro_use]
17pub mod helpers;
18
19#[cfg(test)]
20#[path = "../tests/integration/known_problems_test.rs"]
21mod known_problems_test;
22
23pub use vrp_core as core;
24
25pub mod common;
26pub mod lilim;
27pub mod solomon;
28pub mod tsplib;