소스 검색

Show exploration statistics

DricomDragon 5 년 전
부모
커밋
5b7a97769e
1개의 변경된 파일5개의 추가작업 그리고 1개의 파일을 삭제
  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;
 }