فهرست منبع

Remove origin and target from path and discovered

DricomDragon 5 سال پیش
والد
کامیت
1dc13e7001
1فایلهای تغییر یافته به همراه6 افزوده شده و 0 حذف شده
  1. 6 0
      main.cc

+ 6 - 0
main.cc

@@ -213,12 +213,18 @@ class World
 
 			} while (!targetIsReached && !open.empty());
 
+			// Remove origin and target
+			discovered.pop_front();
+			discovered.pop_back();
+
 			// Build path
 			if (targetIsReached) {
 				do {
 					path.push_back(current);
 					current = previous[current];
 				} while (current != origin);
+
+				path.pop_front();
 			}
 
 			return targetIsReached;