Untitled
unknown
c_cpp
3 years ago
304 B
5
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...