From 10f7db03079cb943dcd8ce65f82037ef825872b6 Mon Sep 17 00:00:00 2001 From: gwstaten Date: Wed, 12 Oct 2022 09:11:19 -0600 Subject: [PATCH] fix extra line order for prints --- src/rate.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/rate.cpp b/src/rate.cpp index e7b2362..58aa41e 100644 --- a/src/rate.cpp +++ b/src/rate.cpp @@ -72,7 +72,7 @@ void rateAll(std::vector guess, std::vector 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>::iterator it2; int num = 0; @@ -91,7 +91,7 @@ void rateAll(std::vector guess, std::vector 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");