stellarUCI Chess engine written in C++20 |
git clone git://git.dimitrijedobrota.com/stellar.git |
Log | Files | Refs | README | LICENSE |
engine.hpp (304B)
0 #ifndef STELLAR_ENGINE_H 1 #define STELLAR_ENGINE_H 2 3 #include "engine/uci.hpp" 4 #include "move.hpp" 5 #include "uci.hpp" 6 7 namespace engine { 8 9 Move search_position(const uci::Settings &setting); 10 11 class PVTable; 12 std::ostream &operator<<(std::ostream &os, const PVTable &pvtable); 13 14 } // namespace engine 15 16 #endif