From: H.G. Muller Date: Sat, 1 Jun 2013 21:05:28 +0000 (+0200) Subject: Print ponder move X-Git-Tag: 0.18~36 X-Git-Url: http://winboard.nl/cgi-bin?p=hachu.git;a=commitdiff_plain;h=d591ae7bec7e627c51d914462addb5ea0096739a Print ponder move --- 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");