mirror of
https://github.com/HChaZZY/Stockfish.git
synced 2025-12-19 16:46:30 +08:00
Replace Position::copy()
With assignment operator. And fix Position::flip(). No functional change. Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
@@ -107,7 +107,7 @@ void benchmark(istringstream& is) {
|
||||
|
||||
for (size_t i = 0; i < fens.size(); i++)
|
||||
{
|
||||
Position pos(fens[i], false, NULL);
|
||||
Position pos(fens[i], false, Threads.main_thread());
|
||||
|
||||
cerr << "\nPosition: " << i + 1 << '/' << fens.size() << endl;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user