blob: 66b362d4c6e14f2b46ebeaa72b7fed44b37c13fb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef SRC_EVALUATE_H_
#define SRC_EVALUATE_H_
#include "board/board.hpp"
/*
* Return static evaluation of board from white player pespective.
* This function is very expensive for computation.
*/
int EvaluateBoardForWhite(Game *g);
bool IsEndgame(const Game *g);
#endif /* SRC_EVALUATE_H_ */
|