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()