We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e60c4a2 commit 069362eCopy full SHA for 069362e
movepick.cpp
@@ -24,7 +24,7 @@ namespace engine::movepick {
24
else if (move == killerMoves[ply][1])
25
score = 8000;
26
else
27
- score = historyHeuristic[move.from().index()][move.to().index()];
+ score = historyHeuristic[move.from()][move.to()];
28
29
scoredMoves.emplace_back(move, score);
30
}
0 commit comments