stellar

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

engine.hpp (304B)


1 #ifndef STELLAR_ENGINE_H 2 #define STELLAR_ENGINE_H 3 4 #include "engine/uci.hpp" 5 #include "move.hpp" 6 #include "uci.hpp" 7 8 namespace engine { 9 10 Move search_position(const uci::Settings &setting); 11 12 class PVTable; 13 std::ostream &operator<<(std::ostream &os, const PVTable &pvtable); 14 15 } // namespace engine 16 17 #endif