X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fsearch.cpp;h=86c572b42c28eb212dad34989034578cc1dac2cf;hp=006834a7513c739df066ccc6fd72728a948fa88c;hb=9d1e2c0e763241e78cb7c957c532c484c848150c;hpb=c150f07291aa3205d630351e21f5b6826b6c9f12 diff --git a/src/search.cpp b/src/search.cpp index 006834a7..86c572b4 100644 --- a/src/search.cpp +++ b/src/search.cpp @@ -1446,8 +1446,12 @@ moves_loop: // When in check and at SpNode search starts from here ss << "info depth " << d / ONE_PLY << " seldepth " << selDepth << " multipv " << i + 1 - << " score " << ((!tb && i == PVIdx) ? UCI::value(v, alpha, beta) : UCI::value(v)) - << " nodes " << pos.nodes_searched() + << " score " << UCI::value(v); + + if (!tb && i == PVIdx) + ss << (v >= beta ? " lowerbound" : v <= alpha ? " upperbound" : ""); + + ss << " nodes " << pos.nodes_searched() << " nps " << pos.nodes_searched() * 1000 / elapsed << " tbhits " << TB::Hits << " time " << elapsed