From 1db4d3569dfc85918bff6ed0e16dec89e83b4872 Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Fri, 9 Dec 2022 12:06:18 -0500 Subject: Fixed admissible solution checker fixes #3 --- lingo.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lingo.cpp b/lingo.cpp index e4f3236..fdc4619 100644 --- a/lingo.cpp +++ b/lingo.cpp @@ -334,7 +334,7 @@ private: std::string message_text = msg_stream.str(); std::cout << message_text << std::endl << std::endl << solution.getText() << std::endl; - std::vector admissibleResults = database_->forms(admissible).all(); + std::vector admissibleResults = database_->forms(admissible, {}, 10).all(); if (admissibleResults.size() <= (hints == 1 ? 2 : 5)) { #ifdef ENABLE_BOT -- cgit 1.4.1