Added files for NNUE.

This commit is contained in:
Hisayori Noda
2019-06-09 10:40:12 +09:00
parent 3edf0e6b37
commit db02ddcc90
37 changed files with 4501 additions and 909 deletions
+23
View File
@@ -0,0 +1,23 @@
// NNUE評価関数に関するUSI拡張コマンドのインターフェイス
#ifndef _NNUE_TEST_COMMAND_H_
#define _NNUE_TEST_COMMAND_H_
#include "../../config.h"
#if defined(ENABLE_TEST_CMD) && defined(EVAL_NNUE)
namespace Eval {
namespace NNUE {
// NNUE評価関数に関するUSI拡張コマンド
void TestCommand(Position& pos, std::istream& stream);
} // namespace NNUE
} // namespace Eval
#endif // defined(ENABLE_TEST_CMD) && defined(EVAL_NNUE)
#endif