depth: 进一步提升摆子和走子的深度

This commit is contained in:
Calcitem 2019-10-20 03:05:22 +08:00
parent 7c2345537c
commit d5486fb2cf
1 changed files with 7 additions and 7 deletions

View File

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