Untitled

 avatar
unknown
c_cpp
2 years ago
304 B
3
Indexable
#pragma once
#include "../state/state.hpp"


/**
 * @brief Policy class for random policy, 
 * your policy class should have get_move method
 */
class Minimax{
public:
  static Move get_move(State *state, int depth, bool player);
  static int minimax(State *state, int depth, bool player);
};
Editor is loading...