Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorДобрый Ээх <bukharaev@gmail.com>2016-12-27 16:42:33 +0300
committerДобрый Ээх <bukharaev@gmail.com>2017-01-09 15:13:02 +0300
commitb43dd4614482bbb1b6ed70055a56edb4d81d3937 (patch)
treeea0ced967706bf7a9d1dd3052af4f253bf6e359b /routing/single_mwm_router.hpp
parent8b5398dbd1904d03542fa5560d2288f0f9efc5fc (diff)
[routing] Invert index graph
Change graph vertex from Joint::Id to Segment
Diffstat (limited to 'routing/single_mwm_router.hpp')
-rw-r--r--routing/single_mwm_router.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/routing/single_mwm_router.hpp b/routing/single_mwm_router.hpp
index 321dcd1ad4..16615d4cd8 100644
--- a/routing/single_mwm_router.hpp
+++ b/routing/single_mwm_router.hpp
@@ -46,7 +46,7 @@ private:
bool FindClosestEdge(MwmSet::MwmId const & mwmId, m2::PointD const & point,
Edge & closestEdge) const;
bool LoadIndex(MwmSet::MwmId const & mwmId, string const & country, IndexGraph & graph);
- bool BuildRoute(MwmSet::MwmId const & mwmId, vector<Joint::Id> const & joints,
+ bool BuildRoute(MwmSet::MwmId const & mwmId, vector<Segment> const & segments,
RouterDelegate const & delegate, IndexGraphStarter & starter,
Route & route) const;