pub struct Solution {
pub registry: Registry,
pub routes: Vec<Route>,
pub unassigned: Vec<(Job, UnassignmentInfo)>,
pub extras: Arc<Extras>,
}Expand description
Represents a VRP solution.
Fields§
§registry: RegistryActor’s registry.
routes: Vec<Route>List of assigned routes.
unassigned: Vec<(Job, UnassignmentInfo)>List of unassigned jobs within reason code.
extras: Arc<Extras>Specifies index for storing extra data of arbitrary type.