Do not prevent future node expansion when pruning tree.
[pachi/derm.git] / playout / moggy.c
blobc5de229df9f32663a61176675d55312d81bdf7e7
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 = malloc(sizeof(*ss));
127 ss->bsize2 = board_size2(b);
128 ss->groups = malloc(board_size2(b) * sizeof(*ss->groups));
129 ss->groups_known = malloc(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 struct move m; m.color = to_play; m.coord = capture;
301 if (board_is_valid_move(b, &m) && !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 struct move m; m.color = to_play; m.coord = lib;
541 if (!board_is_valid_move(b, &m))
542 continue;
544 /* Don't play at the spot if it is extremely short
545 * of liberties... */
546 /* XXX: This looks harmful, could significantly
547 * prefer atari to throwin:
549 * XXXOOOOOXX
550 * .OO.....OX
551 * XXXOOOOOOX */
552 #if 0
553 if (neighbor_count_at(b, lib, stone_other(owner)) + immediate_liberty_count(b, lib) < 2)
554 continue;
555 #endif
557 #ifdef NO_DOOMED_GROUPS
558 /* If the owner can't play at the spot, we don't want
559 * to bother either. */
560 if (is_bad_selfatari(b, owner, lib))
561 continue;
562 #endif
564 /* Of course we don't want to play bad selfatari
565 * ourselves, if we are the attacker... */
566 if (
567 #ifdef NO_DOOMED_GROUPS
568 to_play != owner &&
569 #endif
570 is_bad_selfatari(b, to_play, lib))
571 continue;
573 /* Tasty! Crispy! Good! */
574 mq_add(q, lib);
575 mq_nodup(q);
579 static void
580 group_2lib_check(struct playout_policy *p, struct board *b, group_t group, enum stone to_play,
581 struct move_queue *q, struct board_state *s)
583 enum stone color = board_at(b, group_base(group));
584 assert(color != S_OFFBOARD && color != S_NONE);
586 if (PLDEBUGL(5))
587 fprintf(stderr, "[%s] 2lib check of color %d\n",
588 coord2sstr(group, b), color);
590 /* Do not try to atari groups that cannot be harmed. */
591 if (miai_2lib(b, group, color))
592 return;
594 check_group_atari(b, group, color, to_play, q);
596 /* Can we counter-atari another group, if we are the defender? */
597 if (to_play != color)
598 return;
599 foreach_in_group(b, group) {
600 foreach_neighbor(b, c, {
601 if (board_at(b, c) != stone_other(color))
602 continue;
603 group_t g2 = group_at(b, c);
604 if (board_group_info(b, g2).libs != 2)
605 continue;
606 check_group_atari(b, g2, color, to_play, q);
608 } foreach_in_group_end;
611 static coord_t
612 local_2lib_check(struct playout_policy *p, struct board *b, struct move *m, struct board_state *s)
614 struct move_queue q;
615 q.moves = 0;
617 /* Does the opponent have just two liberties? */
618 if (board_group_info(b, group_at(b, m->coord)).libs == 2) {
619 group_2lib_check(p, b, group_at(b, m->coord), stone_other(m->color), &q, s);
620 #if 0
621 /* We always prefer to take off an enemy chain liberty
622 * before pulling out ourselves. */
623 /* XXX: We aren't guaranteed to return to that group
624 * later. */
625 if (q.moves)
626 return q.move[fast_random(q.moves)];
627 #endif
630 /* Then he took a third liberty from neighboring chain? */
631 foreach_neighbor(b, m->coord, {
632 group_t g = group_at(b, c);
633 if (!g || board_group_info(b, g).libs != 2)
634 continue;
635 group_2lib_check(p, b, g, stone_other(m->color), &q, s);
638 if (PLDEBUGL(5))
639 mq_print(&q, b, "Local 2lib");
641 return mq_pick(&q);
644 coord_t
645 playout_moggy_choose(struct playout_policy *p, struct board *b, enum stone to_play)
647 struct moggy_policy *pp = p->data;
648 coord_t c;
650 struct board_state *s = board_state_init(b);
652 if (PLDEBUGL(5))
653 board_print(b, stderr);
655 /* Ko fight check */
656 if (!is_pass(b->last_ko.coord) && pp->korate > fast_random(100)) {
657 if (b->moves - b->last_ko_age < pp->koage
658 && !is_bad_selfatari(b, to_play, b->last_ko.coord))
659 return b->last_ko.coord;
662 /* Local checks */
663 if (!is_pass(b->last_move.coord)) {
664 /* Local group in atari? */
665 if (pp->lcapturerate > fast_random(100)) {
666 c = local_atari_check(p, b, &b->last_move, s);
667 if (!is_pass(c))
668 return c;
671 /* Local group can be PUT in atari? */
672 if (pp->atarirate > fast_random(100)) {
673 c = local_2lib_check(p, b, &b->last_move, s);
674 if (!is_pass(c))
675 return c;
678 /* Check for patterns we know */
679 if (pp->patternrate > fast_random(100)) {
680 c = apply_pattern(p, b, &b->last_move,
681 pp->pattern2 && b->last_move2.coord >= 0 ? &b->last_move2 : NULL);
682 if (!is_pass(c))
683 return c;
687 /* Global checks */
689 /* Any groups in atari? */
690 if (pp->capturerate > fast_random(100)) {
691 c = global_atari_check(p, b, to_play, s);
692 if (!is_pass(c))
693 return c;
696 /* Fill board */
697 int fbtries = b->flen / 8;
698 for (int i = 0; i < (fbtries < pp->fillboardtries ? fbtries : pp->fillboardtries); i++) {
699 coord_t coord = b->f[fast_random(b->flen)];
700 if (is_pass(coord) || immediate_liberty_count(b, coord) != 4)
701 continue;
702 foreach_diag_neighbor(b, coord) {
703 if (board_at(b, c) != S_NONE)
704 goto next_try;
705 } foreach_diag_neighbor_end;
706 return coord;
707 next_try:;
710 return pass;
714 static int
715 assess_local_bonus(struct playout_policy *p, struct board *board, coord_t a, coord_t b, int games)
717 struct moggy_policy *pp = p->data;
718 if (!pp->assess_local)
719 return games;
721 int dx = abs(coord_x(a, board) - coord_x(b, board));
722 int dy = abs(coord_y(a, board) - coord_y(b, board));
723 /* adjecent move, directly or diagonally? */
724 if (dx + dy <= 1 + (dx && dy))
725 return games;
726 else
727 return games / 2;
730 void
731 playout_moggy_assess_group(struct playout_policy *p, struct prior_map *map, group_t g, int games,
732 struct board_state *s)
734 struct moggy_policy *pp = p->data;
735 struct board *b = map->b;
736 struct move_queue q; q.moves = 0;
738 if (board_group_info(b, g).libs > 2)
739 return;
741 if (PLDEBUGL(5)) {
742 fprintf(stderr, "ASSESS of group %s:\n", coord2sstr(g, b));
743 board_print(b, stderr);
746 if (board_group_info(b, g).libs == 2) {
747 if (!pp->atarirate)
748 return;
749 group_2lib_check(p, b, g, map->to_play, &q, s);
750 while (q.moves--) {
751 coord_t coord = q.move[q.moves];
752 if (PLDEBUGL(5))
753 fprintf(stderr, "1.0: 2lib %s\n", coord2sstr(coord, b));
754 int assess = assess_local_bonus(p, b, b->last_move.coord, coord, games) / 2;
755 add_prior_value(map, coord, 1, assess);
757 return;
760 /* This group, sir, is in atari! */
762 if (!pp->capturerate && !pp->lcapturerate && !pp->ladderassess)
763 return;
765 coord_t ladder = pass;
766 group_atari_check(p, b, g, map->to_play, &q, &ladder, s);
767 while (q.moves--) {
768 coord_t coord = q.move[q.moves];
770 /* _Never_ play here if this move plays out
771 * a caught ladder. */
772 if (coord == ladder && !board_playing_ko_threat(b)) {
773 /* Note that the opposite is not guarded against;
774 * we do not advise against capturing a laddered
775 * group (but we don't encourage it either). Such
776 * a move can simplify tactical situations if we
777 * can afford it. */
778 if (!pp->ladderassess || map->to_play != board_at(b, g))
779 continue;
780 /* FIXME: We give the malus even if this move
781 * captures another group. */
782 if (PLDEBUGL(5))
783 fprintf(stderr, "0.0: ladder %s\n", coord2sstr(coord, b));
784 add_prior_value(map, coord, 0, games);
785 continue;
788 if (!pp->capturerate && !pp->lcapturerate)
789 continue;
791 if (PLDEBUGL(5))
792 fprintf(stderr, "1.0: atari %s\n", coord2sstr(coord, b));
793 int assess = assess_local_bonus(p, b, b->last_move.coord, coord, games) * 2;
794 add_prior_value(map, coord, 1, assess);
798 void
799 playout_moggy_assess_one(struct playout_policy *p, struct prior_map *map, coord_t coord, int games)
801 struct moggy_policy *pp = p->data;
802 struct board *b = map->b;
804 if (PLDEBUGL(5)) {
805 fprintf(stderr, "ASSESS of move %s:\n", coord2sstr(coord, b));
806 board_print(b, stderr);
809 /* Is this move a self-atari? */
810 if (pp->selfatarirate) {
811 if (!board_playing_ko_threat(b) && is_bad_selfatari(b, map->to_play, coord)) {
812 if (PLDEBUGL(5))
813 fprintf(stderr, "0.0: self-atari\n");
814 add_prior_value(map, coord, 0, games);
815 return;
819 /* Pattern check */
820 if (pp->patternrate) {
821 struct move m = { .color = map->to_play, .coord = coord };
822 if (test_pattern3_here(p, b, &m)) {
823 if (PLDEBUGL(5))
824 fprintf(stderr, "1.0: pattern\n");
825 int assess = assess_local_bonus(p, b, b->last_move.coord, coord, games);
826 add_prior_value(map, coord, 1, assess);
830 return;
833 void
834 playout_moggy_assess(struct playout_policy *p, struct prior_map *map, int games)
836 struct moggy_policy *pp = p->data;
838 struct board_state *s = board_state_init(map->b);
840 /* First, go through all endangered groups. */
841 if (pp->lcapturerate || pp->capturerate || pp->atarirate || pp->ladderassess)
842 for (group_t g = 1; g < board_size2(map->b); g++)
843 if (group_at(map->b, g) == g)
844 playout_moggy_assess_group(p, map, g, games, s);
846 /* Then, assess individual moves. */
847 if (!pp->patternrate && !pp->selfatarirate)
848 return;
849 foreach_point(map->b) {
850 if (map->consider[c])
851 playout_moggy_assess_one(p, map, c, games);
852 } foreach_point_end;
855 bool
856 playout_moggy_permit(struct playout_policy *p, struct board *b, struct move *m)
858 struct moggy_policy *pp = p->data;
860 /* The idea is simple for now - never allow self-atari moves.
861 * They suck in general, but this also permits us to actually
862 * handle seki in the playout stage. */
864 if (fast_random(100) >= pp->selfatarirate) {
865 if (PLDEBUGL(5))
866 fprintf(stderr, "skipping sar test\n");
867 return true;
869 bool selfatari = is_bad_selfatari(b, m->color, m->coord);
870 if (PLDEBUGL(5) && selfatari)
871 fprintf(stderr, "__ Prohibiting self-atari %s %s\n",
872 stone2str(m->color), coord2sstr(m->coord, b));
873 return !selfatari;
877 struct playout_policy *
878 playout_moggy_init(char *arg, struct board *b)
880 struct playout_policy *p = calloc(1, sizeof(*p));
881 struct moggy_policy *pp = calloc(1, sizeof(*pp));
882 p->data = pp;
883 p->choose = playout_moggy_choose;
884 p->assess = playout_moggy_assess;
885 p->permit = playout_moggy_permit;
887 int rate = 90;
889 pp->lcapturerate = pp->atarirate = pp->capturerate = pp->patternrate = pp->selfatarirate
890 = -1;
891 pp->korate = 0; pp->koage = 4;
892 pp->alwaysccaprate = 0;
893 pp->ladders = pp->borderladders = true;
894 pp->ladderassess = true;
896 if (arg) {
897 char *optspec, *next = arg;
898 while (*next) {
899 optspec = next;
900 next += strcspn(next, ":");
901 if (*next) { *next++ = 0; } else { *next = 0; }
903 char *optname = optspec;
904 char *optval = strchr(optspec, '=');
905 if (optval) *optval++ = 0;
907 if (!strcasecmp(optname, "lcapturerate") && optval) {
908 pp->lcapturerate = atoi(optval);
909 } else if (!strcasecmp(optname, "atarirate") && optval) {
910 pp->atarirate = atoi(optval);
911 } else if (!strcasecmp(optname, "capturerate") && optval) {
912 pp->capturerate = atoi(optval);
913 } else if (!strcasecmp(optname, "patternrate") && optval) {
914 pp->patternrate = atoi(optval);
915 } else if (!strcasecmp(optname, "selfatarirate") && optval) {
916 pp->selfatarirate = atoi(optval);
917 } else if (!strcasecmp(optname, "korate") && optval) {
918 pp->korate = atoi(optval);
919 } else if (!strcasecmp(optname, "alwaysccaprate") && optval) {
920 pp->alwaysccaprate = atoi(optval);
921 } else if (!strcasecmp(optname, "rate") && optval) {
922 rate = atoi(optval);
923 } else if (!strcasecmp(optname, "fillboardtries")) {
924 pp->fillboardtries = atoi(optval);
925 } else if (!strcasecmp(optname, "koage") && optval) {
926 pp->koage = atoi(optval);
927 } else if (!strcasecmp(optname, "ladders")) {
928 pp->ladders = optval && *optval == '0' ? false : true;
929 } else if (!strcasecmp(optname, "borderladders")) {
930 pp->borderladders = optval && *optval == '0' ? false : true;
931 } else if (!strcasecmp(optname, "ladderassess")) {
932 pp->ladderassess = optval && *optval == '0' ? false : true;
933 } else if (!strcasecmp(optname, "assess_local")) {
934 pp->assess_local = optval && *optval == '0' ? false : true;
935 } else if (!strcasecmp(optname, "pattern2")) {
936 pp->pattern2 = optval && *optval == '0' ? false : true;
937 } else {
938 fprintf(stderr, "playout-moggy: Invalid policy argument %s or missing value\n", optname);
939 exit(1);
943 if (pp->lcapturerate == -1) pp->lcapturerate = rate;
944 if (pp->atarirate == -1) pp->atarirate = rate;
945 if (pp->capturerate == -1) pp->capturerate = rate;
946 if (pp->patternrate == -1) pp->patternrate = rate;
947 if (pp->selfatarirate == -1) pp->selfatarirate = rate;
948 if (pp->korate == -1) pp->korate = rate;
949 if (pp->alwaysccaprate == -1) pp->alwaysccaprate = rate;
951 pattern3s_init(&pp->patterns, moggy_patterns_src, moggy_patterns_src_n);
953 return p;