From 1894abb005a4e10b9f682da5e787e3ad7b062b0b Mon Sep 17 00:00:00 2001 From: Petr Baudis Date: Fri, 19 Sep 2008 01:42:13 +0200 Subject: [PATCH] uct_genbook(): Try to load existing book first --- uct/uct.c | 1 + 1 file changed, 1 insertion(+) diff --git a/uct/uct.c b/uct/uct.c index 42e32d7..436753e 100644 --- a/uct/uct.c +++ b/uct/uct.c @@ -232,6 +232,7 @@ uct_genbook(struct engine *e, struct board *b, enum stone color) { struct uct *u = e->data; u->t = tree_init(b, color); + tree_load(u->t, b); int i; for (i = 0; i < u->games; i++) { -- 2.11.4.GIT