From 9034730a5a0f1f311dd21ef5afd5b3b9c86d9f83 Mon Sep 17 00:00:00 2001 From: "J. Oster" Date: Wed, 30 Jul 2025 11:21:06 +0200 Subject: [PATCH] Display upper/lowerbound before wdl Bound info belongs directly to score info closes https://github.com/official-stockfish/Stockfish/pull/6195 No functional change. --- src/uci.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/uci.cpp b/src/uci.cpp index 500e88184..9b1dd865c 100644 --- a/src/uci.cpp +++ b/src/uci.cpp @@ -630,12 +630,12 @@ void UCIEngine::on_update_full(const Engine::InfoFull& info, bool showWDL) { << " multipv " << info.multiPV // << " score " << format_score(info.score); // - if (showWDL) - ss << " wdl " << info.wdl; - if (!info.bound.empty()) ss << " " << info.bound; + if (showWDL) + ss << " wdl " << info.wdl; + ss << " nodes " << info.nodes // << " nps " << info.nps // << " hashfull " << info.hashfull //