Pattern FEAT_PATTERN3: Introduce, use by default inst. of FEAT_SPATIAL in matchfast
[pachi.git] / uct / walk.h
blob07fd92ce2403fcf4fdb5a2689e93614bd4c5e56d
1 #ifndef ZZGO_UCT_WALK_H
2 #define ZZGO_UCT_WALK_H
4 #include "move.h"
6 struct tree;
7 struct uct;
8 struct board;
10 float uct_get_extra_komi(struct uct *u, struct board *b);
11 void uct_progress_status(struct uct *u, struct tree *t, enum stone color, int playouts);
13 int uct_playout(struct uct *u, struct board *b, enum stone player_color, struct tree *t);
14 int uct_playouts(struct uct *u, struct board *b, enum stone color, struct tree *t, int games);
16 #endif