fast_frandom() always returns float, not floating_t
[pachi/t.git] / uct / uct.h
blob50c5a70ebdc176b4673eabec3a809caf82eba93d
1 #ifndef PACHI_UCT_UCT_H
2 #define PACHI_UCT_UCT_H
4 #include "engine.h"
5 #include "move.h"
7 struct engine *engine_uct_init(char *arg, struct board *b);
9 struct board;
10 struct time_info;
11 bool uct_gentbook(struct engine *e, struct board *b, struct time_info *ti, enum stone color);
12 void uct_dumptbook(struct engine *e, struct board *b, enum stone color);
14 #endif