1
0
Fork 0
mirror of https://github.com/sockspls/badfish synced 2025-05-01 01:03:09 +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:
Tord Romstad 2009-08-07 16:26:24 +02:00
parent ae49677446
commit 977ca40d6d

View file

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