Rescale UCI scores to PawnValueEg

This is more consistent with what other engines are doing.
Often people thinks that SF's scores are overblown. In the
end, it just boils down to the arbitrary way of rescaling them.

No functional change.
This commit is contained in:
Lucas Braesch
2014-04-06 11:43:30 +02:00
committed by Marco Costalba
parent 64d29a6330
commit 0d8a4c7565
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -939,7 +939,7 @@ Value do_evaluate(const Position& pos) {
// Tracing function definitions
double Tracing::to_cp(Value v) { return double(v) / PawnValueMg; }
double Tracing::to_cp(Value v) { return double(v) / PawnValueEg; }
void Tracing::add_term(int idx, Score wScore, Score bScore) {