Format code using clang-format

No functional change
This commit is contained in:
Disservin
2024-02-11 20:13:19 +01:00
parent c115e5171e
commit 7ccde25baf
2 changed files with 5 additions and 3 deletions

View File

@@ -212,7 +212,9 @@ Thread* ThreadPool::get_best_thread() const {
Thread* bestThread = threads.front();
Value minScore = VALUE_NONE;
std::unordered_map<Move, int64_t, Move::MoveHash> votes(2 * std::min(size(), bestThread->worker->rootMoves.size()));
std::unordered_map<Move, int64_t, Move::MoveHash> votes(
2 * std::min(size(), bestThread->worker->rootMoves.size()));
// Find the minimum score of all threads
for (Thread* th : threads)