Small simplification in space eval scoring

No functional change.
This commit is contained in:
Marco Costalba
2013-07-19 11:00:31 +02:00
parent 99e547f4cb
commit ee5514b8fd
3 changed files with 6 additions and 6 deletions

View File

@@ -259,7 +259,7 @@ Entry* probe(const Position& pos, Table& entries, Endgames& endgames) {
int minorPieceCount = pos.count<KNIGHT>(WHITE) + pos.count<BISHOP>(WHITE)
+ pos.count<KNIGHT>(BLACK) + pos.count<BISHOP>(BLACK);
e->spaceWeight = minorPieceCount * minorPieceCount;
e->spaceWeight = make_score(minorPieceCount * minorPieceCount, 0);
}
// Evaluate the material imbalance. We use PIECE_TYPE_NONE as a place holder