aboutsummaryrefslogtreecommitdiff
path: root/src/bot.hpp
blob: 382c9bec91b26d3a9b7513d82e6b26802e704c9e (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef SRC_BOT_H_
#define SRC_BOT_H_

#include "board/board.hpp"
#include <vector>
Move EngineGetBestMove(Game *b, int depth);
float EvaluateBoardForWhite(Game *b);
float minimax(int depth, Game *b, float alpha, float beta);
int ScoreMove(const Game *board, const Move &move);
std::vector<Move> GetSortedLegalMoves(Game *g);
#endif /* SRC_BOT_H_ */