X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fevaluate.cpp;h=85700bcc60dc2b5d26251c9ebec4d8336a2c6cd9;hb=f436bf77ad2eb42228747d9aa58eeb7403e23d49;hp=0657088f19c936a66872b23e528518861a60f139;hpb=232bf19be43117cdecea054c9a825735f0b47842;p=stockfish diff --git a/src/evaluate.cpp b/src/evaluate.cpp index 0657088f..85700bcc 100644 --- a/src/evaluate.cpp +++ b/src/evaluate.cpp @@ -1054,7 +1054,7 @@ Value Eval::evaluate(const Position& pos, int* complexity) { Color stm = pos.side_to_move(); Value psq = pos.psq_eg_stm(); - // We use the much less accurate but faster Classical eval when the NNUE + // We use the much less accurate but faster Classical eval when the NNUE // option is set to false. Otherwise we use the NNUE eval unless the // PSQ advantage is decisive and several pieces remain (~3 Elo) bool useClassical = !useNNUE || (pos.count() > 7 && abs(psq) > 1760);