From cbee00008a516d8e6af16c8b6c684a7289e14533 Mon Sep 17 00:00:00 2001 From: Petr Baudis Date: Sat, 29 Jan 2011 11:41:11 +0100 Subject: [PATCH] UCT local_tree_pseqroot: Remove unused setting --- uct/internal.h | 2 -- uct/uct.c | 6 ------ 2 files changed, 8 deletions(-) diff --git a/uct/internal.h b/uct/internal.h index 324df89..c4c78d7 100644 --- a/uct/internal.h +++ b/uct/internal.h @@ -75,8 +75,6 @@ struct uct { #define LTREE_PLAYOUTS_MULTIPLIER 100 floating_t local_tree_depth_decay; bool local_tree_allseq; - /* Playout-localtree integration. */ - bool local_tree_pseqroot; bool local_tree_rootseqval; char *banner; diff --git a/uct/uct.c b/uct/uct.c index e2fdc65..fe67334 100644 --- a/uct/uct.c +++ b/uct/uct.c @@ -896,12 +896,6 @@ uct_state_init(char *arg, struct board *b) * in the local tree. If this is on, also * subsequences starting at each move are stored. */ u->local_tree_allseq = !optval || atoi(optval); - } else if (!strcasecmp(optname, "local_tree_pseqroot")) { - /* By default, when we have no sequence move - * to suggest in-playout, we give up. If this - * is on, we make probability distribution from - * sequences first moves instead. */ - u->local_tree_pseqroot = !optval || atoi(optval); } else if (!strcasecmp(optname, "local_tree_rootseqval")) { /* If disabled, expected node value is computed by * summing up values through the whole descent. -- 2.11.4.GIT