mirror of
https://github.com/opelly27/Stockfish.git
synced 2026-05-20 13:17:44 +00:00
22 lines
435 B
C++
22 lines
435 B
C++
// USI extended command interface for NNUE evaluation function
|
|
|
|
#ifndef _NNUE_TEST_COMMAND_H_
|
|
#define _NNUE_TEST_COMMAND_H_
|
|
|
|
#if defined(ENABLE_TEST_CMD) && defined(EVAL_NNUE)
|
|
|
|
namespace Eval {
|
|
|
|
namespace NNUE {
|
|
|
|
// USI extended command for NNUE evaluation function
|
|
void TestCommand(Position& pos, std::istream& stream);
|
|
|
|
} // namespace NNUE
|
|
|
|
} // namespace Eval
|
|
|
|
#endif // defined(ENABLE_TEST_CMD) && defined(EVAL_NNUE)
|
|
|
|
#endif
|