mcts: maxIterations 改为 10000
Debug 下自对弈时长 30370ms 最后一步 (1,8) -> (1,1)
This commit is contained in:
parent
57f5a0d3ba
commit
6cc306c386
|
@ -80,7 +80,7 @@ class MCTSOptions
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
int nThreads { THREADS_COUNT };
|
int nThreads { THREADS_COUNT };
|
||||||
int maxIterations { 40000000 };
|
int maxIterations { 10000 }; // 40G: 40000000
|
||||||
double maxTime { 6000 };
|
double maxTime { 6000 };
|
||||||
bool verbose { true };
|
bool verbose { true };
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue