Merge branch 'master' of git+ssh://repo.or.cz/srv/git/pachi
[pachi/json.git] / uct / prior.h
blob2c67b57a60ad43ce0fb2627fc184bb43068002b0
1 #ifndef ZZGO_UCT_PRIOR_H
2 #define ZZGO_UCT_PRIOR_H
4 #include "move.h"
6 struct tree;
7 struct tree_node;
8 struct uct;
9 struct board;
11 void uct_prior(struct uct *u, struct tree *tree, struct tree_node *node,
12 struct board *b, enum stone color, int parity);
14 #endif