Skip to content

Commit dad7f7b

Browse files
Double the weight of quiet history in move ordering (#854)
STC Elo | 3.38 +- 2.20 (95%) SPRT | 8.0+0.08s Threads=1 Hash=16MB LLR | 3.22 (-2.25, 2.89) [0.00, 3.00] Games | N: 25924 W: 6712 L: 6460 D: 12752 Penta | [92, 2997, 6538, 3237, 98] https://recklesschess.space/test/13129/ LTC Elo | 1.94 +- 1.52 (95%) SPRT | 40.0+0.40s Threads=1 Hash=64MB LLR | 2.92 (-2.25, 2.89) [0.00, 3.00] Games | N: 45950 W: 11511 L: 11254 D: 23185 Penta | [22, 5060, 12551, 5323, 19] https://recklesschess.space/test/13130/ Bench: 2786596
1 parent 12d4beb commit dad7f7b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/movepick.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ impl MovePicker {
226226
let mv = entry.mv;
227227
let pt = td.board.piece_on(mv.from()).piece_type();
228228

229-
entry.score = td.quiet_history.get(threats, side, mv)
229+
entry.score = 2 * td.quiet_history.get(threats, side, mv)
230230
+ td.conthist(ply, 1, mv)
231231
+ td.conthist(ply, 2, mv)
232232
+ td.conthist(ply, 4, mv)

0 commit comments

Comments
 (0)