aboutsummaryrefslogtreecommitdiff
path: root/src/evaluate.hpp
blob: feeff70cd6f8e3609ca9e1856f8e8f3651896d71 (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(Game *g);

#endif /* SRC_EVALUATE_H_ */