WB II programs -> extended search info under Arena
Posted: 27 Sep 2004, 22:35
Hi there fellow programmers. Arena has a nice feature that shows current move being searched, that can be used in WBII programs. Everytime you start searching a new root move you send the command "stat", which works as follows:
MoveIndex stands for the "3" in: 3/47.
It is a nice feature and it's implemented in five minutes.
Jos? C.
- Code: Select all
#if defined(ARENA)
if (TimeElapsed > 3 || Depth > 4)
{
printf("\nstat01: %u %u %d %u %u %s%s\n",
(UINT32)(TimeElapsed * 100),
TotalNodes,
Depth,
MoveIndex,
TotalRootMoves,
MoveInAlgebraicNotation);
}
#endif
MoveIndex stands for the "3" in: 3/47.
It is a nice feature and it's implemented in five minutes.
Jos? C.