diff options
Diffstat (limited to 'src/bot.hpp')
| -rw-r--r-- | src/bot.hpp | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/src/bot.hpp b/src/bot.hpp index a8375e1..821eb28 100644 --- a/src/bot.hpp +++ b/src/bot.hpp @@ -2,12 +2,7 @@ #define SRC_BOT_H_ #include "board/board.hpp" -#include <vector> -Move EngineGetBestMove(Game *b, int depth); -int EvaluateBoardForWhite(Game *b); +Move GetBestMove(Game *b, int depth); -int minimax(int depth, Game *b, float alpha, float beta); -int ScoreMove(const Game *board, const Move &move); -std::vector<Move> GetSortedLegalMoves(Game *g, bool generateQuietMoves = true); -#endif /* SRC_BOT_H_ */ +#endif /* SRC_EVALUATE_H_ */ |
