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
Board+UCT: Symmetry Folding Support
[pachi/peepo.git]
/
uct
/
uct.h
blob
e69b462db95a50ac22dd6b31b5a6de44c68ccaef
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
);
8
9
struct
board
;
10
bool
uct_genbook
(
struct
engine
*
e
,
struct
board
*
b
,
enum
stone color
);
11
void
uct_dumpbook
(
struct
engine
*
e
,
struct
board
*
b
,
enum
stone color
);
12
13
#endif