From dbbb3fa477d97f5902c53481272284e81b4aa529 Mon Sep 17 00:00:00 2001 From: Joost VandeVondele Date: Sun, 2 Aug 2020 17:18:13 +0200 Subject: [PATCH] Add info string showing which evaluation is in use --- src/evaluate.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/evaluate.cpp b/src/evaluate.cpp index f562339f..c61dd1f5 100644 --- a/src/evaluate.cpp +++ b/src/evaluate.cpp @@ -57,6 +57,11 @@ namespace Eval { << "The UCI option EvalFile might need to specify the full path, including the directory/folder name, to the file." << std::endl; std::exit(EXIT_FAILURE); } + + if (useNNUE) + sync_cout << "info string NNUE evaluation using " << eval_file << " enabled." << sync_endl; + else + sync_cout << "info string classical evaluation enabled." << sync_endl; } }