diff options
Diffstat (limited to 'src/bot.hpp')
| -rw-r--r-- | src/bot.hpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/bot.hpp b/src/bot.hpp index 382c9be..0796299 100644 --- a/src/bot.hpp +++ b/src/bot.hpp @@ -4,8 +4,10 @@ #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 EvaluateBoardForWhite(Game *b); + +int 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_ */ |
