use vrp_core::prelude::*;
pub fn define_routing_data() -> GenericResult<impl TransportCost> {
#[rustfmt::skip]
let routing_data = vec![
0., 500., 520., 530., 540., 500., 0., 30., 40., 50., 520., 30., 0., 20., 25., 530., 40., 20., 0., 15., 540., 50., 25., 15., 0. ];
let (durations, distances) = (routing_data.clone(), routing_data);
SimpleTransportCost::new(durations, distances)
}