stellar

UCI 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
3 #include "engine/uci.hpp"
4 #include "move.hpp"
5 #include "uci.hpp"
7 namespace engine {
9 Move search_position(const uci::Settings &setting);
11 class PVTable;
12 std::ostream &operator<<(std::ostream &os, const PVTable &pvtable);
14 } // namespace engine
16 #endif