mirror of
https://github.com/opelly27/Stockfish.git
synced 2026-05-20 15:37:47 +00:00
Supply the "upperbound" and "lowerbound" parameters in UCI search
output when the score is outside the root window.
This commit is contained in:
@@ -989,6 +989,8 @@ namespace {
|
|||||||
// Print search information to the standard output
|
// Print search information to the standard output
|
||||||
std::cout << "info depth " << Iteration
|
std::cout << "info depth " << Iteration
|
||||||
<< " score " << value_to_string(value)
|
<< " score " << value_to_string(value)
|
||||||
|
<< ((value >= beta)?
|
||||||
|
" lowerbound" : ((value <= alpha)? " upperbound" : ""))
|
||||||
<< " time " << current_search_time()
|
<< " time " << current_search_time()
|
||||||
<< " nodes " << nodes_searched()
|
<< " nodes " << nodes_searched()
|
||||||
<< " nps " << nps()
|
<< " nps " << nps()
|
||||||
|
|||||||
Reference in New Issue
Block a user