Skip to content

Commit

Permalink
- Remove quiet tt move extensions : official-stockfish/Stockfish@c115e51
Browse files Browse the repository at this point in the history
  • Loading branch information
yaneurao committed Feb 15, 2024
1 parent a3db1b8 commit e362c64
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions source/engine/yaneuraou-engine/yaneuraou-search.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2716,17 +2716,6 @@ Value search(Position& pos, Stack* ss, Value alpha, Value beta, Depth depth, boo
)
extension = 1;

// Quiet ttMove extensions (~1 Elo)
// 駒を取らない置換表の指し手に関する延長

// PV nodeでquietなttは良い指し手のはずだから延長するというもの。

else if (PvNode
&& move == ttMove
&& move == ss->killers[0]
&& (*contHist[0])(movedPiece, to_sq(move)) >= 4194)
extension = 1;

// Recapture extensions (~1 Elo)
else if (PvNode && move == ttMove && to_sq(move) == prevSq
&& captureHistory(movedPiece, to_sq(move), type_of(pos.piece_on(to_sq(move))))
Expand Down

0 comments on commit e362c64

Please sign in to comment.