Skip to content

Commit

Permalink
New formula for quiet move scoring: 3 * cmh + 1 * hist
Browse files Browse the repository at this point in the history
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
  • Loading branch information
mstembera authored and zamar committed Apr 10, 2015
1 parent ef4d89c commit 36f2133
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/movepick.cpp
Expand Up @@ -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<>
Expand Down

0 comments on commit 36f2133

Please sign in to comment.