depth: Limit white 6th move thinking depth to less than 7

c37bd7cc74
Limit white 6th move thinking depth to less than 8
From test result we can known that 3/5/7/8 is OK.

But if set to 8, for this game:

 1.     f4    d2
 2.     b4    d6
 3.     d7    e4
 4.     d3    g4
 5.     a4    c4

White will place at a7 which will lost in 45.
If change to 3/5/7, sometimes place at d5(D), sometimes place at d1(49).

So it's better than 8. Not perfect.

We choose 7.
This commit is contained in:
Calcitem 2021-09-20 23:46:39 +08:00
parent b0d8255aad
commit 1827f89051
No known key found for this signature in database
GPG Key ID: F2F7C29E054CFB80
1 changed files with 1 additions and 1 deletions

View File

@ -471,7 +471,7 @@ Depth get_search_depth(const Position *pos)
const Depth placingDepthTable9[25] = {
+1, 1, +1, 1, /* 0 ~ 3 */
+3, 3, +3, 15, /* 4 ~ 7 */
+15, 2, +8, 0, /* 8 ~ 11 */
+15, 2, +7, 0, /* 8 ~ 11 */
+0, 0, +0, 0, /* 12 ~ 15 */
+0, 0, +0, 0, /* 16 ~ 19 */
+0, 0, +0, 0, /* 20 ~ 23 */