From 34aef2c6e1e5062820088a79199d36126ae12110 Mon Sep 17 00:00:00 2001 From: Jean-loup Gailly Date: Sun, 21 Nov 2010 13:53:55 +0100 Subject: [PATCH] Uct prior: use cfgd=3%40%20%20 as default, better for usual time settings --- uct/prior.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uct/prior.c b/uct/prior.c index 92fa3e1..0bed606 100644 --- a/uct/prior.c +++ b/uct/prior.c @@ -241,7 +241,7 @@ uct_prior_init(char *arg, struct board *b) if (p->plugin_eqex < 0) p->plugin_eqex = p->eqex * -p->plugin_eqex / 100; if (p->cfgdn < 0) { - int bonuses[] = { 0, p->eqex, p->eqex / 2, p->eqex / 2 }; + int bonuses[] = { 0, 2*p->eqex, p->eqex, p->eqex }; p->cfgdn = 3; p->cfgd_eqex = calloc2(p->cfgdn + 1, sizeof(*p->cfgd_eqex)); memcpy(p->cfgd_eqex, bonuses, sizeof(bonuses)); -- 2.11.4.GIT