Guessing is depending on minimax picking
This commit is contained in:
parent
7b591bf2aa
commit
c095843041
1 changed files with 1 additions and 2 deletions
|
@ -17,9 +17,8 @@ Solver::Solver(int _N, int _M) : N(_N), M(_M) {
|
|||
generate_set({});
|
||||
}
|
||||
|
||||
// TODO
|
||||
vector<int> Solver::guess() {
|
||||
return {};
|
||||
return minimax({}).guess;
|
||||
}
|
||||
void Solver::learn(vector<int> guess, Response response) {
|
||||
vector<vector<int>> next_possible(0);
|
||||
|
|
Loading…
Reference in a new issue