Pachi Retsugen-devel 10.99
[pachi.git] / chat.h
blob961cb64754921aeff856a9033e6039649b6f94e6
1 #ifndef PACHI_CHAT_H
2 #define PACHI_CHAT_H
4 #include <stdbool.h>
6 #include "stone.h"
7 #include "move.h"
9 struct board;
11 void chat_init(char *chat_file);
12 void chat_done();
14 char *generic_chat(struct board *b, bool opponent, char *from, char *cmd, enum stone color, coord_t move,
15 int playouts, int machines, int threads, double winrate, double extra_komi);
17 #endif