mirror of
https://github.com/official-stockfish/Stockfish.git
synced 2026-07-22 20:57:10 +00:00
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:
committed by
Joost VandeVondele
parent
32cb78d782
commit
9034730a5a
+3
-3
@@ -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 //
|
||||
|
||||
Reference in New Issue
Block a user