X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fsearch.cpp;h=359c99c66aba1df979d60c47f4436f02db076a58;hp=15757c3a9ae7c025cc02f5c616380cc00976fc29;hb=5b3fcab1adf9407c97992f8827b2c180d2848308;hpb=2fff532f4e80c8e2e61d8b3955447f13124d40f0 diff --git a/src/search.cpp b/src/search.cpp index 15757c3a..359c99c6 100644 --- a/src/search.cpp +++ b/src/search.cpp @@ -989,6 +989,8 @@ namespace { // Print search information to the standard output std::cout << "info depth " << Iteration << " score " << value_to_string(value) + << ((value >= beta)? + " lowerbound" : ((value <= alpha)? " upperbound" : "")) << " time " << current_search_time() << " nodes " << nodes_searched() << " nps " << nps()