Printed brute-forced sequenced was different from guessed, so it was useless

This commit is contained in:
Matúš Púll 2024-11-08 11:56:48 +01:00
parent a444c5db1c
commit d2d660f4e9

View file

@ -156,13 +156,6 @@ vector<int> Solver::guess() {
// Prints what the solver deduced
void Solver::print() {
known.print();
auto possibilities = known.list_all_possibilities();
auto chosen = vector<int>(0);
auto v = brute_force(&possibilities, &chosen, 0);
cout << "Bruteforce chosen ";
for(int col : v)
cout << col << " ";
cout << std::endl;
}
// Clean guess and response from info we know