Bläddra i källkod

Fix duplicates explored tiles

Was causing BFS to never finish
DricomDragon 5 år sedan
förälder
incheckning
d1341ddc3d
1 ändrade filer med 2 tillägg och 4 borttagningar
  1. 2 4
      main.cc

+ 2 - 4
main.cc

@@ -201,13 +201,12 @@ class World
 
 					if (!explored[neighbour]) {
 						open.push(neighbour);
+						explored[neighbour] = true;
 						previous[neighbour] = current;
 					}
 				}
 
 				// Current tile is now processed
-				explored[current] = true;
-
 				discovered.push_back(current);
 
 				// Stop if target found
@@ -274,13 +273,12 @@ class World
 
 					if (!explored[neighbour]) {
 						open.push(neighbour);
+						explored[neighbour] = true;
 						previous[neighbour] = current;
 					}
 				}
 
 				// Current tile is now processed
-				explored[current] = true;
-
 				discovered.push_back(current);
 
 				// Stop if target found