Check all memory allocations to avoid core dump when running out of memory.
[pachi/peepo.git] / playout / moggy.c
blob4648809a6a1dc3651956d8bf98dfe262bb588cfa
1 /* Playout policy by stochastically applying a fixed set of decision
2 * rules in given order - modelled after the intelligent playouts
3 * in the Mogo engine. */
5 #include <assert.h>
6 #include <math.h>
7 #include <stdio.h>
8 #include <stdlib.h>
10 #define DEBUG
11 #include "board.h"
12 #include "debug.h"
13 #include "mq.h"
14 #include "pattern3.h"
15 #include "playout.h"
16 #include "playout/moggy.h"
17 #include "random.h"
18 #include "tactics.h"
19 #include "uct/prior.h"
21 #define PLDEBUGL(n) DEBUGL_(p->debug_level, n)
23 /* Whether to avoid capturing/atariing doomed groups (this is big
24 * performance hit and may reduce playouts balance; it does increase
25 * the strength, but not quite proportionally to the performance). */
26 //#define NO_DOOMED_GROUPS
29 /* Note that the context can be shared by multiple threads! */
31 struct moggy_policy {
32 bool ladders, ladderassess, borderladders, assess_local;
33 int lcapturerate, atarirate, capturerate, patternrate, korate;
34 int selfatarirate, alwaysccaprate;
35 int fillboardtries;
36 int koage;
37 /* Whether to look for patterns around second-to-last move. */
38 bool pattern2;
40 struct pattern3s patterns;
44 struct group_state {
45 enum {
46 G_ATARI,
47 G_2LIB, /* Unused. */
48 G_SAFE /* Unused. */
49 } status:2;
51 /* Below, we keep track of each trait for each |color_to_play */
52 int capturable_ready:2; // is @capturable meaningful?
53 int capturable:2;
55 int can_countercapture_ready:2;
56 int can_countercapture:2;
59 /* Cache of evaluation of various board features. */
60 struct board_state {
61 int bsize2;
62 hash_t hash;
63 struct group_state *groups; /* [board_size2()], indexed by group_t */
64 unsigned char *groups_known; /* Bitmap of known groups. */
67 /* Using board cache: this turns out to be actually a 10% slowdown,
68 * since we reuse data in the cache only very little within single
69 * move. */
70 // #define CACHE_STATE
71 /* Reusing board cache across moves if they are successive on the
72 * board; only cache entries within cfg distance 2 of the last move
73 * are cleared. */
74 // #define PERSISTENT_STATE
76 #ifdef CACHE_STATE
77 static __thread struct board_state *ss;
79 static bool
80 board_state_reuse(struct board_state *s, struct board *b)
82 /* Decide how much of the board state we can reuse. */
83 /* We do not cache ladder decisions, so we don't have
84 * to worry about this. */
85 coord_t c = b->last_move.coord;
87 if (unlikely(is_pass(c))) {
88 /* Passes don't change anything. */
89 return true;
92 if (unlikely(board_at(b, c) == S_NONE)) {
93 /* Suicide is hopeless. */
94 return false;
97 /* XXX: we can make some moves self-atari. */
99 if (neighbor_count_at(b, c, S_BLACK) + neighbor_count_at(b, c, S_WHITE) == 0) {
100 /* We are not taking off liberties of any other stones. */
101 return true;
104 return false;
107 static inline struct board_state *
108 board_state_init(struct board *b)
110 if (ss) {
111 if (ss->bsize2 != board_size2(b)) {
112 free(ss->groups);
113 free(ss->groups_known);
114 free(ss); ss = NULL;
116 #ifdef PERSISTENT_STATE
117 /* Only one stone added to the board, nothing removed. */
118 else if (ss->hash == (b->hash ^ hash_at(b, b->last_move.coord, b->last_move.color))) {
119 ss->hash = b->hash;
120 if (likely(board_state_reuse(ss, b)))
121 return ss;
123 #endif
125 if (!ss) {
126 ss = malloc2(sizeof(*ss));
127 ss->bsize2 = board_size2(b);
128 ss->groups = malloc2(board_size2(b) * sizeof(*ss->groups));
129 ss->groups_known = malloc2(board_size2(b) / 8 + 1);
131 ss->hash = b->hash;
132 memset(ss->groups_known, 0, board_size2(b) / 8 + 1);
133 return ss;
136 #define group_is_known(s, g) (s->groups_known[g >> 3] & (1 << (g & 7)))
137 #define group_set_known(s, g) (s->groups_known[g >> 3] |= (1 << (g & 7)))
138 #define group_trait_ready(s, g, color, gstat, trait) do { \
139 if (!group_is_known(s, g)) { \
140 memset(&s->groups[g], 0, sizeof(s->groups[g])); \
141 group_set_known(s, g); \
143 s->groups[g].status = gstat; \
144 s->groups[g].trait ## _ready |= color; \
145 } while (0)
146 #define group_trait_is_ready(s, g, color, trait) (s->groups[g].trait ## _ready & color)
147 #define group_trait_set(s, g, color, trait, val) s->groups[g].trait = (s->groups[g].trait & ~color) | (!!val * color)
148 #define group_trait_get(s, g, color, trait) (s->groups[g].trait & color)
150 #else
152 #define board_state_init(b) NULL
153 #define group_is_known(s, g) false
154 #define group_set_known(s, g)
155 #define group_trait_ready(s, g, color, gstat, trait)
156 #define group_trait_is_ready(s, g, color, trait) false
157 #define group_trait_set(s, g, color, trait, val)
158 #define group_trait_get(s, g, color, trait) false
159 #endif
162 static char moggy_patterns_src[][11] = {
163 /* hane pattern - enclosing hane */
164 "XOX"
165 "..."
166 "???",
167 /* hane pattern - non-cutting hane */
168 "XO."
169 "..."
170 "?.?",
171 /* hane pattern - magari */
172 "XO?"
173 "X.."
174 "x.?",
175 /* hane pattern - thin hane */
176 "XOO"
177 "..."
178 "?.?" "X",
179 /* generic pattern - katatsuke or diagonal attachment; similar to magari */
180 ".O."
181 "X.."
182 "...",
183 /* cut1 pattern (kiri) - unprotected cut */
184 "XO?"
185 "O.o"
186 "?o?",
187 /* cut1 pattern (kiri) - peeped cut */
188 "XO?"
189 "O.X"
190 "???",
191 /* cut2 pattern (de) */
192 "?X?"
193 "O.O"
194 "ooo",
195 /* cut keima (not in Mogo) */
196 "OX?"
197 "o.O"
198 "???", /* o?? has some pathological tsumego cases */
199 /* side pattern - chase */
200 "X.?"
201 "O.?"
202 "##?",
203 /* side pattern - weirdness (SUSPICIOUS) */
204 "?X?"
205 "X.O"
206 "###",
207 /* side pattern - sagari (SUSPICIOUS) */
208 "?XO"
209 "x.x" /* Mogo has "x.?" */
210 "###" /* Mogo has "X" */,
211 /* side pattern - throw-in (SUSPICIOUS) */
212 #if 0
213 "?OX"
214 "o.O"
215 "?##" "X",
216 #endif
217 /* side pattern - cut (SUSPICIOUS) */
218 "?OX"
219 "X.O"
220 "###" /* Mogo has "X" */,
222 #define moggy_patterns_src_n sizeof(moggy_patterns_src) / sizeof(moggy_patterns_src[0])
224 static inline bool
225 test_pattern3_here(struct playout_policy *p, struct board *b, struct move *m)
227 struct moggy_policy *pp = p->data;
228 /* Check if 3x3 pattern is matched by given move... */
229 if (!pattern3_move_here(&pp->patterns, b, m))
230 return false;
231 /* ...and the move is not obviously stupid. */
232 if (is_bad_selfatari(b, m->color, m->coord))
233 return false;
234 /* Ladder moves are stupid. */
235 group_t atari_neighbor = board_get_atari_neighbor(b, m->coord, m->color);
236 if (atari_neighbor && is_ladder(b, m->coord, atari_neighbor, pp->borderladders, pp->ladders))
237 return false;
238 return true;
241 static void
242 apply_pattern_here(struct playout_policy *p, struct board *b, coord_t c, enum stone color, struct move_queue *q)
244 struct move m2 = { .coord = c, .color = color };
245 if (board_is_valid_move(b, &m2) && test_pattern3_here(p, b, &m2))
246 mq_add(q, c);
249 /* Check if we match any pattern around given move (with the other color to play). */
250 static coord_t
251 apply_pattern(struct playout_policy *p, struct board *b, struct move *m, struct move *mm)
253 struct move_queue q;
254 q.moves = 0;
256 /* Suicides do not make any patterns and confuse us. */
257 if (board_at(b, m->coord) == S_NONE || board_at(b, m->coord) == S_OFFBOARD)
258 return pass;
260 foreach_8neighbor(b, m->coord) {
261 apply_pattern_here(p, b, c, stone_other(m->color), &q);
262 } foreach_8neighbor_end;
264 if (mm) { /* Second move for pattern searching */
265 foreach_8neighbor(b, mm->coord) {
266 if (coord_is_8adjecent(m->coord, c, b))
267 continue;
268 apply_pattern_here(p, b, c, stone_other(m->color), &q);
269 } foreach_8neighbor_end;
272 if (PLDEBUGL(5))
273 mq_print(&q, b, "Pattern");
275 return mq_pick(&q);
279 static bool
280 can_play_on_lib(struct playout_policy *p, struct board_state *s,
281 struct board *b, group_t g, enum stone to_play)
283 if (group_is_known(s, g) && group_trait_is_ready(s, g, to_play, capturable)) {
284 /* We have already seen this group. */
285 assert(s->groups[g].status == G_ATARI);
286 if (group_trait_get(s, g, to_play, capturable))
287 return true;
288 else
289 return false;
292 /* Cache miss. Set up cache entry, default at capturable = false. */
293 group_trait_ready(s, g, to_play, G_ATARI, capturable);
295 coord_t capture = board_group_info(b, g).lib[0];
296 if (PLDEBUGL(6))
297 fprintf(stderr, "can capture group %d (%s)?\n",
298 g, coord2sstr(capture, b));
299 /* Does playing on the liberty usefully capture the group? */
300 if (board_is_valid_play(b, to_play, capture)
301 && !is_bad_selfatari(b, to_play, capture)) {
302 group_trait_set(s, g, to_play, capturable, true);
303 return true;
306 return false;
309 /* For given position @c, decide if this is a group that is in danger from
310 * @capturer and @to_play can do anything about it (play at the last
311 * liberty to either capture or escape). */
312 /* Note that @to_play is important; e.g. consider snapback, it's good
313 * to play at the last liberty by attacker, but not defender. */
314 static __attribute__((always_inline)) bool
315 capturable_group(struct playout_policy *p, struct board_state *s,
316 struct board *b, enum stone capturer, coord_t c,
317 enum stone to_play)
319 group_t g = group_at(b, c);
320 if (likely(board_at(b, c) != stone_other(capturer)
321 || board_group_info(b, g).libs > 1))
322 return false;
324 return can_play_on_lib(p, s, b, g, to_play);
327 /* For given atari group @group owned by @owner, decide if @to_play
328 * can save it / keep it in danger by dealing with one of the
329 * neighboring groups. */
330 static bool
331 can_countercapture(struct playout_policy *p, struct board_state *s,
332 struct board *b, enum stone owner, group_t g,
333 enum stone to_play, struct move_queue *q)
335 if (b->clen < 2)
336 return false;
337 if (group_is_known(s, g) && group_trait_is_ready(s, g, to_play, can_countercapture)) {
338 /* We have already seen this group. */
339 assert(s->groups[g].status == G_ATARI);
340 if (group_trait_get(s, g, to_play, can_countercapture)) {
341 if (q) { /* Scan for countercapture liberties. */
342 goto scan;
344 return true;
345 } else {
346 return false;
350 /* Cache miss. Set up cache entry, default at can_countercapture = true. */
351 group_trait_ready(s, g, to_play, G_ATARI, can_countercapture);
352 group_trait_set(s, g, to_play, can_countercapture, true);
354 scan:;
355 int qmoves_prev = q ? q->moves : 0;
357 foreach_in_group(b, g) {
358 foreach_neighbor(b, c, {
359 if (!capturable_group(p, s, b, owner, c, to_play))
360 continue;
362 if (!q) {
363 return true;
365 mq_add(q, board_group_info(b, group_at(b, c)).lib[0]);
366 mq_nodup(q);
368 } foreach_in_group_end;
370 bool can = q ? q->moves > qmoves_prev : false;
371 group_trait_set(s, g, to_play, can_countercapture, can);
372 return can;
375 #ifdef NO_DOOMED_GROUPS
376 static bool
377 can_be_rescued(struct playout_policy *p, struct board_state *s,
378 struct board *b, group_t group, enum stone color)
380 /* Does playing on the liberty rescue the group? */
381 if (can_play_on_lib(p, s, b, group, color))
382 return true;
384 /* Then, maybe we can capture one of our neighbors? */
385 return can_countercapture(p, s, b, color, group, color, NULL);
387 #endif
389 /* ladder != NULL implies to always enqueue all relevant moves. */
390 static void
391 group_atari_check(struct playout_policy *p, struct board *b, group_t group, enum stone to_play,
392 struct move_queue *q, coord_t *ladder, struct board_state *s)
394 struct moggy_policy *pp = p->data;
395 int qmoves_prev = q->moves;
397 /* We don't use @to_play almost anywhere since any moves here are good
398 * for both defender and attacker. */
400 enum stone color = board_at(b, group_base(group));
401 coord_t lib = board_group_info(b, group).lib[0];
403 assert(color != S_OFFBOARD && color != S_NONE);
404 if (PLDEBUGL(5))
405 fprintf(stderr, "[%s] atariiiiiiiii %s of color %d\n",
406 coord2sstr(group, b), coord2sstr(lib, b), color);
407 assert(board_at(b, lib) == S_NONE);
409 /* Do not bother with kos. */
410 if (group_is_onestone(b, group)
411 && neighbor_count_at(b, lib, color) + neighbor_count_at(b, lib, S_OFFBOARD) == 4)
412 return;
414 /* Can we capture some neighbor? */
415 bool ccap = can_countercapture(p, s, b, color, group, to_play, q);
416 if (ccap && !ladder && pp->alwaysccaprate > fast_random(100))
417 return;
419 /* Do not suicide... */
420 if (!can_play_on_lib(p, s, b, group, to_play))
421 return;
422 #ifdef NO_DOOMED_GROUPS
423 /* Do not remove group that cannot be saved by the opponent. */
424 if (to_play != color && !can_be_rescued(p, s, b, group, color))
425 return;
426 #endif
427 if (PLDEBUGL(6))
428 fprintf(stderr, "...escape route valid\n");
430 /* ...or play out ladders. */
431 if (is_ladder(b, lib, group, pp->borderladders, pp->ladders)) {
432 /* Sometimes we want to keep the ladder move in the
433 * queue in order to discourage it. */
434 if (!ladder)
435 return;
436 else
437 *ladder = lib;
439 if (PLDEBUGL(6))
440 fprintf(stderr, "...no ladder\n");
442 if (to_play != color) {
443 /* We are the attacker! In that case, throw away the moves
444 * that defend our groups, since we can capture the culprit. */
445 q->moves = qmoves_prev;
448 mq_add(q, lib);
449 mq_nodup(q);
452 static coord_t
453 global_atari_check(struct playout_policy *p, struct board *b, enum stone to_play, struct board_state *s)
455 struct move_queue q;
456 q.moves = 0;
458 if (b->clen == 0)
459 return pass;
461 int g_base = fast_random(b->clen);
462 for (int g = g_base; g < b->clen; g++) {
463 group_atari_check(p, b, group_at(b, group_base(b->c[g])), to_play, &q, NULL, s);
464 if (q.moves > 0)
465 return mq_pick(&q);
467 for (int g = 0; g < g_base; g++) {
468 group_atari_check(p, b, group_at(b, group_base(b->c[g])), to_play, &q, NULL, s);
469 if (q.moves > 0)
470 return mq_pick(&q);
472 return pass;
475 static coord_t
476 local_atari_check(struct playout_policy *p, struct board *b, struct move *m, struct board_state *s)
478 struct move_queue q;
479 q.moves = 0;
481 /* Did the opponent play a self-atari? */
482 if (board_group_info(b, group_at(b, m->coord)).libs == 1) {
483 group_atari_check(p, b, group_at(b, m->coord), stone_other(m->color), &q, NULL, s);
486 foreach_neighbor(b, m->coord, {
487 group_t g = group_at(b, c);
488 if (!g || board_group_info(b, g).libs != 1)
489 continue;
490 group_atari_check(p, b, g, stone_other(m->color), &q, NULL, s);
493 if (PLDEBUGL(5))
494 mq_print(&q, b, "Local atari");
496 return mq_pick(&q);
499 static bool
500 miai_2lib(struct board *b, group_t group, enum stone color)
502 bool can_connect = false, can_pull_out = false;
503 /* We have miai if we can either connect on both libs,
504 * or connect on one lib and escape on another. (Just
505 * having two escape routes can be risky.) */
506 foreach_neighbor(b, board_group_info(b, group).lib[0], {
507 enum stone cc = board_at(b, c);
508 if (cc == S_NONE && cc != board_group_info(b, group).lib[1]) {
509 can_pull_out = true;
510 } else if (cc != color) {
511 continue;
514 group_t cg = group_at(b, c);
515 if (cg && cg != group && board_group_info(b, cg).libs > 1)
516 can_connect = true;
518 foreach_neighbor(b, board_group_info(b, group).lib[1], {
519 enum stone cc = board_at(b, c);
520 if (cc == S_NONE && cc != board_group_info(b, group).lib[0] && can_connect) {
521 return true;
522 } else if (cc != color) {
523 continue;
526 group_t cg = group_at(b, c);
527 if (cg && cg != group && board_group_info(b, cg).libs > 1)
528 return (can_connect || can_pull_out);
530 return false;
533 static void
534 check_group_atari(struct board *b, group_t group, enum stone owner,
535 enum stone to_play, struct move_queue *q)
537 for (int i = 0; i < 2; i++) {
538 coord_t lib = board_group_info(b, group).lib[i];
539 assert(board_at(b, lib) == S_NONE);
540 if (!board_is_valid_play(b, to_play, lib))
541 continue;
543 /* Don't play at the spot if it is extremely short
544 * of liberties... */
545 /* XXX: This looks harmful, could significantly
546 * prefer atari to throwin:
548 * XXXOOOOOXX
549 * .OO.....OX
550 * XXXOOOOOOX */
551 #if 0
552 if (neighbor_count_at(b, lib, stone_other(owner)) + immediate_liberty_count(b, lib) < 2)
553 continue;
554 #endif
556 #ifdef NO_DOOMED_GROUPS
557 /* If the owner can't play at the spot, we don't want
558 * to bother either. */
559 if (is_bad_selfatari(b, owner, lib))
560 continue;
561 #endif
563 /* Of course we don't want to play bad selfatari
564 * ourselves, if we are the attacker... */
565 if (
566 #ifdef NO_DOOMED_GROUPS
567 to_play != owner &&
568 #endif
569 is_bad_selfatari(b, to_play, lib))
570 continue;
572 /* Tasty! Crispy! Good! */
573 mq_add(q, lib);
574 mq_nodup(q);
578 static void
579 group_2lib_check(struct playout_policy *p, struct board *b, group_t group, enum stone to_play,
580 struct move_queue *q, struct board_state *s)
582 enum stone color = board_at(b, group_base(group));
583 assert(color != S_OFFBOARD && color != S_NONE);
585 if (PLDEBUGL(5))
586 fprintf(stderr, "[%s] 2lib check of color %d\n",
587 coord2sstr(group, b), color);
589 /* Do not try to atari groups that cannot be harmed. */
590 if (miai_2lib(b, group, color))
591 return;
593 check_group_atari(b, group, color, to_play, q);
595 /* Can we counter-atari another group, if we are the defender? */
596 if (to_play != color)
597 return;
598 foreach_in_group(b, group) {
599 foreach_neighbor(b, c, {
600 if (board_at(b, c) != stone_other(color))
601 continue;
602 group_t g2 = group_at(b, c);
603 if (board_group_info(b, g2).libs != 2)
604 continue;
605 check_group_atari(b, g2, color, to_play, q);
607 } foreach_in_group_end;
610 static coord_t
611 local_2lib_check(struct playout_policy *p, struct board *b, struct move *m, struct board_state *s)
613 struct move_queue q;
614 q.moves = 0;
616 /* Does the opponent have just two liberties? */
617 if (board_group_info(b, group_at(b, m->coord)).libs == 2) {
618 group_2lib_check(p, b, group_at(b, m->coord), stone_other(m->color), &q, s);
619 #if 0
620 /* We always prefer to take off an enemy chain liberty
621 * before pulling out ourselves. */
622 /* XXX: We aren't guaranteed to return to that group
623 * later. */
624 if (q.moves)
625 return q.move[fast_random(q.moves)];
626 #endif
629 /* Then he took a third liberty from neighboring chain? */
630 foreach_neighbor(b, m->coord, {
631 group_t g = group_at(b, c);
632 if (!g || board_group_info(b, g).libs != 2)
633 continue;
634 group_2lib_check(p, b, g, stone_other(m->color), &q, s);
637 if (PLDEBUGL(5))
638 mq_print(&q, b, "Local 2lib");
640 return mq_pick(&q);
643 coord_t
644 playout_moggy_choose(struct playout_policy *p, struct board *b, enum stone to_play)
646 struct moggy_policy *pp = p->data;
647 coord_t c;
649 struct board_state *s = board_state_init(b);
651 if (PLDEBUGL(5))
652 board_print(b, stderr);
654 /* Ko fight check */
655 if (!is_pass(b->last_ko.coord) && is_pass(b->ko.coord)
656 && b->moves - b->last_ko_age < pp->koage
657 && pp->korate > fast_random(100)) {
658 if (board_is_valid_play(b, to_play, b->last_ko.coord)
659 && !is_bad_selfatari(b, to_play, b->last_ko.coord))
660 return b->last_ko.coord;
663 /* Local checks */
664 if (!is_pass(b->last_move.coord)) {
665 /* Local group in atari? */
666 if (pp->lcapturerate > fast_random(100)) {
667 c = local_atari_check(p, b, &b->last_move, s);
668 if (!is_pass(c))
669 return c;
672 /* Local group can be PUT in atari? */
673 if (pp->atarirate > fast_random(100)) {
674 c = local_2lib_check(p, b, &b->last_move, s);
675 if (!is_pass(c))
676 return c;
679 /* Check for patterns we know */
680 if (pp->patternrate > fast_random(100)) {
681 c = apply_pattern(p, b, &b->last_move,
682 pp->pattern2 && b->last_move2.coord >= 0 ? &b->last_move2 : NULL);
683 if (!is_pass(c))
684 return c;
688 /* Global checks */
690 /* Any groups in atari? */
691 if (pp->capturerate > fast_random(100)) {
692 c = global_atari_check(p, b, to_play, s);
693 if (!is_pass(c))
694 return c;
697 /* Fill board */
698 int fbtries = b->flen / 8;
699 for (int i = 0; i < (fbtries < pp->fillboardtries ? fbtries : pp->fillboardtries); i++) {
700 coord_t coord = b->f[fast_random(b->flen)];
701 if (is_pass(coord) || immediate_liberty_count(b, coord) != 4)
702 continue;
703 foreach_diag_neighbor(b, coord) {
704 if (board_at(b, c) != S_NONE)
705 goto next_try;
706 } foreach_diag_neighbor_end;
707 return coord;
708 next_try:;
711 return pass;
715 static int
716 assess_local_bonus(struct playout_policy *p, struct board *board, coord_t a, coord_t b, int games)
718 struct moggy_policy *pp = p->data;
719 if (!pp->assess_local)
720 return games;
722 int dx = abs(coord_x(a, board) - coord_x(b, board));
723 int dy = abs(coord_y(a, board) - coord_y(b, board));
724 /* adjecent move, directly or diagonally? */
725 if (dx + dy <= 1 + (dx && dy))
726 return games;
727 else
728 return games / 2;
731 void
732 playout_moggy_assess_group(struct playout_policy *p, struct prior_map *map, group_t g, int games,
733 struct board_state *s)
735 struct moggy_policy *pp = p->data;
736 struct board *b = map->b;
737 struct move_queue q; q.moves = 0;
739 if (board_group_info(b, g).libs > 2)
740 return;
742 if (PLDEBUGL(5)) {
743 fprintf(stderr, "ASSESS of group %s:\n", coord2sstr(g, b));
744 board_print(b, stderr);
747 if (board_group_info(b, g).libs == 2) {
748 if (!pp->atarirate)
749 return;
750 group_2lib_check(p, b, g, map->to_play, &q, s);
751 while (q.moves--) {
752 coord_t coord = q.move[q.moves];
753 if (PLDEBUGL(5))
754 fprintf(stderr, "1.0: 2lib %s\n", coord2sstr(coord, b));
755 int assess = assess_local_bonus(p, b, b->last_move.coord, coord, games) / 2;
756 add_prior_value(map, coord, 1, assess);
758 return;
761 /* This group, sir, is in atari! */
763 if (!pp->capturerate && !pp->lcapturerate && !pp->ladderassess)
764 return;
766 coord_t ladder = pass;
767 group_atari_check(p, b, g, map->to_play, &q, &ladder, s);
768 while (q.moves--) {
769 coord_t coord = q.move[q.moves];
771 /* _Never_ play here if this move plays out
772 * a caught ladder. */
773 if (coord == ladder && !board_playing_ko_threat(b)) {
774 /* Note that the opposite is not guarded against;
775 * we do not advise against capturing a laddered
776 * group (but we don't encourage it either). Such
777 * a move can simplify tactical situations if we
778 * can afford it. */
779 if (!pp->ladderassess || map->to_play != board_at(b, g))
780 continue;
781 /* FIXME: We give the malus even if this move
782 * captures another group. */
783 if (PLDEBUGL(5))
784 fprintf(stderr, "0.0: ladder %s\n", coord2sstr(coord, b));
785 add_prior_value(map, coord, 0, games);
786 continue;
789 if (!pp->capturerate && !pp->lcapturerate)
790 continue;
792 if (PLDEBUGL(5))
793 fprintf(stderr, "1.0: atari %s\n", coord2sstr(coord, b));
794 int assess = assess_local_bonus(p, b, b->last_move.coord, coord, games) * 2;
795 add_prior_value(map, coord, 1, assess);
799 void
800 playout_moggy_assess_one(struct playout_policy *p, struct prior_map *map, coord_t coord, int games)
802 struct moggy_policy *pp = p->data;
803 struct board *b = map->b;
805 if (PLDEBUGL(5)) {
806 fprintf(stderr, "ASSESS of move %s:\n", coord2sstr(coord, b));
807 board_print(b, stderr);
810 /* Is this move a self-atari? */
811 if (pp->selfatarirate) {
812 if (!board_playing_ko_threat(b) && is_bad_selfatari(b, map->to_play, coord)) {
813 if (PLDEBUGL(5))
814 fprintf(stderr, "0.0: self-atari\n");
815 add_prior_value(map, coord, 0, games);
816 return;
820 /* Pattern check */
821 if (pp->patternrate) {
822 struct move m = { .color = map->to_play, .coord = coord };
823 if (test_pattern3_here(p, b, &m)) {
824 if (PLDEBUGL(5))
825 fprintf(stderr, "1.0: pattern\n");
826 int assess = assess_local_bonus(p, b, b->last_move.coord, coord, games);
827 add_prior_value(map, coord, 1, assess);
831 return;
834 void
835 playout_moggy_assess(struct playout_policy *p, struct prior_map *map, int games)
837 struct moggy_policy *pp = p->data;
839 struct board_state *s = board_state_init(map->b);
841 /* First, go through all endangered groups. */
842 if (pp->lcapturerate || pp->capturerate || pp->atarirate || pp->ladderassess)
843 for (group_t g = 1; g < board_size2(map->b); g++)
844 if (group_at(map->b, g) == g)
845 playout_moggy_assess_group(p, map, g, games, s);
847 /* Then, assess individual moves. */
848 if (!pp->patternrate && !pp->selfatarirate)
849 return;
850 foreach_point(map->b) {
851 if (map->consider[c])
852 playout_moggy_assess_one(p, map, c, games);
853 } foreach_point_end;
856 bool
857 playout_moggy_permit(struct playout_policy *p, struct board *b, struct move *m)
859 struct moggy_policy *pp = p->data;
861 /* The idea is simple for now - never allow self-atari moves.
862 * They suck in general, but this also permits us to actually
863 * handle seki in the playout stage. */
865 if (fast_random(100) >= pp->selfatarirate) {
866 if (PLDEBUGL(5))
867 fprintf(stderr, "skipping sar test\n");
868 return true;
870 bool selfatari = is_bad_selfatari(b, m->color, m->coord);
871 if (PLDEBUGL(5) && selfatari)
872 fprintf(stderr, "__ Prohibiting self-atari %s %s\n",
873 stone2str(m->color), coord2sstr(m->coord, b));
874 return !selfatari;
878 struct playout_policy *
879 playout_moggy_init(char *arg, struct board *b)
881 struct playout_policy *p = calloc2(1, sizeof(*p));
882 struct moggy_policy *pp = calloc2(1, sizeof(*pp));
883 p->data = pp;
884 p->choose = playout_moggy_choose;
885 p->assess = playout_moggy_assess;
886 p->permit = playout_moggy_permit;
888 int rate = 90;
890 pp->lcapturerate = pp->atarirate = pp->capturerate = pp->patternrate = pp->selfatarirate
891 = -1;
892 pp->korate = 0; pp->koage = 4;
893 pp->alwaysccaprate = 0;
894 pp->ladders = pp->borderladders = true;
895 pp->ladderassess = true;
897 if (arg) {
898 char *optspec, *next = arg;
899 while (*next) {
900 optspec = next;
901 next += strcspn(next, ":");
902 if (*next) { *next++ = 0; } else { *next = 0; }
904 char *optname = optspec;
905 char *optval = strchr(optspec, '=');
906 if (optval) *optval++ = 0;
908 if (!strcasecmp(optname, "lcapturerate") && optval) {
909 pp->lcapturerate = atoi(optval);
910 } else if (!strcasecmp(optname, "atarirate") && optval) {
911 pp->atarirate = atoi(optval);
912 } else if (!strcasecmp(optname, "capturerate") && optval) {
913 pp->capturerate = atoi(optval);
914 } else if (!strcasecmp(optname, "patternrate") && optval) {
915 pp->patternrate = atoi(optval);
916 } else if (!strcasecmp(optname, "selfatarirate") && optval) {
917 pp->selfatarirate = atoi(optval);
918 } else if (!strcasecmp(optname, "korate") && optval) {
919 pp->korate = atoi(optval);
920 } else if (!strcasecmp(optname, "alwaysccaprate") && optval) {
921 pp->alwaysccaprate = atoi(optval);
922 } else if (!strcasecmp(optname, "rate") && optval) {
923 rate = atoi(optval);
924 } else if (!strcasecmp(optname, "fillboardtries")) {
925 pp->fillboardtries = atoi(optval);
926 } else if (!strcasecmp(optname, "koage") && optval) {
927 pp->koage = atoi(optval);
928 } else if (!strcasecmp(optname, "ladders")) {
929 pp->ladders = optval && *optval == '0' ? false : true;
930 } else if (!strcasecmp(optname, "borderladders")) {
931 pp->borderladders = optval && *optval == '0' ? false : true;
932 } else if (!strcasecmp(optname, "ladderassess")) {
933 pp->ladderassess = optval && *optval == '0' ? false : true;
934 } else if (!strcasecmp(optname, "assess_local")) {
935 pp->assess_local = optval && *optval == '0' ? false : true;
936 } else if (!strcasecmp(optname, "pattern2")) {
937 pp->pattern2 = optval && *optval == '0' ? false : true;
938 } else {
939 fprintf(stderr, "playout-moggy: Invalid policy argument %s or missing value\n", optname);
940 exit(1);
944 if (pp->lcapturerate == -1) pp->lcapturerate = rate;
945 if (pp->atarirate == -1) pp->atarirate = rate;
946 if (pp->capturerate == -1) pp->capturerate = rate;
947 if (pp->patternrate == -1) pp->patternrate = rate;
948 if (pp->selfatarirate == -1) pp->selfatarirate = rate;
949 if (pp->korate == -1) pp->korate = rate;
950 if (pp->alwaysccaprate == -1) pp->alwaysccaprate = rate;
952 pattern3s_init(&pp->patterns, moggy_patterns_src, moggy_patterns_src_n);
954 return p;