Home
last modified time | relevance | path

Searched defs:InternalRouteResult (Results 1 – 1 of 1) sorted by relevance

/dports/www/osrm-backend/osrm-backend-5.26.0/include/engine/
H A Dinternal_route_result.hpp70 struct InternalRouteResult struct
72 std::vector<std::vector<PathData>> unpacked_path_segments;
73 std::vector<PhantomNodes> segment_end_coordinates;
74 std::vector<bool> source_traversed_in_reverse;
75 std::vector<bool> target_traversed_in_reverse;
76 EdgeWeight shortest_path_weight = INVALID_EDGE_WEIGHT;
78 bool is_valid() const { return INVALID_EDGE_WEIGHT != shortest_path_weight; } in is_valid()
80 bool is_via_leg(const std::size_t leg) const in is_via_leg()
86 EdgeWeight duration() const in duration()