mirror of
https://github.com/HChaZZY/Stockfish.git
synced 2025-12-21 09:37:16 +08:00
Assume UCI 'nodes' is int64_t instead of int
UCI specification is not clear on the size of integers that are exchanged in the protocol, so instead of a simple int, assume 'nodes' is a int64_t because we need a bigger size to store this value in many real cases, especialy with very long searches. No functional change. Resolves #75
This commit is contained in:
committed by
Joona Kiiski
parent
d29a68f585
commit
bcbab19376
@@ -1566,7 +1566,7 @@ void check_time() {
|
||||
{
|
||||
Threads.mutex.lock();
|
||||
|
||||
int nodes = RootPos.nodes_searched();
|
||||
int64_t nodes = RootPos.nodes_searched();
|
||||
|
||||
// Loop across all split points and sum accumulated SplitPoint nodes plus
|
||||
// all the currently active positions nodes.
|
||||
|
||||
Reference in New Issue
Block a user