mirror of
https://github.com/sockspls/badfish
synced 2025-07-11 19:49:14 +00:00
Fix a typo
No functional change.
This commit is contained in:
parent
05c6f7a40b
commit
bc02cc0c8a
1 changed files with 3 additions and 3 deletions
|
@ -1539,7 +1539,7 @@ split_point_start: // At split points actual search starts from here
|
|||
string uci_pv(const Position& pos, int depth, Value alpha, Value beta) {
|
||||
|
||||
std::stringstream s;
|
||||
Time::point elaspsed = Time::now() - SearchTime + 1;
|
||||
Time::point elapsed = Time::now() - SearchTime + 1;
|
||||
size_t uciPVSize = std::min((size_t)Options["MultiPV"], RootMoves.size());
|
||||
int selDepth = 0;
|
||||
|
||||
|
@ -1564,8 +1564,8 @@ split_point_start: // At split points actual search starts from here
|
|||
<< " seldepth " << selDepth
|
||||
<< " score " << (i == PVIdx ? score_to_uci(v, alpha, beta) : score_to_uci(v))
|
||||
<< " nodes " << pos.nodes_searched()
|
||||
<< " nps " << pos.nodes_searched() * 1000 / elaspsed
|
||||
<< " time " << elaspsed
|
||||
<< " nps " << pos.nodes_searched() * 1000 / elapsed
|
||||
<< " time " << elapsed
|
||||
<< " multipv " << i + 1
|
||||
<< " pv";
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue