mirror of
https://github.com/sockspls/badfish
synced 2025-07-11 19:49:14 +00:00
Sort moves partially: linear depth dependence
STC: http://tests.stockfishchess.org/tests/view/58f98d260ebc59035df33d5e LLR: 2.96 (-2.94,2.94) [0.00,5.00] Total: 58958 W: 10862 L: 10485 D: 37611 LTC: http://tests.stockfishchess.org/tests/view/58fa45d40ebc59035df33d86 LLR: 2.95 (-2.94,2.94) [0.00,5.00] Total: 18607 W: 2427 L: 2251 D: 13929 Bench: 6065528 Closes #1079
This commit is contained in:
parent
0868de705d
commit
6b9a22b40d
1 changed files with 1 additions and 2 deletions
|
@ -242,8 +242,7 @@ Move MovePicker::next_move(bool skipQuiets) {
|
|||
endMoves = generate<QUIETS>(pos, cur);
|
||||
score<QUIETS>();
|
||||
|
||||
partial_insertion_sort(cur, endMoves,
|
||||
depth < 3 * ONE_PLY ? 0 : INT_MIN);
|
||||
partial_insertion_sort(cur, endMoves, -4000 * depth / ONE_PLY);
|
||||
++stage;
|
||||
|
||||
case QUIET:
|
||||
|
|
Loading…
Add table
Reference in a new issue