fbook_init(): Remove bogus comment
[pachi.git] / tactics / ladder.c
blob6dd95673d09a1e219e1cca33591f48564cfd711d
1 #include <assert.h>
2 #include <stdio.h>
3 #include <stdlib.h>
5 #define DEBUG
6 #include "board.h"
7 #include "debug.h"
8 #include "mq.h"
9 #include "tactics/1lib.h"
10 #include "tactics/ladder.h"
13 bool
14 is_border_ladder(struct board *b, coord_t coord, enum stone lcolor)
16 int x = coord_x(coord, b), y = coord_y(coord, b);
18 if (DEBUGL(5))
19 fprintf(stderr, "border ladder\n");
20 /* Direction along border; xd is horiz. border, yd vertical. */
21 int xd = 0, yd = 0;
22 if (board_atxy(b, x + 1, y) == S_OFFBOARD || board_atxy(b, x - 1, y) == S_OFFBOARD)
23 yd = 1;
24 else
25 xd = 1;
26 /* Direction from the border; -1 is above/left, 1 is below/right. */
27 int dd = (board_atxy(b, x + yd, y + xd) == S_OFFBOARD) ? 1 : -1;
28 if (DEBUGL(6))
29 fprintf(stderr, "xd %d yd %d dd %d\n", xd, yd, dd);
30 /* | ? ?
31 * | . O #
32 * | c X #
33 * | . O #
34 * | ? ? */
35 /* This is normally caught, unless we have friends both above
36 * and below... */
37 if (board_atxy(b, x + xd * 2, y + yd * 2) == lcolor
38 && board_atxy(b, x - xd * 2, y - yd * 2) == lcolor)
39 return false;
40 /* ...or can't block where we need because of shortage
41 * of liberties. */
42 int libs1 = board_group_info(b, group_atxy(b, x + xd - yd * dd, y + yd - xd * dd)).libs;
43 int libs2 = board_group_info(b, group_atxy(b, x - xd - yd * dd, y - yd - xd * dd)).libs;
44 if (DEBUGL(6))
45 fprintf(stderr, "libs1 %d libs2 %d\n", libs1, libs2);
46 if (libs1 < 2 || libs2 < 2)
47 return false;
48 if (board_atxy(b, x + xd * 2, y + yd * 2) == lcolor && libs1 < 3)
49 return false;
50 if (board_atxy(b, x - xd * 2, y - yd * 2) == lcolor && libs2 < 3)
51 return false;
52 return true;
56 /* This is a rather expensive ladder reader. It can read out any sequences
57 * where laddered group should be kept at two liberties. The recursion
58 * always makes a "to-be-laddered" move and then considers the chaser's
59 * two alternatives (usually, one of them is trivially refutable). The
60 * function returns true if there is a branch that ends up with laddered
61 * group captured, false if not (i.e. for each branch, laddered group can
62 * gain three liberties). */
64 static bool
65 middle_ladder_walk(struct board *b, struct board *bset, group_t laddered, coord_t nextmove, enum stone lcolor)
67 assert(board_group_info(b, laddered).libs == 1);
69 /* First, escape. */
70 if (DEBUGL(6))
71 fprintf(stderr, " ladder escape %s\n", coord2sstr(nextmove, b));
72 struct move m = { nextmove, lcolor };
73 int res = board_play(b, &m);
74 laddered = group_at(b, laddered);
75 assert(res >= 0);
76 if (DEBUGL(8)) {
77 board_print(b, stderr);
78 fprintf(stderr, "%s c %d\n", coord2sstr(laddered, b), board_group_info(b, laddered).libs);
81 if (board_group_info(b, laddered).libs == 1) {
82 if (DEBUGL(6))
83 fprintf(stderr, "* we can capture now\n");
84 return true;
86 if (board_group_info(b, laddered).libs > 2) {
87 if (DEBUGL(6))
88 fprintf(stderr, "* we are free now\n");
89 return false;
92 foreach_neighbor(b, m.coord, {
93 if (board_at(b, c) == stone_other(lcolor) && board_group_info(b, group_at(b, c)).libs == 1) {
94 /* We can capture one of the ladder stones
95 * anytime later. */
96 /* XXX: If we were very lucky, capturing
97 * this stone will not help us escape.
98 * That should be pretty rate. */
99 if (DEBUGL(6))
100 fprintf(stderr, "* can capture chaser\n");
101 return false;
105 /* Now, consider alternatives. */
106 int liblist[2], libs = 0;
107 for (int i = 0; i < 2; i++) {
108 coord_t ataristone = board_group_info(b, laddered).lib[i];
109 coord_t escape = board_group_info(b, laddered).lib[1 - i];
110 if (immediate_liberty_count(b, escape) > 2 + coord_is_adjecent(ataristone, escape, b)) {
111 /* Too much free space, ignore. */
112 continue;
114 liblist[libs++] = i;
117 /* Try out the alternatives. */
118 bool is_ladder = false;
119 for (int i = 0; !is_ladder && i < libs; i++) {
120 struct board *b2 = b;
121 if (i != libs - 1) {
122 b2 = bset++;
123 board_copy(b2, b);
126 coord_t ataristone = board_group_info(b2, laddered).lib[liblist[i]];
127 // coord_t escape = board_group_info(b2, laddered).lib[1 - liblist[i]];
128 struct move m = { ataristone, stone_other(lcolor) };
129 int res = board_play(b2, &m);
130 /* If we just played self-atari, abandon ship. */
131 /* XXX: If we were very lucky, capturing this stone will
132 * not help us escape. That should be pretty rate. */
133 if (DEBUGL(6))
134 fprintf(stderr, "(%d=%d) ladder atari %s (%d libs)\n", i, res, coord2sstr(ataristone, b2), board_group_info(b2, group_at(b2, ataristone)).libs);
135 if (res >= 0 && board_group_info(b2, group_at(b2, ataristone)).libs > 1)
136 is_ladder = middle_ladder_walk(b2, bset, laddered, board_group_info(b2, laddered).lib[0], lcolor);
138 if (i != libs - 1) {
139 board_done_noalloc(b2);
142 if (DEBUGL(6))
143 fprintf(stderr, "propagating %d\n", is_ladder);
144 return is_ladder;
147 bool
148 is_middle_ladder(struct board *b, coord_t coord, group_t laddered, enum stone lcolor)
150 /* TODO: Remove the redundant parameters. */
151 assert(board_group_info(b, laddered).libs == 1);
152 assert(board_group_info(b, laddered).lib[0] == coord);
153 assert(board_at(b, laddered) == lcolor);
155 /* If we can move into empty space or do not have enough space
156 * to escape, this is obviously not a ladder. */
157 if (immediate_liberty_count(b, coord) != 2) {
158 if (DEBUGL(5))
159 fprintf(stderr, "no ladder, wrong free space\n");
160 return false;
163 /* A fair chance for a ladder. Group in atari, with some but limited
164 * space to escape. Time for the expensive stuff - set up a temporary
165 * board and start selective 2-liberty search. */
167 struct board *bset = malloc2(BOARD_MAX_SIZE * 2 * sizeof(struct board));
169 struct move_queue ccq = { .moves = 0 };
170 if (can_countercapture(b, lcolor, laddered, lcolor, &ccq, 0)) {
171 /* We could escape by countercapturing a group.
172 * Investigate. */
173 assert(ccq.moves > 0);
174 for (unsigned int i = 0; i < ccq.moves; i++) {
175 struct board b2;
176 board_copy(&b2, b);
177 bool is_ladder = middle_ladder_walk(&b2, bset, laddered, ccq.move[i], lcolor);
178 board_done_noalloc(&b2);
179 if (!is_ladder) {
180 free(bset);
181 return false;
186 struct board b2;
187 board_copy(&b2, b);
188 bool is_ladder = middle_ladder_walk(&b2, bset, laddered, board_group_info(&b2, laddered).lib[0], lcolor);
189 board_done_noalloc(&b2);
190 free(bset);
191 return is_ladder;
194 bool
195 wouldbe_ladder(struct board *b, group_t group, coord_t escapelib, coord_t chaselib, enum stone lcolor)
197 assert(board_group_info(b, group).libs == 2);
198 assert(board_at(b, group) == lcolor);
200 if (DEBUGL(6))
201 fprintf(stderr, "would-be ladder check - does %s %s play out chasing move %s?\n",
202 stone2str(lcolor), coord2sstr(escapelib, b), coord2sstr(chaselib, b));
204 if (!coord_is_8adjecent(escapelib, chaselib, b)) {
205 if (DEBUGL(5))
206 fprintf(stderr, "cannot determine ladder for remote simulated stone\n");
207 return false;
210 if (neighbor_count_at(b, chaselib, lcolor) != 1 || immediate_liberty_count(b, chaselib) != 2) {
211 if (DEBUGL(5))
212 fprintf(stderr, "overly trivial for a ladder\n");
213 return false;
216 bool is_ladder = false;
217 struct board *bset = malloc2(BOARD_MAX_SIZE * 2 * sizeof(struct board));
218 struct board b2;
219 board_copy(&b2, b);
221 struct move m = { chaselib, stone_other(lcolor) };
222 int res = board_play(&b2, &m);
223 if (res >= 0)
224 is_ladder = middle_ladder_walk(&b2, bset, group, board_group_info(&b2, group).lib[0], lcolor);
226 board_done_noalloc(&b2);
227 free(bset);
228 return is_ladder;