Browse Source

Show exploration statistics

DricomDragon 5 years ago
parent
commit
5b7a97769e
1 changed files with 5 additions and 1 deletions
  1. 5 1
      main.cc

+ 5 - 1
main.cc

@@ -247,12 +247,16 @@ int main()
 	w.markOne(end, TARGET);
 	w.display();
 
-	// Display DFS result
+	// Display DFS results
 	if (exitFound)
 		cout << "SUCCESS !" << endl;
 	else
 		cout << "FAILURE ..." << endl;
 
+	cout << dfsDiscovered.size() << " tiles discovered;" << endl;
+	cout << dfsPath.size() << " path length.";
+
+	// End
 	return 0;
 }