diff --git a/engine/src/agents/mctsagent.cpp b/engine/src/agents/mctsagent.cpp index 56de149b..ad651b63 100644 --- a/engine/src/agents/mctsagent.cpp +++ b/engine/src/agents/mctsagent.cpp @@ -52,10 +52,6 @@ MCTSAgent::MCTSAgent(const vector>& netSingleVector, co mapWithMutex.hashTable.reserve(1e6); for (size_t idx = 0; idx < searchSettings->threads; ++idx) { -// vector> netBatchVector; // stores the ith element of all netBatches in netBatchesVector -// for (auto& netBatches : netBatchesVector) { -// netBatchVector.push_back(std::move(netBatches[idx])); -// } searchThreads.emplace_back(new SearchThread(netBatchesVector[idx], searchSettings, &mapWithMutex)); } timeManager = make_unique(searchSettings->randomMoveFactor);