repo.or.cz
/
pachi
/
peepo.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Change type of mercymin to 'int' to avoid gcc sign-compare warning.
[pachi/peepo.git]
/
chat.h
blob
961cb64754921aeff856a9033e6039649b6f94e6
1
#ifndef PACHI_CHAT_H
2
#define PACHI_CHAT_H
3
4
#include <stdbool.h>
5
6
#include
"stone.h"
7
#include
"move.h"
8
9
struct
board
;
10
11
void
chat_init
(
char
*
chat_file
);
12
void
chat_done
();
13
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
);
16
17
#endif