14 #include "playout/moggy.h"
15 #include "playout/old.h"
16 #include "playout/light.h"
18 #include "uct/internal.h"
22 struct uct_policy
*policy_ucb1_init(struct uct
*u
, char *arg
);
23 struct uct_policy
*policy_ucb1tuned_init(struct uct
*u
, char *arg
);
24 struct uct_policy
*policy_ucb1amaf_init(struct uct
*u
, char *arg
);
27 #define MC_GAMES 80000
28 #define MC_GAMELEN 400
32 progress_status(struct uct
*u
, struct tree
*t
, enum stone color
, int playouts
)
38 struct tree_node
*best
= u
->policy
->choose(u
->policy
, t
->root
, t
->board
, color
);
40 fprintf(stderr
, "... No moves left\n");
43 fprintf(stderr
, "[%d] ", playouts
);
44 fprintf(stderr
, "best %f ", best
->u
.value
);
47 fprintf(stderr
, "deepest % 2d ", t
->max_depth
- t
->root
->depth
);
50 fprintf(stderr
, "| seq ");
51 for (int depth
= 0; depth
< 6; depth
++) {
52 if (best
&& best
->u
.playouts
>= 25) {
53 fprintf(stderr
, "%3s ", coord2sstr(best
->coord
, t
->board
));
54 best
= u
->policy
->choose(u
->policy
, best
, t
->board
, color
);
61 fprintf(stderr
, "| can ");
63 struct tree_node
*can
[cans
];
64 memset(can
, 0, sizeof(can
));
65 best
= t
->root
->children
;
68 while ((!can
[c
] || best
->u
.playouts
> can
[c
]->u
.playouts
) && ++c
< cans
);
69 for (int d
= 0; d
< c
; d
++) can
[d
] = can
[d
+ 1];
70 if (c
> 0) can
[c
- 1] = best
;
75 fprintf(stderr
, "%3s(%.3f) ", coord2sstr(can
[cans
]->coord
, t
->board
), can
[cans
]->u
.value
);
81 fprintf(stderr
, "\n");
86 uct_playout(struct uct
*u
, struct board
*b
, enum stone color
, struct tree
*t
)
91 struct playout_amafmap
*amaf
= NULL
;
92 if (u
->policy
->wants_amaf
) {
93 amaf
= calloc(1, sizeof(*amaf
));
94 amaf
->map
= calloc(board_size2(&b2
) + 1, sizeof(*amaf
->map
));
95 amaf
->map
++; // -1 is pass
98 /* Walk the tree until we find a leaf, then expand it and do
99 * a random playout. */
100 struct tree_node
*n
= t
->root
;
101 enum stone orig_color
= color
;
103 int pass_limit
= (board_size(&b2
) - 2) * (board_size(&b2
) - 2) / 2;
104 int passes
= is_pass(b
->last_move
.coord
);
107 static char spaces
[] = "\0 ";
110 fprintf(stderr
, "--- UCT walk with color %d\n", color
);
111 for (; pass
; color
= stone_other(color
)) {
112 if (tree_leaf_node(n
)) {
113 if (n
->u
.playouts
>= u
->expand_p
)
114 tree_expand_node(t
, n
, &b2
, color
, u
->radar_d
, u
->policy
, (color
== orig_color
? 1 : -1));
116 fprintf(stderr
, "%s*-- UCT playout #%d start [%s] %f\n", spaces
, n
->u
.playouts
, coord2sstr(n
->coord
, t
->board
), n
->u
.value
);
118 result
= play_random_game(&b2
, color
, u
->gamelen
, u
->playout_amaf
? amaf
: NULL
, u
->playout
);
119 if (orig_color
!= color
&& result
>= 0)
122 fprintf(stderr
, "%s -- [%d..%d] %s random playout result %d\n", spaces
, orig_color
, color
, coord2sstr(n
->coord
, t
->board
), result
);
124 /* Reset color to the @n color. */
125 color
= stone_other(color
);
128 spaces
[depth
++] = ' '; spaces
[depth
] = 0;
130 n
= u
->policy
->descend(u
->policy
, t
, n
, (color
== orig_color
? 1 : -1), pass_limit
);
131 assert(n
== t
->root
|| n
->parent
);
133 fprintf(stderr
, "%s+-- UCT sent us to [%s:%d] %f\n", spaces
, coord2sstr(n
->coord
, t
->board
), n
->coord
, n
->u
.value
);
134 if (amaf
&& n
->coord
>= -1 && !is_pass(n
->coord
)) {
135 if (amaf
->map
[n
->coord
] == S_NONE
) {
136 amaf
->map
[n
->coord
] = color
;
138 amaf_op(amaf
->map
[n
->coord
], +);
141 struct move m
= { n
->coord
, color
};
142 int res
= board_play(&b2
, &m
);
144 if (res
< 0 || (!is_pass(m
.coord
) && !group_at(&b2
, m
.coord
)) /* suicide */
145 || b2
.superko_violation
) {
147 for (struct tree_node
*ni
= n
; ni
; ni
= ni
->parent
)
148 fprintf(stderr
, "%s ", coord2sstr(ni
->coord
, t
->board
));
149 fprintf(stderr
, "deleting invalid %s node %d,%d res %d group %d spk %d\n",
150 stone2str(color
), coord_x(n
->coord
,b
), coord_y(n
->coord
,b
),
151 res
, group_at(&b2
, m
.coord
), b2
.superko_violation
);
153 tree_delete_node(t
, n
);
158 if (is_pass(n
->coord
)) {
161 float score
= board_official_score(&b2
);
162 result
= (orig_color
== S_BLACK
) ? score
< 0 : score
> 0;
164 fprintf(stderr
, "[%d..%d] %s p-p scoring playout result %d (W %f)\n", orig_color
, color
, coord2sstr(n
->coord
, t
->board
), result
, score
);
166 board_print(&b2
, stderr
);
174 assert(n
== t
->root
|| n
->parent
);
176 u
->policy
->update(u
->policy
, t
, n
, color
, orig_color
, amaf
, result
);
183 board_done_noalloc(&b2
);
188 prepare_move(struct engine
*e
, struct board
*b
, enum stone color
, coord_t promote
)
190 struct uct
*u
= e
->data
;
192 if (!b
->moves
&& u
->t
) {
193 /* Stale state from last game */
199 u
->t
= tree_init(b
, color
);
201 fprintf(stderr
, "Fresh board with random seed %lu\n", fast_getseed());
202 //board_print(b, stderr);
203 tree_load(u
->t
, b
, color
);
206 /* XXX: We hope that the opponent didn't suddenly play
207 * several moves in the row. */
208 if (!is_resign(promote
) && !tree_promote_at(u
->t
, b
, promote
)) {
210 fprintf(stderr
, "<cannot find node to promote>\n");
213 u
->t
= tree_init(b
, color
);
217 /* Set in main thread in case the playouts should stop. */
218 static volatile sig_atomic_t halt
= 0;
221 uct_playouts(struct uct
*u
, struct board
*b
, enum stone color
, struct tree
*t
)
223 int i
, games
= u
->games
;
224 if (t
->root
->children
)
225 games
-= t
->root
->u
.playouts
/ 1.5;
226 /* else this is highly read-out but dead-end branch of opening book;
227 * we need to start from scratch; XXX: Maybe actually base the readout
228 * count based on number of playouts of best node? */
229 for (i
= 0; i
< games
; i
++) {
230 int result
= uct_playout(u
, b
, color
, t
);
232 /* Tree descent has hit invalid move. */
236 if (i
> 0 && !(i
% 10000)) {
237 progress_status(u
, t
, color
, i
);
240 if (i
> 0 && !(i
% 500)) {
241 struct tree_node
*best
= u
->policy
->choose(u
->policy
, t
->root
, b
, color
);
242 if (best
&& best
->u
.playouts
>= 1500 && best
->u
.value
>= u
->loss_threshold
)
248 fprintf(stderr
, "<halting early, %d games skipped>\n", games
- i
);
253 progress_status(u
, t
, color
, i
);
255 tree_dump(t
, u
->dumpthres
);
259 static pthread_mutex_t finish_mutex
= PTHREAD_MUTEX_INITIALIZER
;
260 static pthread_cond_t finish_cond
= PTHREAD_COND_INITIALIZER
;
261 static volatile int finish_thread
;
262 static pthread_mutex_t finish_serializer
= PTHREAD_MUTEX_INITIALIZER
;
275 spawn_helper(void *ctx_
)
277 struct spawn_ctx
*ctx
= ctx_
;
279 fast_srandom(ctx
->seed
);
281 ctx
->games
= uct_playouts(ctx
->u
, ctx
->b
, ctx
->color
, ctx
->t
);
283 pthread_mutex_lock(&finish_serializer
);
284 pthread_mutex_lock(&finish_mutex
);
285 finish_thread
= ctx
->tid
;
286 pthread_cond_signal(&finish_cond
);
287 pthread_mutex_unlock(&finish_mutex
);
292 uct_notify_play(struct engine
*e
, struct board
*b
, struct move
*m
)
294 prepare_move(e
, b
, stone_other(m
->color
), m
->coord
);
298 uct_genmove(struct engine
*e
, struct board
*b
, enum stone color
)
300 struct uct
*u
= e
->data
;
303 prepare_move(e
, b
, color
, resign
);
305 int played_games
= 0;
307 played_games
= uct_playouts(u
, b
, color
, u
->t
);
309 pthread_t threads
[u
->threads
];
312 pthread_mutex_lock(&finish_mutex
);
313 /* Spawn threads... */
314 for (int ti
= 0; ti
< u
->threads
; ti
++) {
315 struct spawn_ctx
*ctx
= malloc(sizeof(*ctx
));
316 ctx
->u
= u
; ctx
->b
= b
; ctx
->color
= color
;
317 ctx
->t
= tree_copy(u
->t
); ctx
->tid
= ti
;
318 ctx
->seed
= fast_random(65536) + ti
;
319 pthread_create(&threads
[ti
], NULL
, spawn_helper
, ctx
);
321 fprintf(stderr
, "Spawned thread %d\n", ti
);
323 /* ...and collect them back: */
324 while (joined
< u
->threads
) {
325 /* Wait for some thread to finish... */
326 pthread_cond_wait(&finish_cond
, &finish_mutex
);
327 /* ...and gather its remnants. */
328 struct spawn_ctx
*ctx
;
329 pthread_join(threads
[finish_thread
], (void **) &ctx
);
330 played_games
+= ctx
->games
;
332 tree_merge(u
->t
, ctx
->t
);
336 fprintf(stderr
, "Joined thread %d\n", finish_thread
);
337 /* Do not get stalled by slow threads. */
338 if (joined
>= u
->threads
/ 2)
340 pthread_mutex_unlock(&finish_serializer
);
342 pthread_mutex_unlock(&finish_mutex
);
346 tree_dump(u
->t
, u
->dumpthres
);
348 struct tree_node
*best
= u
->policy
->choose(u
->policy
, u
->t
->root
, b
, color
);
350 tree_done(u
->t
); u
->t
= NULL
;
351 return coord_copy(pass
);
354 fprintf(stderr
, "*** WINNER is %s (%d,%d) with score %1.4f (%d/%d:%d games)\n", coord2sstr(best
->coord
, b
), coord_x(best
->coord
, b
), coord_y(best
->coord
, b
), best
->u
.value
, best
->u
.playouts
, u
->t
->root
->u
.playouts
, played_games
);
355 if (best
->u
.value
< u
->resign_ratio
&& !is_pass(best
->coord
)) {
356 tree_done(u
->t
); u
->t
= NULL
;
357 return coord_copy(resign
);
359 tree_promote_node(u
->t
, best
);
360 return coord_copy(best
->coord
);
364 uct_genbook(struct engine
*e
, struct board
*b
, enum stone color
)
366 struct uct
*u
= e
->data
;
367 u
->t
= tree_init(b
, color
);
368 tree_load(u
->t
, b
, color
);
371 for (i
= 0; i
< u
->games
; i
++) {
372 int result
= uct_playout(u
, b
, color
, u
->t
);
374 /* Tree descent has hit invalid move. */
378 if (i
> 0 && !(i
% 10000)) {
379 progress_status(u
, u
->t
, color
, i
);
382 progress_status(u
, u
->t
, color
, i
);
384 tree_save(u
->t
, b
, u
->games
/ 100);
392 uct_dumpbook(struct engine
*e
, struct board
*b
, enum stone color
)
394 struct uct
*u
= e
->data
;
395 u
->t
= tree_init(b
, color
);
396 tree_load(u
->t
, b
, color
);
403 uct_state_init(char *arg
)
405 struct uct
*u
= calloc(1, sizeof(struct uct
));
409 u
->gamelen
= MC_GAMELEN
;
412 u
->playout_amaf
= false;
415 char *optspec
, *next
= arg
;
418 next
+= strcspn(next
, ",");
419 if (*next
) { *next
++ = 0; } else { *next
= 0; }
421 char *optname
= optspec
;
422 char *optval
= strchr(optspec
, '=');
423 if (optval
) *optval
++ = 0;
425 if (!strcasecmp(optname
, "debug")) {
427 u
->debug_level
= atoi(optval
);
430 } else if (!strcasecmp(optname
, "games") && optval
) {
431 u
->games
= atoi(optval
);
432 } else if (!strcasecmp(optname
, "gamelen") && optval
) {
433 u
->gamelen
= atoi(optval
);
434 } else if (!strcasecmp(optname
, "expand_p") && optval
) {
435 u
->expand_p
= atoi(optval
);
436 } else if (!strcasecmp(optname
, "radar_d") && optval
) {
437 /* For 19x19, it is good idea to set this to 3. */
438 u
->radar_d
= atoi(optval
);
439 } else if (!strcasecmp(optname
, "dumpthres") && optval
) {
440 u
->dumpthres
= atoi(optval
);
441 } else if (!strcasecmp(optname
, "playout_amaf")) {
442 /* Whether to include random playout moves in
443 * AMAF as well. (Otherwise, only tree moves
444 * are included in AMAF. Of course makes sense
445 * only in connection with an AMAF policy.) */
446 /* with-without: 55.5% (+-4.1) */
447 if (optval
&& *optval
== '0')
448 u
->playout_amaf
= false;
450 u
->playout_amaf
= true;
451 } else if (!strcasecmp(optname
, "policy") && optval
) {
452 char *policyarg
= strchr(optval
, ':');
455 if (!strcasecmp(optval
, "ucb1")) {
456 u
->policy
= policy_ucb1_init(u
, policyarg
);
457 } else if (!strcasecmp(optval
, "ucb1tuned")) {
458 u
->policy
= policy_ucb1tuned_init(u
, policyarg
);
459 } else if (!strcasecmp(optval
, "ucb1amaf")) {
460 u
->policy
= policy_ucb1amaf_init(u
, policyarg
);
462 fprintf(stderr
, "UCT: Invalid tree policy %s\n", optval
);
464 } else if (!strcasecmp(optname
, "playout") && optval
) {
465 char *playoutarg
= strchr(optval
, ':');
468 if (!strcasecmp(optval
, "old")) {
469 u
->playout
= playout_old_init(playoutarg
);
470 } else if (!strcasecmp(optval
, "moggy")) {
471 u
->playout
= playout_moggy_init(playoutarg
);
472 } else if (!strcasecmp(optval
, "light")) {
473 u
->playout
= playout_light_init(playoutarg
);
475 fprintf(stderr
, "UCT: Invalid playout policy %s\n", optval
);
477 } else if (!strcasecmp(optname
, "threads") && optval
) {
478 u
->threads
= atoi(optval
);
480 fprintf(stderr
, "uct: Invalid engine argument %s or missing value\n", optname
);
485 u
->resign_ratio
= 0.2; /* Resign when most games are lost. */
486 u
->loss_threshold
= 0.85; /* Stop reading if after at least 1500 playouts this is best value. */
488 u
->policy
= policy_ucb1amaf_init(u
, NULL
);
491 u
->playout
= playout_moggy_init(NULL
);
492 u
->playout
->debug_level
= u
->debug_level
;
499 engine_uct_init(char *arg
)
501 struct uct
*u
= uct_state_init(arg
);
502 struct engine
*e
= calloc(1, sizeof(struct engine
));
503 e
->name
= "UCT Engine";
504 e
->comment
= "I'm playing UCT. When we both pass, I will consider all the stones on the board alive. If you are reading this, write 'yes'. Please bear with me at the game end, I need to fill the whole board; if you help me, we will both be happier. Filling the board will not lose points (NZ rules).";
505 e
->genmove
= uct_genmove
;
506 e
->notify_play
= uct_notify_play
;