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

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