]> git.sesse.net Git - stockfish/commitdiff
Use lowply-history also on low depths
authorpb00067 <pb00067@PHXL0356.wp.lan>
Sat, 6 Jun 2020 10:56:38 +0000 (12:56 +0200)
committerJoost VandeVondele <Joost.VandeVondele@gmail.com>
Sat, 6 Jun 2020 14:18:42 +0000 (16:18 +0200)
STC:
https://tests.stockfishchess.org/tests/view/5ed75078f29b40b0fc95a8b9
LLR: 2.93 (-2.94,2.94) {-0.50,1.50}
Total: 73928 W: 14301 L: 14005 D: 45622
Ptnml(0-2): 1243, 8572, 17096, 8752, 1301

LTC:
https://tests.stockfishchess.org/tests/view/5ed895e0f29b40b0fc95a976
LLR: 2.93 (-2.94,2.94) {0.25,1.75}
Total: 154848 W: 19684 L: 19074 D: 116090
Ptnml(0-2): 1048, 14108, 46627, 14468, 1173

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

bench: 4582693

src/movepick.cpp
src/search.cpp

index e26f42ef98cdef9ba5dba7b1bfbe8682356bcd41..78102c52a34376ecc1a3584cbf671b2356a830e9 100644 (file)
@@ -110,7 +110,7 @@ void MovePicker::score() {
                    + 2 * (*continuationHistory[1])[pos.moved_piece(m)][to_sq(m)]
                    + 2 * (*continuationHistory[3])[pos.moved_piece(m)][to_sq(m)]
                    +     (*continuationHistory[5])[pos.moved_piece(m)][to_sq(m)]
                    + 2 * (*continuationHistory[1])[pos.moved_piece(m)][to_sq(m)]
                    + 2 * (*continuationHistory[3])[pos.moved_piece(m)][to_sq(m)]
                    +     (*continuationHistory[5])[pos.moved_piece(m)][to_sq(m)]
-                   + (ply < MAX_LPH ?  4 * (*lowPlyHistory)[ply][from_to(m)] : 0);
+                   + (ply < MAX_LPH ? std::min(4, depth / 3) * (*lowPlyHistory)[ply][from_to(m)] : 0);
 
       else // Type == EVASIONS
       {
 
       else // Type == EVASIONS
       {
index 35110538170c5cb03732a955b1cbe4b616eb7dc2..efa7b9c5db9110fce4ef3a1b2d13fb105dd4c303 100644 (file)
@@ -971,7 +971,7 @@ moves_loop: // When in check, search starts from here
                                       contHist,
                                       countermove,
                                       ss->killers,
                                       contHist,
                                       countermove,
                                       ss->killers,
-                                      depth > 12 ? ss->ply : MAX_PLY);
+                                      ss->ply);
 
     value = bestValue;
     singularQuietLMR = moveCountPruning = false;
 
     value = bestValue;
     singularQuietLMR = moveCountPruning = false;