Page 1 of 5

Worst advice

Posted: Mon Aug 10, 2015 5:07 pm
by Henk
When you read all these comments there seems to be many ideas and recommendations to improve your chess engine.

For me worst idea was to use bitboards for move generation. For it was difficult to implement, gave horrible bugs and no speed up.

So question is: What was the worst idea you implemented ?

Re: Worst advice

Posted: Mon Aug 10, 2015 5:49 pm
by jdart
Movegen is not the biggest time consumer for most chess programs. The real bottleneck is the evaluation function, and I think Bob Hyatt observed a long time ago that the real benefit of bitboards is that you can get greater efficiencies in eval. Of course if you didn't start with bitboards that means re-writing your eval, as well as your movegen, etc.

--Jon

Re: Worst advice

Posted: Mon Aug 10, 2015 6:08 pm
by Henk
I did not know that.

Re: Worst advice

Posted: Mon Aug 10, 2015 7:02 pm
by brtzsnr
For young engines the move generation and sorting consume the most amount of time. Two reasons for this: 1) move are generated even if a hash move is already available 2) evaluation is extremely basic, possible just the material and position.

Stronger engines do various tricks to avoid generating or sorting the moves and, additionally, they have very complicated evaluation function. It's curious that a better eval improves the (internal) nps.

Re: Worst advice

Posted: Mon Aug 10, 2015 7:15 pm
by mvk
Henk wrote:So question is: What was the worst idea you implemented
Any speed improvement below 2,000 cycles per node.

Re: Worst advice

Posted: Mon Aug 10, 2015 7:35 pm
by jdart
Nobody should be doing 1). If you have a hash table, you probe it first, before movegen. That is not complicated.

--Jon

Re: Worst advice

Posted: Mon Aug 10, 2015 8:40 pm
by Robert Pope
jdart wrote:Nobody should be doing 1). If you have a hash table, you probe it first, before movegen. That is not complicated.

--Jon
But how do you know the probe returned a legal move? Stronger engines will have special validation routines, but younger engines often do a movegen and then see if the probe is in the movelist.

Re: Worst advice

Posted: Mon Aug 10, 2015 8:49 pm
by cdani
Robert Pope wrote:
jdart wrote:Nobody should be doing 1). If you have a hash table, you probe it first, before movegen. That is not complicated.

--Jon
But how do you know the probe returned a legal move? Stronger engines will have special validation routines, but younger engines often do a movegen and then see if the probe is in the movelist.
During a lot of time, Andscacs (and sure a lot of engines) was generating all the legal moves without bitboards with a lot of for loops, and was validating all the moves like the hash one searching in the list of moves generated. Of course this was sloooow, but I had something that was working and I knew sometime I will improve. Now it uses all the tricks one can think about to speed things. Is just a step after another. Make it work, and you will have time to improve it.

Re: Worst advice

Posted: Mon Aug 10, 2015 9:17 pm
by Dann Corbit
Was it the advice that was bad or the implementation of the advice?

Now, bitboards can be quite unnatural when you are not used to them yet.
But in the long run, I think that the advice was very good.
I guess that if you take your time and work through the issues, eventually you will be glad that you switched.

Look at the top ten on this list:
http://www.computerchess.org.uk/ccrl/4040/

Guess which of them are bitboard engines...
Answer:
All of them.

It's not a coincidence.

It is also true that array based engines can be very strong. But for 64 bit CPUs and 64 bit operating systems, bitboards are better.

Re: Worst advice

Posted: Mon Aug 10, 2015 9:22 pm
by jdart
You are only going to store a move in the hash table if it was generated, validated and executed previously for the position. So the only reason you'd get an invalid move would be a hash collision or an overwrite of hash table data while you are reading it (if using lockless hashing). To avoid this you do need to validate.

But I've done this forever .. version 1.0 of Arasan had a hash_move_valid method (not using movegen).

--Jon