depth: 摆子阶段将前两着深度降低并把中段深度提升

原因:
开局阶段算太深无意义,且可能未走到星位上
中段提升有助于提升胜率
This commit is contained in:
CalciteM Team 2019-07-20 23:05:39 +08:00
parent ba097dedf4
commit b4fd1adcfa
1 changed files with 2 additions and 2 deletions

View File

@ -529,9 +529,9 @@ int NineChessAi_ab::changeDepth(int originalDepth)
#ifdef GAME_PLACING_DYNAMIC_DEPTH
#ifdef DEAL_WITH_HORIZON_EFFECT
#ifdef HASH_MAP_ENABLE
int depthTable[] = { 8, 12, 12, 13, 13, 12, 11, 10, 10, 9, 9, 8, 1 };
int depthTable[] = { 8, 12, 12, 13, 14, 14, 14, 12, 11, 10, 6, 6, 1 };
#else // HASH_MAP_ENABLE
int depthTable[] = { 2, 11, 11, 11, 11, 10, 9, 8, 8, 8, 7, 7, 1 };
int depthTable[] = { 2, 11, 11, 11, 11, 10, 9, 8, 8, 8, 7, 7, 1 };
#endif // HASH_MAP_ENABLE
#else // DEAL_WITH_HORIZON_EFFECT
int depthTable[] = { 2, 13, 13, 13, 12, 11, 10, 9, 9, 8, 8, 7, 1 };