X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fmaterial.h;fp=src%2Fmaterial.h;h=581e7585722691a3c808775a52c970fa4217d63d;hp=754d05230093ed22db2be7045e46fe0f6811e9fc;hb=4c9b42316112efc7383c27570102d5d528d6af0a;hpb=2416242c966bfccd5a779e037dfe0d2d4cd8f3fe diff --git a/src/material.h b/src/material.h index 754d0523..581e7585 100644 --- a/src/material.h +++ b/src/material.h @@ -39,7 +39,6 @@ namespace Material { struct Entry { Score imbalance() const { return make_score(value, value); } - Score space_weight() const { return spaceWeight; } Phase game_phase() const { return gamePhase; } bool specialized_eval_exists() const { return evaluationFunction != NULL; } Value evaluate(const Position& pos) const { return (*evaluationFunction)(pos); } @@ -61,7 +60,6 @@ struct Entry { uint8_t factor[COLOR_NB]; EndgameBase* evaluationFunction; EndgameBase* scalingFunction[COLOR_NB]; - Score spaceWeight; Phase gamePhase; };