ChessEngine: Use ElapsedTimer::start_new()

This commit is contained in:
Brian Gianforcaro 2021-09-12 08:51:13 -07:00 committed by Brian Gianforcaro
parent f6d179b304
commit 8476ad2e18

View file

@ -36,8 +36,7 @@ void ChessEngine::handle_go(const GoCommand& command)
srand(get_random<u32>());
Core::ElapsedTimer elapsed_time;
elapsed_time.start();
auto elapsed_time = Core::ElapsedTimer::start_new();
MCTSTree mcts(m_board);