mirror of
https://github.com/opelly27/Stockfish.git
synced 2026-05-20 07:27:46 +00:00
Use a std::vector to store searchMoves
A std::set (that is a rb_tree) seems really overkill to store at most a handful of moves and nothing in the common case. No functional change. Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
+1
-1
@@ -118,7 +118,7 @@ void benchmark(istringstream& is) {
|
||||
}
|
||||
else
|
||||
{
|
||||
Threads.start_searching(pos, limits);
|
||||
Threads.start_searching(pos, limits, vector<Move>());
|
||||
Threads.wait_for_search_finished();
|
||||
nodes += Search::RootPosition.nodes_searched();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user