]> git.sesse.net Git - stockfish/blobdiff - src/evaluate.cpp
Update default net to nn-62ef826d1a6d.nnue
[stockfish] / src / evaluate.cpp
index 6ee536216d0a5cbef2f5e469a5cceacbbb964f15..a1b04316e79b52f3ffb474596948ef1617123cf2 100644 (file)
@@ -1037,7 +1037,7 @@ Value Eval::evaluate(const Position& pos) {
       // Scale and shift NNUE for compatibility with search and classical evaluation
       auto  adjusted_NNUE = [&](){
          int mat = pos.non_pawn_material() + PawnValueMg * pos.count<PAWN>();
-         return NNUE::evaluate(pos) * (720 + mat / 32) / 1024 + Tempo;
+         return NNUE::evaluate(pos) * (679 + mat / 32) / 1024 + Tempo;
       };
 
       // If there is PSQ imbalance use classical eval, with small probability if it is small