mirror of
https://github.com/HChaZZY/Stockfish.git
synced 2025-12-19 08:36:33 +08:00
Fix a typo
No functional change.
This commit is contained in:
committed by
Marco Costalba
parent
05c6f7a40b
commit
bc02cc0c8a
@@ -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";
|
||||
|
||||
|
||||
Reference in New Issue
Block a user