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:
parent
ae49677446
commit
977ca40d6d
1 changed files with 2 additions and 0 deletions
|
@ -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()
|
||||||
|
|
Loading…
Add table
Reference in a new issue