X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fevaluate.cpp;h=536137948575c8c4c34b2a103bc453ada91defb6;hb=85f8ee6199f8578fbc082fc0f37e1985813e637a;hp=6d2e8da8d40d17057d8d42bad2ec9e8b9e39f33f;hpb=442c40b43de8ede1e424efa674c8d45322e3b43c;p=stockfish diff --git a/src/evaluate.cpp b/src/evaluate.cpp index 6d2e8da8..53613794 100644 --- a/src/evaluate.cpp +++ b/src/evaluate.cpp @@ -1102,7 +1102,7 @@ Value Eval::evaluate(const Position& pos, int* complexity) { if (useNNUE && !useClassical) { int nnueComplexity; - int scale = 1092 + 106 * pos.non_pawn_material() / 5120; + int scale = 1064 + 106 * pos.non_pawn_material() / 5120; Value optimism = pos.this_thread()->optimism[stm]; Value nnue = NNUE::evaluate(pos, true, &nnueComplexity);