]> git.sesse.net Git - stockfish/blobdiff - src/evaluate.cpp
Use less reduction for escaping moves
[stockfish] / src / evaluate.cpp
index 0657088f19c936a66872b23e528518861a60f139..85700bcc60dc2b5d26251c9ebec4d8336a2c6cd9 100644 (file)
@@ -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<ALL_PIECES>() > 7 && abs(psq) > 1760);