|
@@ -153,7 +153,7 @@ class World
|
|
|
// starting from tile number s0, find a path to tile number t
|
|
|
// return true if such a path exists, false otherwise
|
|
|
// if it exists the path is given in variable path (hence the reference &)
|
|
|
- bool dfs(unsigned int s0, unsigned int t, list<unsigned int>& path)
|
|
|
+ bool dfs(unsigned int s0, unsigned int target, list<unsigned int>& path)
|
|
|
{
|
|
|
bool r = false;
|
|
|
|
|
@@ -191,6 +191,9 @@ class World
|
|
|
// Current tile is now processed
|
|
|
explored[current] = true;
|
|
|
|
|
|
+ // Stop if target found
|
|
|
+ r = (current == target);
|
|
|
+
|
|
|
|
|
|
} while (!r && !open.empty());
|
|
|
|