Added #ifdef statements to switch the legacy evaluation function and NNUE evaluation function.

This commit is contained in:
Hisayori Noda
2019-06-16 11:11:16 +09:00
parent 48bfe86d27
commit 87445881ec
7 changed files with 68 additions and 1 deletions

View File

@@ -1,5 +1,7 @@
// NNUE評価関数の計算に関するコード
#if defined(EVAL_NNUE)
#include <fstream>
#include <iostream>
@@ -316,3 +318,5 @@ void print_eval_stat(Position& /*pos*/) {
}
} // namespace Eval
#endif // defined(EVAL_NNUE)