currently i reach a prune rate of 1 to 3 % in middle game,
is this low, should it be more?
Merry Christmas

Srdja
Moderator: Ras
Can you clarify "Delta Pruning" with some pseudo-code ? Just so we make sure we are talking about the same thing (there are several ways prune in a QS).smatovic wrote:Am working on a Delta Pruning implementation in Quiscence Search,
currently i reach a prune rate of 1 to 3 % in middle game,
is this low, should it be more?
Merry Christmas
Srdja
sureCan you clarify "Delta Pruning" with some pseudo-code ?
Code: Select all
iif (incheck == false && capturescore > 0 && boardscore < alpha - capturescore && piececount >= 16)
return alpha;
OK so:smatovic wrote:sureCan you clarify "Delta Pruning" with some pseudo-code ?
Code: Select all
iif (incheck == false && capturescore > 0 && boardscore < alpha - capturescore && piececount >= 16) return alpha;
With SEE Pruning you mean SEE score < 0 for captures?But yes, I would say that this pruning will not reduce massively your node count. I think what is far more impoerant is a good SEE pruning (I do it at both PV and non PV nodes and it reduces the node count massively for rather little tactical cost).
Yes. I do SEE pruning when:smatovic wrote:Thanks for the margin hint Lucas.
With SEE Pruning you mean SEE score < 0 for captures?But yes, I would say that this pruning will not reduce massively your node count. I think what is far more impoerant is a good SEE pruning (I do it at both PV and non PV nodes and it reduces the node count massively for rather little tactical cost).
--
Srdja
I don't call it delta pruning. Maybe it's something from the chess programming wiki. Although I remember that Fruit called it delta pruning. Futility pruning is a better name IMO.elcabesa wrote:I wonder why it's called Delta pruning, it lloks to me very similar to Futility pruning, am I wrong?
Here is one possible explanation for the origin of the name "delta pruning".lucasart wrote:I don't call it delta pruning. Maybe it's something from the chess programming wiki. Although I remember that Fruit called it delta pruning. Futility pruning is a better name IMO.elcabesa wrote:I wonder why it's called Delta pruning, it lloks to me very similar to Futility pruning, am I wrong?