routee-compass-core 0.7.0

The core routing algorithms and data structures of the RouteE-Compass energy-aware routing engine
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use self::search_tree_branch::SearchTreeBranch;
use crate::model::road_network::vertex_id::VertexId;
use std::collections::HashMap;

pub mod a_star;
pub mod backtrack;
pub mod direction;
pub mod edge_traversal;
pub mod search_algorithm;
pub mod search_algorithm_type;
pub mod search_error;
pub mod search_instance;
pub mod search_result;
pub mod search_tree_branch;

pub type MinSearchTree = HashMap<VertexId, SearchTreeBranch>;