Made the strategy work

This commit is contained in:
Matúš Púll 2024-12-26 23:09:21 +01:00
parent 604f229cd8
commit c73d5c9ba4

View file

@ -29,7 +29,6 @@ void Solver::learn(vector<int> guess, Response response) {
possible = next_possible;
}
// TODO
int Solver::get_weight(vector<int> guess) {
// Indexing by N*somewhere + correct and holding how many sequences got that response
vector<int> response_count(N*N+1, 0);