Skip to content

Commit

Permalink
fix extra line order for prints
Browse files Browse the repository at this point in the history
  • Loading branch information
gwstaten committed Oct 12, 2022
1 parent ad596fd commit 10f7db0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/rate.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ void rateAll(std::vector<std::string> guess, std::vector<std::string> words, std
std::cout << "Complexity (1/n - Guaranteed solves): " << total[1] - total[2] << std::endl;
std::cout << "Largest ambiguous set: " << total[3] << std::endl;
std::cout << "Average greens: " << total[5] << std::endl;
std::cout << "Ambiguity: " << words.size() - total[2] << "/" << words.size() << std::endl << std::endl;
std::cout << "Ambiguity: " << words.size() - total[2] << "/" << words.size() << std::endl;
std::cout << "Guaranteed solves: " << total[2] << "/" << words.size() << std::endl << "( ";
std::map<std::string, std::vector<std::string>>::iterator it2;
int num = 0;
Expand All @@ -91,7 +91,7 @@ void rateAll(std::vector<std::string> guess, std::vector<std::string> words, std
{
std::cout << "... " << num - 4 << " more ";
}
std::cout << ")" << std::endl;
std::cout << ")" << std::endl << std::endl;
if(!std::filesystem::exists("ratelogs"))
{
std::filesystem::create_directory("ratelogs");
Expand Down

0 comments on commit 10f7db0

Please sign in to comment.