]> git.sesse.net Git - stockfish/blobdiff - src/material.cpp
Small simplification in space eval scoring
[stockfish] / src / material.cpp
index 22953cff6d8d4328706cb1ffe4299d46214d2c05..abad2abb923e053291bb22e41d21585b8573e47d 100644 (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