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 2 3 #include "board.hpp" 4 5 namespace evaluate { 6 7 int16_t score_position(const Board &board); 8 9 } 10 11 #endif