From c9c8b7b09a2bbcf16a0162add78b5595dbb117a5 Mon Sep 17 00:00:00 2001 From: Petr Baudis Date: Thu, 6 Mar 2008 04:00:06 +0100 Subject: [PATCH] UCT: Adjust hint rates, disable local altogether --- uct/uct.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/uct/uct.c b/uct/uct.c index a346442..36565ea 100644 --- a/uct/uct.c +++ b/uct/uct.c @@ -154,9 +154,11 @@ uct_state_init(char *arg) u->games = MC_GAMES; u->gamelen = MC_GAMELEN; u->explore_p = 0.2; - u->mc.atari_rate = 80; - u->mc.cut_rate = 50; - u->mc.local_rate = 50; + u->mc.atari_rate = 90; + u->mc.cut_rate = 80; + // Looking at the actual playouts, this just encourages MC to make + // stupid shapes. + u->mc.local_rate = 0; if (arg) { char *optspec, *next = arg; -- 2.11.4.GIT