mirror of
https://github.com/sockspls/badfish
synced 2025-07-11 19:49:14 +00:00
21 lines
435 B
C++
21 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
|