Rename score to value in ExtMove

We use 'score' for the value mid-endgame pair.

No functional change.
This commit is contained in:
Marco Costalba
2014-03-23 08:52:42 +01:00
parent 441a34a1c6
commit f12449d492
2 changed files with 18 additions and 18 deletions

View File

@@ -322,11 +322,11 @@ extern Value PieceValue[PHASE_NB][PIECE_NB];
struct ExtMove {
Move move;
int score;
Value value;
};
inline bool operator<(const ExtMove& f, const ExtMove& s) {
return f.score < s.score;
return f.value < s.value;
}
inline Color operator~(Color c) {