Forked from
Bariatti Francesco / pingouins
48 commits ahead of the upstream repository.
-
Felton Samuel authoredFelton Samuel authored
penguin_heuristic.cpp 316 B
#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;
}
}