Struct vrp_core::algorithms::gsom::NodeState [−][src]
pub struct NodeState {
pub coordinate: (i32, i32),
pub unified_distance: f64,
pub weights: Vec<f64>,
pub total_hits: usize,
pub last_hits: usize,
pub dump: String,
}Expand description
Contains information about network node state.
Fields
coordinate: (i32, i32)Node coordinate in network.
unified_distance: f64Unified distance to neighbors.
weights: Vec<f64>Node weights.
total_hits: usizeTotal hits.
last_hits: usizeLast hits.
dump: StringA dump of underlying node’s storage.