File tree Expand file tree Collapse file tree 2 files changed +1
-6
lines changed Expand file tree Collapse file tree 2 files changed +1
-6
lines changed Original file line number Diff line number Diff line change @@ -1006,8 +1006,6 @@ Value Search::Worker::search(
1006
1006
movedPiece = pos.moved_piece (move);
1007
1007
givesCheck = pos.gives_check (move);
1008
1008
1009
- (ss + 1 )->quietMoveStreak = (!capture && !givesCheck) ? (ss->quietMoveStreak + 1 ) : 0 ;
1010
-
1011
1009
// Calculate new depth for this move
1012
1010
newDepth = depth - 1 ;
1013
1011
@@ -1178,7 +1176,7 @@ Value Search::Worker::search(
1178
1176
1179
1177
// These reduction adjustments have no proven non-linear scaling
1180
1178
1181
- r += 650 ; // Base reduction offset to compensate for other tweaks
1179
+ r += 1000 ; // Base reduction offset to compensate for other tweaks
1182
1180
r -= moveCount * 69 ;
1183
1181
r -= std::abs (correctionValue) / 27160 ;
1184
1182
@@ -1194,8 +1192,6 @@ Value Search::Worker::search(
1194
1192
if ((ss + 1 )->cutoffCnt > 2 )
1195
1193
r += 935 + allNode * 763 ;
1196
1194
1197
- r += (ss + 1 )->quietMoveStreak * 51 ;
1198
-
1199
1195
// For first picked move (ttMove) reduce reduction
1200
1196
if (move == ttData.move )
1201
1197
r -= 2043 ;
Original file line number Diff line number Diff line change @@ -75,7 +75,6 @@ struct Stack {
75
75
bool ttHit;
76
76
int cutoffCnt;
77
77
int reduction;
78
- int quietMoveStreak;
79
78
};
80
79
81
80
You can’t perform that action at this time.
0 commit comments