Files
Stockfish/src/nnue/nnue_test_command.h
2020-09-09 10:26:42 +09:00

18 lines
324 B
C++

// USI extended command interface for NNUE evaluation function
#ifndef _NNUE_TEST_COMMAND_H_
#define _NNUE_TEST_COMMAND_H_
namespace Eval {
namespace NNUE {
// USI extended command for NNUE evaluation function
void TestCommand(Position& pos, std::istream& stream);
} // namespace NNUE
} // namespace Eval
#endif