countermove heuristic

Discussion of chess software programming and technical issues.

Moderator: Ras

flok

countermove heuristic

Post by flok »

Hi,

I'm looking at the countermove heuristic (http://chessprogramming.wikispaces.com/ ... +Heuristic).

A question: this table, for what period is it valid? only while searching the current move? or maybe only for the pv it is in?
To say it differently: when must it be cleared?
User avatar
cdani
Posts: 2204
Joined: Sat Jan 18, 2014 10:24 am
Location: Andorra

Re: countermove heuristic

Post by cdani »

I have several types of countermove lists and refutation lists, and I clear them on ucinewgame or at the start of the search, but the ones I clear at the start of the search probably is not worth it.
D Sceviour
Posts: 570
Joined: Mon Jul 20, 2015 5:06 pm

Re: countermove heuristic

Post by D Sceviour »

flok wrote:Hi,

I'm looking at the countermove heuristic (http://chessprogramming.wikispaces.com/ ... +Heuristic).

A question: this table, for what period is it valid? only while searching the current move? or maybe only for the pv it is in?
To say it differently: when must it be cleared?
One thing I found with the 6x64 array is that it too small for today’s depths. The array quickly becomes saturated and worthless. Maybe it should be cleared frequently.