Parcourir la source

Show exploration statistics

DricomDragon il y a 5 ans
Parent
commit
5b7a97769e
1 fichiers modifiés avec 5 ajouts et 1 suppressions
  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;
 }