depth: 因性能问题将开局的深度调低

This commit is contained in:
CalciteM 2019-07-25 01:49:46 +08:00
parent 1ca61b7f4c
commit 563c5bea05
1 changed files with 1 additions and 1 deletions

View File

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