Clean-up skipEarlyPruning (#921)

make skipEarlyPruning a search argument instead of managing this by hand.

Verified for no regression at STC:
LLR: 2.96 (-2.94,2.94) [-3.00,1.00]
Total: 96754 W: 17089 L: 17095 D: 62570

No functional change.
This commit is contained in:
Joost VandeVondele
2016-12-11 20:05:25 +01:00
committed by Marco Costalba
parent 589049a0e5
commit 1b62d413c1
2 changed files with 13 additions and 23 deletions
+1 -2
View File
@@ -38,15 +38,14 @@ namespace Search {
struct Stack {
Move* pv;
CounterMoveStats* counterMoves;
int ply;
Move currentMove;
Move excludedMove;
Move killers[2];
Value staticEval;
Value history;
bool skipEarlyPruning;
int moveCount;
CounterMoveStats* counterMoves;
};