去掉 addNode 中的 rand() 操作

Node 节点中的 rand 暂时未去除

Release自对弈一方: 15.551s->14.930s
This commit is contained in:
CalciteM 2019-07-07 21:46:40 +08:00
parent d32ff9bbff
commit 7d6631317a
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ struct NineChessAi_ab::Node *NineChessAi_ab::addNode(Node *parent, int value, in
nodeCount++;
newNode->id = nodeCount;
newNode->rand = rand() % 24; // (1%)
//newNode->rand = rand() % 24; // (1%)
newNode->pruned = false;