X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fsearch.cpp;h=eea529845ab8474822a6e38c142e98c4f7d7216f;hp=3c32c4bb762a45ee1ae35f14a02aa119ff654418;hb=a3b4e9e23ca7f8949336014468b872e57da85762;hpb=ce0a95c2c013f4aa9d41a80b8f12f005fe162fcb diff --git a/src/search.cpp b/src/search.cpp index 3c32c4bb..eea52984 100644 --- a/src/search.cpp +++ b/src/search.cpp @@ -1447,8 +1447,12 @@ moves_loop: // When in check and at SpNode search starts from here 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";