Browse Source

Make success messages shorter

More visible
DricomDragon 5 years ago
parent
commit
5b4227f8cb
1 changed files with 2 additions and 2 deletions
  1. 2 2
      main.cc

+ 2 - 2
main.cc

@@ -235,9 +235,9 @@ int main()
 
 
 	// Display DFS result
 	// Display DFS result
 	if (exitFound)
 	if (exitFound)
-		cout << "DFS succeeded to reach the target" << endl;
+		cout << "SUCCESS !" << endl;
 	else
 	else
-		cout << "FAILURE : DFS failed to reach target" << endl;
+		cout << "FAILURE ..." << endl;
 
 
 	return 0;
 	return 0;
 }
 }