Skip to content

Commit

Permalink
Limit first 9 moves thinking depth to less than 15
Browse files Browse the repository at this point in the history
The critical point is set move 9's depth to 14.

1. d6 f4 2. b4 d2 3. b6 f6 4. b2xf6 f6 5. d7
If not set to 14 (15 or above is bad)
Black will do move d5 (bad move)
If change move 9' depth to 14
Black will do move f2xd7 (good move)
  • Loading branch information
calcitem committed Jul 22, 2021
1 parent 7553d26 commit ff37bc3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/mills.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -470,8 +470,8 @@ Depth get_search_depth(const Position *pos)
if (pos->phase == Phase::placing) {
const Depth placingDepthTable[25] = {
+1, 1, +1, 1, /* 0 ~ 3 */
+3, 15, +15, 0, /* 4 ~ 7 */
+0, 0, +0, 0, /* 8 ~ 11 */
+3, 15, +15, 15, /* 4 ~ 7 */
+15, 14, +0, 0, /* 8 ~ 11 */
+0, 0, +0, 0, /* 12 ~ 15 */
+0, 0, +0, 0, /* 16 ~ 19 */
+0, 0, +0, 0, /* 20 ~ 23 */
Expand Down

1 comment on commit ff37bc3

@calcitem
Copy link
Owner Author

@calcitem calcitem commented on ff37bc3 Jul 23, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Play 750 games
Increase 2.16%

Please sign in to comment.