forked from organicmaps/organicmaps
Removed an unused function.
This commit is contained in:
parent
b62011234c
commit
d7f92d435e
1 changed files with 0 additions and 12 deletions
|
@ -43,18 +43,6 @@ void ReconstructRoute(RoadPos const & v, map<RoadPos, RoadPos> const & parent,
|
|||
}
|
||||
}
|
||||
|
||||
void ReconstructRouteBidirectional(RoadPos const & v, RoadPos const & w,
|
||||
map<RoadPos, RoadPos> const & parentV,
|
||||
map<RoadPos, RoadPos> const & parentW, vector<RoadPos> & route)
|
||||
{
|
||||
vector<RoadPos> routeV;
|
||||
ReconstructRoute(v, parentV, routeV);
|
||||
vector<RoadPos> routeW;
|
||||
ReconstructRoute(w, parentW, routeW);
|
||||
route.insert(route.end(), routeV.rbegin(), routeV.rend());
|
||||
route.insert(route.end(), routeW.begin(), routeW.end());
|
||||
}
|
||||
|
||||
double HeuristicCostEstimate(RoadPos const & p, vector<RoadPos> const & goals)
|
||||
{
|
||||
// @todo support of more than one goal
|
||||
|
|
Loading…
Add table
Reference in a new issue