forked from organicmaps/organicmaps
Revert "[pedestrian] Precautions against infinite loops."
This reverts commit e6a760ada6c00d79cb0e2e0e0a4d12b21633aa1c.
This commit is contained in:
parent
714c69ccfb
commit
95864ac28b
1 changed files with 0 additions and 17 deletions
|
@ -356,23 +356,6 @@ void AStarAlgorithm<TGraph>::ReconstructPath(TVertexType const & v,
|
|||
map<TVertexType, TVertexType> const & parent,
|
||||
vector<TVertexType> & path)
|
||||
{
|
||||
#ifdef DEBUG
|
||||
{
|
||||
// Do not add the dependency from std/set.hpp.
|
||||
map<TVertexType, bool> visited;
|
||||
TVertexType cur = v;
|
||||
while (true)
|
||||
{
|
||||
CHECK_EQ(visited.find(cur), visited.end(), ("Parent links form a cycle."));
|
||||
visited[cur] = true;
|
||||
auto it = parent.find(cur);
|
||||
if (it == parent.end())
|
||||
break;
|
||||
cur = it->second;
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
path.clear();
|
||||
TVertexType cur = v;
|
||||
while (true)
|
||||
|
|
Loading…
Add table
Reference in a new issue