diff --git a/solver.hpp b/solver.hpp index bc270d5..3529870 100644 --- a/solver.hpp +++ b/solver.hpp @@ -143,12 +143,8 @@ public: return something_to_learn; } void learn(vector p_guess, vector p_response) { - // Learn something new - bool something_to_learn = extract_info({p_guess, p_response}); - // Write to history - if(something_to_learn) - history.push_back({p_guess, p_response}); + history.push_back({p_guess, p_response}); // Repeat multiple times, if new information turned out for(auto _ : history)