mirror of
https://github.com/HChaZZY/Stockfish.git
synced 2025-12-26 03:56:50 +08: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
|