Computer Chess Club Archives


Search

Terms

Messages

Subject: Re: zobrist key table questions

Author: Zach Wegner

Date: 11:14:30 05/30/04

Go up one level in this thread


>>r1=(unsigned)zobrist[fil][i][j]&4294967295;
>>r2=(unsigned)zobrist[fil][i][j]>>32;

should be:
r2=(unsigned)(zobrist[fil][i][j]>>32);

Shifting an unsigned right by 32 is 0(on a 32-bit machine, of course).



This page took 0 seconds to execute

Last modified: Thu, 15 Apr 21 08:11:13 -0700

Current Computer Chess Club Forums at Talkchess. This site by Sean Mintz.