X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fsearch.cpp;fp=src%2Fsearch.cpp;h=c188469146eb074ae85ea6c72cef191fdaa014a2;hp=da8f457d6f01bdfeab1283237b2bf641115c3b31;hb=60c121f3b1ee7d5ced3435cc1718e4e6e6fd8383;hpb=45eac9507c87df81859a09a8c68d21f1efe7942a diff --git a/src/search.cpp b/src/search.cpp index da8f457d..c1884691 100644 --- a/src/search.cpp +++ b/src/search.cpp @@ -1441,8 +1441,12 @@ string UCI::pv(const Position& pos, Depth depth, Value alpha, Value beta) { ss << (v >= beta ? " lowerbound" : v <= alpha ? " upperbound" : ""); ss << " nodes " << pos.nodes_searched() - << " nps " << pos.nodes_searched() * 1000 / elapsed - << " tbhits " << TB::Hits + << " nps " << pos.nodes_searched() * 1000 / elapsed; + + if (elapsed > 1000) // Earlier makes little sense + ss << " hashfull " << TT.hashfull(); + + ss << " tbhits " << TB::Hits << " time " << elapsed << " pv";