stellar

UCI Chess engine written in C++20
git clone git://git.dimitrijedobrota.com/stellar.git
Log | Files | Refs | README | LICENSE

evaluate.hpp (154B)


0 #ifndef STELLAR_EVALUATE_H
1 #define STELLAR_EVALUATE_H
3 #include "board.hpp"
5 namespace evaluate {
7 int16_t score_position(const Board &board);
9 }
11 #endif