File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -110,7 +110,7 @@ void MovePicker::score() {
110
110
+ 2 * (*continuationHistory[1 ])[pos.moved_piece (m)][to_sq (m)]
111
111
+ 2 * (*continuationHistory[3 ])[pos.moved_piece (m)][to_sq (m)]
112
112
+ (*continuationHistory[5 ])[pos.moved_piece (m)][to_sq (m)]
113
- + (ply < MAX_LPH ? 4 * (*lowPlyHistory)[ply][from_to (m)] : 0 );
113
+ + (ply < MAX_LPH ? std::min ( 4 , depth / 3 ) * (*lowPlyHistory)[ply][from_to (m)] : 0 );
114
114
115
115
else // Type == EVASIONS
116
116
{
Original file line number Diff line number Diff line change @@ -971,7 +971,7 @@ namespace {
971
971
contHist,
972
972
countermove,
973
973
ss->killers ,
974
- depth > 12 ? ss->ply : MAX_PLY );
974
+ ss->ply );
975
975
976
976
value = bestValue;
977
977
singularQuietLMR = moveCountPruning = false ;
You can’t perform that action at this time.
0 commit comments