Skip to content
Snippets Groups Projects
Forked from Bariatti Francesco / pingouins
44 commits ahead of the upstream repository.
go_left_up_heuristic.hpp 364 B
#ifndef __LEFT_UP__HEURISTIC_HPP__
#define __LEFT_UP_HEURISTIC_HPP__

#include "penguin.hpp"
#include "penguin_heuristic.hpp"

namespace mcts
{
  class go_left_up_heuristic : public penguin_heuristic
  {
  public:
    float get_value(const game::penguin& game, uint8_t move) const;
    int get_count(const game::penguin& game, uint8_t move) const;
  };
};

#endif