routee-compass 0.19.2

The RouteE-Compass energy-aware routing engine
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use allocative::Allocative;

use routee_compass_core::algorithm::search::{EdgeTraversal, SearchTree};

use std::time::Duration;

#[derive(Allocative)]
pub struct SearchAppResult {
    pub routes: Vec<Vec<EdgeTraversal>>,
    pub trees: Vec<SearchTree>,
    pub search_executed_time: String,
    pub search_runtime: Duration,
    pub iterations: u64,
    pub terminated: Option<String>,
}