repo.or.cz
/
pachi
/
derm.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Moggy: Default korate, alwaysccaprate 0 -> 20
[pachi/derm.git]
/
uct
/
uct.h
blob
bf2e9c9208625fc72086f0073b6438b1efdfbba4
1
#ifndef ZZGO_UCT_UCT_H
2
#define ZZGO_UCT_UCT_H
3
4
#include
"engine.h"
5
#include
"move.h"
6
7
struct
engine
*
engine_uct_init
(
char
*
arg
,
struct
board
*
b
);
8
9
struct
board
;
10
struct
time_info
;
11
bool
uct_genbook
(
struct
engine
*
e
,
struct
board
*
b
,
struct
time_info
*
ti
,
enum
stone color
);
12
void
uct_dumpbook
(
struct
engine
*
e
,
struct
board
*
b
,
enum
stone color
);
13
14
#endif