depth: Fix placingDepthTable's error

Fix commit 3290b2b727
This commit is contained in:
Calcitem 2021-06-15 23:46:28 +08:00
parent 7bc437c367
commit 2a0ebba1bf
1 changed files with 13 additions and 7 deletions

View File

@ -446,6 +446,8 @@ Depth get_search_depth(const Position *pos)
{ {
Depth d = 0; Depth d = 0;
const int level = gameOptions.getSkillLevel();
const int pw = pos->count<ON_BOARD>(WHITE); const int pw = pos->count<ON_BOARD>(WHITE);
const int pb = pos->count<ON_BOARD>(BLACK); const int pb = pos->count<ON_BOARD>(BLACK);
@ -455,11 +457,11 @@ Depth get_search_depth(const Position *pos)
if (pos->phase == Phase::placing) { if (pos->phase == Phase::placing) {
const Depth placingDepthTable[] = { const Depth placingDepthTable[] = {
+1, 1, +1, 1, /* 0 ~ 3 */ +1, 1, +1, 1, /* 0 ~ 3 */
+3, 0 + 0, 0, /* 4 ~ 7 */ +3, 0, +0, 0, /* 4 ~ 7 */
+0, 0 + 0, 0, /* 8 ~ 11 */ +0, 0, +0, 0, /* 8 ~ 11 */
+0, 0 + 0, 0, /* 12 ~ 15 */ +0, 0, +0, 0, /* 12 ~ 15 */
+0, 0 + 0, 0, /* 16 ~ 19 */ +0, 0, +0, 0, /* 16 ~ 19 */
+0, 0 + 0, 0, /* 20 ~ 23 */ +0, 0, +0, 0, /* 20 ~ 23 */
+0 /* 24 */ +0 /* 24 */
}; };
@ -475,9 +477,13 @@ Depth get_search_depth(const Position *pos)
} }
if (d == 0) { if (d == 0) {
return (Depth)gameOptions.getSkillLevel(); return (Depth)level;
} else { } else {
return d; if (level > d) {
return d;
} else {
return level;
}
} }
} }
} }