]> git.sesse.net Git - stockfish/blobdiff - src/evaluate.h
Update default net to nn-0000000000a0.nnue
[stockfish] / src / evaluate.h
index 586e3b81f04fe239c58d1c12b384c3610e1a2bdf..26f2fc4f985a776c3359045c52fd2b7b42eb446f 100644 (file)
@@ -20,7 +20,6 @@
 #define EVALUATE_H_INCLUDED
 
 #include <string>
-#include <optional>
 
 #include "types.h"
 
@@ -31,6 +30,8 @@ class Position;
 namespace Eval {
 
   std::string trace(Position& pos);
+
+  Value simple_eval(const Position& pos, Color c);
   Value evaluate(const Position& pos);
 
   extern std::string currentEvalFileName;
@@ -38,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-c38c3d8d3920.nnue"
+  #define EvalFileDefaultName   "nn-0000000000a0.nnue"
 
   namespace NNUE {