Leiden Tournament

Discussion of anything and everything relating to chess playing software and machines.

Moderators: hgm, Rebel, chrisw

User avatar
Dr.Wael Deeb
Posts: 9773
Joined: Wed Mar 08, 2006 8:44 pm
Location: Amman,Jordan

Re: Leiden Tournament

Post by Dr.Wael Deeb »

Gerd Isenberg wrote:
Graham Banks wrote:
mclane wrote:exactly.its time for gerd.
Gerd has worked hard over a long period of time, so any success would indeed be well deserved. 8-)
Thanks for your kind words, Graham. I have to admit that the current HansDamf, which played in Wortel and Leiden is still more 32-bit IsiChess MMX than the initial devoted 64-bit SSE2 HansDamf, which is a color-flipper (flips the board after each move, so the computer is always white to move) and will blow everything away ;-)

(With a decent eval and parallel algorithm still in progress).

Cheers,
Gerd
Wish you all the best Gerd with your work over the beast :D
Dr.D
_No one can hit as hard as life.But it ain’t about how hard you can hit.It’s about how hard you can get hit and keep moving forward.How much you can take and keep moving forward….
User avatar
Harvey Williamson
Posts: 2011
Joined: Sun May 25, 2008 11:12 pm
Location: Whitchurch. Shropshire, UK.
Full name: Harvey Williamson

Re: Leiden Tournament

Post by Harvey Williamson »

gerold
Posts: 10121
Joined: Thu Mar 09, 2006 12:57 am
Location: van buren,missouri

Re: Leiden Tournament

Post by gerold »

Harvey Williamson wrote:Hiarcs is the 1st winner of the new Theo van der Storm trophy :)

http://www.hiarcs.com/Games/csvn2009/csvn2009.htm

http://hiarcs.net/forums/viewtopic.php?p=32750#32750
Nice Harvey.
Thanks for the links.

Good luck,

Gerold.
Jan Brouwer
Posts: 201
Joined: Thu Mar 22, 2007 7:12 pm
Location: Netherlands

Re: Leiden Tournament

Post by Jan Brouwer »

Gerd Isenberg wrote:... the initial devoted 64-bit SSE2 HansDamf, which is a color-flipper (flips the board after each move, so the computer is always white to move) and will blow everything away ;-)

Cheers,
Gerd
Interesting idea!
Does it also only evaluate white pieces (e.g. by maintaining both color orientations)?
I may steal your idea... :-)
Steve B
Posts: 3697
Joined: Tue Jul 31, 2007 4:26 pm

Re: Leiden Tournament

Post by Steve B »

Harvey Williamson wrote:Hiarcs is the 1st winner of the new Theo van der Storm trophy :)

http://www.hiarcs.com/Games/csvn2009/csvn2009.htm

http://hiarcs.net/forums/viewtopic.php?p=32750#32750
Well Done Regards
Steve
Gerd Isenberg
Posts: 2250
Joined: Wed Mar 08, 2006 8:47 pm
Location: Hattingen, Germany

Re: Leiden Tournament

Post by Gerd Isenberg »

Jan Brouwer wrote:
Gerd Isenberg wrote:... the initial devoted 64-bit SSE2 HansDamf, which is a color-flipper (flips the board after each move, so the computer is always white to move) and will blow everything away ;-)

Cheers,
Gerd
Interesting idea!
Does it also only evaluate white pieces (e.g. by maintaining both color orientations)?
I may steal your idea... :-)
Actually it seems an old idea, already used by Peter Jennings with MicroChess.

One has only to generate white moves. Evaluation however considers both sides so far, also based on attack sets for white and black pieces. It safes some indexing by side to move and I guess there are some EGTB implications as well. Color-Flipping the board during make/unmake is quite cheap with quad-bitboards.

I use

Code: Select all

Hashkey[piece][square] == byteswap(Hashkey[piece^colorOfPiece][square^56])
to flip the hashkey by byteswap as well. In symmetrical positions with nullmove, it gains some additional hits ;-).