Remove m512_hadd128x16_interleave()

This functionality is no longer used anywhere.

closes https://github.com/official-stockfish/Stockfish/pull/5357

No functional change
This commit is contained in:
mstembera
2024-06-04 17:59:47 -07:00
committed by Joost VandeVondele
parent 02ff76630b
commit 21ba32af6d
3 changed files with 2 additions and 35 deletions
+1 -1
View File
@@ -1660,7 +1660,7 @@ Value Search::Worker::qsearch(Position& pos, Stack* ss, Value alpha, Value beta,
return bestValue;
}
Depth Search::Worker::reduction(bool i, Depth d, int mn, int delta) {
Depth Search::Worker::reduction(bool i, Depth d, int mn, int delta) const {
int reductionScale = reductions[d] * reductions[mn];
return (reductionScale + 1222 - delta * 733 / rootDelta) / 1024 + (!i && reductionScale > 1231);
}