Skip to content

Commit

Permalink
Do not print info string in CECP
Browse files Browse the repository at this point in the history
  • Loading branch information
ianfab committed Sep 9, 2023
1 parent 00b9087 commit e408eb8
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions src/evaluate.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -162,10 +162,13 @@ namespace Eval {
exit(EXIT_FAILURE);
}

if (useNNUE)
sync_cout << "info string NNUE evaluation using " << eval_file_loaded << " enabled" << sync_endl;
else
sync_cout << "info string classical evaluation enabled" << sync_endl;
if (CurrentProtocol != XBOARD)
{
if (useNNUE)
sync_cout << "info string NNUE evaluation using " << eval_file_loaded << " enabled" << sync_endl;
else
sync_cout << "info string classical evaluation enabled" << sync_endl;
}
}
}

Expand Down

0 comments on commit e408eb8

Please sign in to comment.