From d8c3a77870c235783551c3fbc2a420cbd3c119d1 Mon Sep 17 00:00:00 2001 From: reinterpretcat Date: Tue, 31 Oct 2023 21:27:32 +0100 Subject: [PATCH] Update documentation comment --- vrp-pragmatic/src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/vrp-pragmatic/src/lib.rs b/vrp-pragmatic/src/lib.rs index 64cba6cf4..80c9d3f25 100644 --- a/vrp-pragmatic/src/lib.rs +++ b/vrp-pragmatic/src/lib.rs @@ -42,6 +42,7 @@ use time::OffsetDateTime; use vrp_core::prelude::GenericError; /// Get lists of unique locations in the problem. Use it to request routing matrix from outside. +/// NOTE: it includes all locations of all types, so you might need to filter it if types are mixed. pub fn get_unique_locations(problem: &Problem) -> Vec { CoordIndex::new(problem).unique() }