Merge branch 'master' into libmap
[pachi.git] / montecarlo / internal.h
blobcf779771c43b8ae8c4244cfa04766100c0e2e2c9
1 #ifndef PACHI_MONTECARLO_INTERNAL_H
2 #define PACHI_MONTECARLO_INTERNAL_H
4 #include "debug.h"
5 #include "move.h"
7 struct playout_policy;
9 /* Internal MonteCarlo structures */
12 /* Internal engine state. */
13 struct montecarlo {
14 int debug_level;
15 int gamelen;
16 floating_t resign_ratio;
17 int loss_threshold;
18 struct playout_policy *playout;
21 #define MCDEBUGL(n) DEBUGL_(mc->debug_level, n)
24 /* Per-move playout statistics. */
25 struct move_stat {
26 int games;
27 int wins;
30 void board_stats_print(struct board *board, struct move_stat *moves, FILE *f);
32 #endif