mirror of
https://github.com/sockspls/badfish
synced 2025-05-02 09:39:36 +00:00
New formula for quiet move scoring: 3 * cmh + 1 * hist
STC LLR: 2.97 (-2.94,2.94) [-1.50,4.50] Total: 45363 W: 8759 L: 8532 D: 28072 LTC LLR: 3.51 (-2.94,2.94) [0.00,4.00] Total: 125092 W: 20032 L: 19468 D: 85592 Bench: 7058819 Resolves #328
This commit is contained in:
parent
ef4d89c9bd
commit
36f2133df3
1 changed files with 1 additions and 1 deletions
|
@ -167,7 +167,7 @@ void MovePicker::score<QUIETS>() {
|
|||
|
||||
for (auto& m : *this)
|
||||
m.value = history[pos.moved_piece(m)][to_sq(m)]
|
||||
+ cmh[pos.moved_piece(m)][to_sq(m)];
|
||||
+ cmh[pos.moved_piece(m)][to_sq(m)] * 3;
|
||||
}
|
||||
|
||||
template<>
|
||||
|
|
Loading…
Add table
Reference in a new issue