]> git.sesse.net Git - stockfish/blobdiff - src/evaluate.h
Use block sparse input for the first layer.
[stockfish] / src / evaluate.h
index 6184607330048de284686a76c7092539b3ba2e9f..94cd42cc67a5deb4da510bd828e462bdf6d6614a 100644 (file)
@@ -31,7 +31,7 @@ class Position;
 namespace Eval {
 
   std::string trace(Position& pos);
-  Value evaluate(const Position& pos, int* complexity = nullptr);
+  Value evaluate(const Position& pos);
 
   extern bool useNNUE;
   extern std::string currentEvalFileName;
@@ -39,7 +39,7 @@ namespace Eval {
   // The default net name MUST follow the format nn-[SHA256 first 12 digits].nnue
   // for the build process (profile-build and fishtest) to work. Do not change the
   // name of the macro, as it is used in the Makefile.
-  #define EvalFileDefaultName   "nn-dabb1ed23026.nnue"
+  #define EvalFileDefaultName   "nn-fdc1d0fe6455.nnue"
 
   namespace NNUE {