#include "penguin_heuristic.hpp" #include "penguin.hpp" using namespace std; namespace mcts { float penguin_heuristic::get_value(const game::penguin& game, uint8_t move) const { return 0.f; } int penguin_heuristic::get_count(const game::penguin& game, uint8_t move) const { return 1; } }