Display upper/lowerbound before wdl

Bound info belongs directly to score info

closes https://github.com/official-stockfish/Stockfish/pull/6195

No functional change.
This commit is contained in:
J. Oster
2025-08-02 15:54:10 +02:00
committed by Joost VandeVondele
parent 32cb78d782
commit 9034730a5a
+3 -3
View File
@@ -630,12 +630,12 @@ void UCIEngine::on_update_full(const Engine::InfoFull& info, bool showWDL) {
<< " multipv " << info.multiPV // << " multipv " << info.multiPV //
<< " score " << format_score(info.score); // << " score " << format_score(info.score); //
if (showWDL)
ss << " wdl " << info.wdl;
if (!info.bound.empty()) if (!info.bound.empty())
ss << " " << info.bound; ss << " " << info.bound;
if (showWDL)
ss << " wdl " << info.wdl;
ss << " nodes " << info.nodes // ss << " nodes " << info.nodes //
<< " nps " << info.nps // << " nps " << info.nps //
<< " hashfull " << info.hashfull // << " hashfull " << info.hashfull //