From 87c18e234100171c4ebcbaff1ea200c1c9e52a3c Mon Sep 17 00:00:00 2001 From: Jean-loup Gailly Date: Thu, 11 Feb 2010 10:31:15 +0100 Subject: [PATCH] Add command line option fast_alloc. --- uct/uct.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/uct/uct.c b/uct/uct.c index 75100b6..09370b3 100644 --- a/uct/uct.c +++ b/uct/uct.c @@ -969,6 +969,8 @@ uct_state_init(char *arg, struct board *b) * this limits size of only one of the trees, not all of them * together. */ u->max_tree_size = atol(optval) * 1048576; + } else if (!strcasecmp(optname, "fast_alloc")) { + u->fast_alloc = !optval || atoi(optval); } else if (!strcasecmp(optname, "banner") && optval) { /* Additional banner string. This must come as the * last engine parameter. */ -- 2.11.4.GIT