1
0
Fork 0
mirror of https://github.com/sockspls/badfish synced 2025-04-30 16:53:09 +00:00

Add info string showing which evaluation is in use

This commit is contained in:
Joost VandeVondele 2020-08-02 17:18:13 +02:00
parent 18686e29c7
commit dbbb3fa477

View file

@ -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; << "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); 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;
} }
} }