depth: 调高摆子阶段后段的深度以防止走棋阶段没多久就闷杀

This commit is contained in:
Calcitem 2019-10-20 02:30:37 +08:00
parent 969aee6c4c
commit 7c2345537c
1 changed files with 2 additions and 2 deletions

View File

@ -74,8 +74,8 @@ depth_t AIAlgorithm::changeDepth(depth_t origDepth)
#endif #endif
const depth_t placingDepthTable[] = { const depth_t placingDepthTable[] = {
6, 14, 15, 16, /* 0 ~ 3 */ 6, 15, 16, 17, /* 0 ~ 3 */
17, 16, 16, 14, /* 4 ~ 7 */ 18, 17, 16, 15, /* 4 ~ 7 */
12, 12, 9, 7, 1 /* 8 ~ 12 */ 12, 12, 9, 7, 1 /* 8 ~ 12 */
}; };