From 6cc306c3860d0390f0b0552850f59e43c0a3b067 Mon Sep 17 00:00:00 2001 From: Calcitem Date: Wed, 26 Feb 2020 23:43:06 +0800 Subject: [PATCH] =?UTF-8?q?mcts:=20maxIterations=20=E6=94=B9=E4=B8=BA=2010?= =?UTF-8?q?000?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Debug 下自对弈时长 30370ms 最后一步 (1,8) -> (1,1) --- src/ai/mcts.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ai/mcts.h b/src/ai/mcts.h index e26817a0..4a7f955d 100644 --- a/src/ai/mcts.h +++ b/src/ai/mcts.h @@ -80,7 +80,7 @@ class MCTSOptions { public: int nThreads { THREADS_COUNT }; - int maxIterations { 40000000 }; + int maxIterations { 10000 }; // 40G: 40000000 double maxTime { 6000 }; bool verbose { true }; };