An Introduction to Late Move Reductions

Programming Topics (Computer Chess) and technical aspects as test techniques, book building, program tuning etc

Moderator: Andres Valverde

An Introduction to Late Move Reductions

Postby Tord Romstad » 27 Feb 2006, 15:48

Hi all,

Over the last couple of years, countless people have posted to the CCC asking what history pruning means. Each time, I have patiently re-typed my previous replies to similar queries from memory. Today, when Frank Phillips asked the same old question, I finally decided to improve my old explanation a bit and put it on my web site.

My first draft is ready:

http://www.glaurungchess.com/lmr.html

Comments, corrections and suggestions for additions or improvements are welcome.

The only two engines I mention in my "Sample Code" paragraph are Fruit and Glaurung. This is because of ignorance, and not because of disrespect to other authors. If you are the author of an open source engine using history pruning (or whatever you prefer to call it) and want it to be mentioned on my page, please let me know.

Tord
User avatar
Tord Romstad
 
Posts: 639
Joined: 09 Oct 2004, 12:49
Location: Oslo, Norway

Re: An Introduction to Late Move Reductions

Postby H.G.Muller » 27 Feb 2006, 17:24

Nice explanation!

In your pseudo-code, however, the call for the null-move search seems to have an argument too many. Also the 'depth' argument on qsearch seems superfluous, since at that point depth is known to be zero.
User avatar
H.G.Muller
 
Posts: 3453
Joined: 16 Nov 2005, 12:02
Location: Diemen, NL

Re: An Introduction to Late Move Reductions

Postby Robert Allgeuer » 27 Feb 2006, 17:58

Tord,
the obvious question after reading your article: which ones are the three top commercials you suspect to use late move reductions?

Robert
Robert Allgeuer
 
Posts: 124
Joined: 28 Sep 2004, 19:09
Location: Konz / Germany

Re: An Introduction to Late Move Reductions

Postby YvesLejeail » 27 Feb 2006, 20:32

Thanks for the explanations Tord ! Will take a look and study it carefully. Thats very nice to have detailed infos on chess algorithms...
Yves
User avatar
YvesLejeail
 
Posts: 48
Joined: 03 Aug 2005, 17:36
Location: Pertuis, France

Re: An Introduction to Late Move Reductions

Postby Tord Romstad » 27 Feb 2006, 20:43

H.G.Muller wrote:Nice explanation!

In your pseudo-code, however, the call for the null-move search seems to have an argument too many.

Thanks, you are right. I'll correct it.

H.G.Muller wrote:Also the 'depth' argument on qsearch seems superfluous, since at that point depth is known to be zero.

Yes, you are right again. It is not superfluous in Glaurung, which is why I put it there in the pseudo code by reflex.

Robert Allgeuer wrote:Tord,
the obvious question after reading your article: which ones are the three top commercials you suspect to use late move reductions?

If I felt comfortable about revealing the names, I would have written them in my article. :wink:

At least it is no secret that one of them is Fruit. Everybody can see for themselves by inspecting the source code that Fruit 2.1 uses late move reductions, and those who own Fruit 2.2 can check that the "History Pruning" UCI parameter is still there. For the two other programs, I rely on inside information which should probably be kept private.

Tord
User avatar
Tord Romstad
 
Posts: 639
Joined: 09 Oct 2004, 12:49
Location: Oslo, Norway

Re: An Introduction to Late Move Reductions

Postby H.G.Muller » 27 Feb 2006, 22:45

Tord Romstad wrote:
H.G.Muller wrote:Also the 'depth' argument on qsearch seems superfluous, since at that point depth is known to be zero.

Yes, you are right again. It is not superfluous in Glaurung, which is why I put it there in the pseudo code by reflex.

You make me curious! What in your qsearch is depth-dependent?

My 25-year old chess engine 'Usurpator' has a QS that considers way too much (like capturing pieces of which the defense-count was lowered in the previous ply), which gives it a strong tendency to explode. To combat that problem, which became painfully obvious when I competed with this program in the 25th Duch Computer Chess Championship on a modern computer, I consider introducing a depth parameter in QS.

The purpose would be to do iterative deepening in QS, in order to force a breadth-first rather than a depth-first search through the QS tree. This would restore the efficiency of alpha-beta pruning, which in a depth-first search in a tree of very uneven depth can be totally destroyed by even an occasional wrong guess for the best move. Of course the search would be a very unstable one, since the very nature of QS is that branches that are not yet explored to their full depth have scores that are totally meaningless. But I expect nevertheless very superior performance from ID compared to depth-first, since many very undeep branches will be quickly brought within the horizon, narrowing the window and making the very deep branches (which often lead way outside the window) manageable.

One would have to do minimax and alpha-beta a bit different from usual, though, since a very high but meanigless score would be no reason to carry out a beta cutoff: in QS the score is likely to be revised at larger depth by an unlimited amount, and this would bring all the moves we skip with a beta cutoff back in view. So the sub-tree search at a depth d would return a score range, rather than a single value, if some of its branches that ran beyond depth d are still relevant (according to alpha-beta). The tentative 'value' (pes, opt) at a certain node (the equivaent of the best-score-so-far of minimax) would then be updated on a move-returned range (a,b) to (max(a,pes), max(b, opt)), and the search window (alpha, beta) would be narrowed to (max(pes, alpha), beta). A beta cutoff would only occur if pes>=beta. After all (aceptable QS) moves have been considered 'opt' really gives the maximum score that can be expected from this node, and the range (pes, opt) is returned. Which, by negamax, is turned into (-opt, -pes) at the parent node. After a beta cutoff 'opt' is meaningless, because the pruned moves might be arbitrary good, and (pes, inf) is returned. (But since pes>=beta no one cares, and at the parent the (-inf, -pes) will be a ove that failed low and can be completely ignored. A move at the enforced horizon that does belong to the QS repertoire would 'score' a range (-inf, +inf), so that a node from which such moves are possible has no upper limit to its score (and the lower limit might be set by the static evaluation).
User avatar
H.G.Muller
 
Posts: 3453
Joined: 16 Nov 2005, 12:02
Location: Diemen, NL

Re: An Introduction to Late Move Reductions

Postby Tord Romstad » 28 Feb 2006, 00:15

H.G.Muller wrote:You make me curious! What in your qsearch is depth-dependent?

Compared to your very interesting thoughts, my reply to your question is unfortunately very boring: I use the depth to decide whether I should search checks in addition to captures. Checks are searched in the first
three plies of the qsearch (by default).

Tord
User avatar
Tord Romstad
 
Posts: 639
Joined: 09 Oct 2004, 12:49
Location: Oslo, Norway


Return to Programming and Technical Discussions

Who is online

Users browsing this forum: No registered users and 12 guests