stellarUCI Chess engine written in C++20 |
git clone git://git.dimitrijedobrota.com/stellar.git |
Log | Files | Refs | README | LICENSE | |
evaluate.hpp (154B)
1 #ifndef STELLAR_EVALUATE_H 2 #define STELLAR_EVALUATE_H 3 4 #include "board.hpp" 5 6 namespace evaluate { 7 8 int16_t score_position(const Board &board); 9 10 } 11 12 #endif