Move uct_notify() to slave.c
[pachi.git] / uct / slave.h
blob2c5a69725f91e3b9f415fe6dad9b563d2f80c4ae
1 #ifndef ZZGO_UCT_SLAVE_H
2 #define ZZGO_UCT_SLAVE_H
4 #include "move.h"
6 struct board;
7 struct engine;
8 struct time_info;
10 enum parse_code uct_notify(struct engine *e, struct board *b, int id, char *cmd, char *args, char **reply);
11 char *uct_genmoves(struct engine *e, struct board *b, struct time_info *ti, enum stone color, char *args, bool pass_all_alive);
13 #endif