X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fevaluate.h;h=6e5db6a302cf4066ca749a0e51db4ba6354f1855;hp=c723bd8fa1d123d7e63946f5dc44f655e46b27eb;hb=6328135264d3b13a2cef3f0c835a27192cae0f40;hpb=7135678f71b7f6ee32e92b8dbef2b16b403d8ea9 diff --git a/src/evaluate.h b/src/evaluate.h index c723bd8f..6e5db6a3 100644 --- a/src/evaluate.h +++ b/src/evaluate.h @@ -32,20 +32,18 @@ namespace Eval { extern bool useNNUE; extern std::string eval_file_loaded; - void init_NNUE(); - void verify_NNUE(); // 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-03744f8d56d8.nnue" + #define EvalFileDefaultName "nn-2eb2e0707c2b.nnue" namespace NNUE { Value evaluate(const Position& pos); - Value compute_eval(const Position& pos); - void update_eval(const Position& pos); - bool load_eval(std::string streamName, std::istream& stream); + bool load_eval(std::string name, std::istream& stream); + void init(); + void verify(); } // namespace NNUE