From d591ae7bec7e627c51d914462addb5ea0096739a Mon Sep 17 00:00:00 2001 From: H.G. Muller Date: Sat, 1 Jun 2013 23:05:28 +0200 Subject: [PATCH] Print ponder move --- hachu.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/hachu.c b/hachu.c index 918ef49..b28c59a 100644 --- a/hachu.c +++ b/hachu.c @@ -1850,6 +1850,7 @@ if(PATH) printf("%d:%2d:%d %3d %6x %-10s %6d %6d\n", level, depth, iterDep, curM if(postThinking > 0) { int i; // WB thinking output printf("%d %d %d %d", iterDep, bestScore, (GetTickCount() - startTime)/10, nodes); + if(ponderMove) printf(" (%s)", MoveToText(ponderMove, 0)); for(i=0; pv[i]; i++) printf(" %s", MoveToText(pv[i], 0)); if(iterDep == 1) printf(" { root eval = %4.2f dif = %4.2f; abs = %4.2f}", curEval/100., difEval/100., PSTest()/100.); printf("\n"); -- 1.7.0.4