Thanks.
This is fixed in v 0.98
Łukasz
On 1/23/07, terry mcintyre <[EMAIL PROTECTED]> wrote:
I was able to reproduce the problem with the odd "White Wins" value.
Turns out that win_cnt was not initialized in playout_benchmark. Adding an
explicit
initialization fixed that problem. My c++ is ex
I was able to reproduce the problem with the odd "White Wins" value.
Turns out that win_cnt was not initialized in playout_benchmark. Adding an
explicit
initialization fixed that problem. My c++ is extremely rusty, so I used
win_cnt[0]=0;
win_cnt[1]=0;
There is probably a c++ specific idiom