X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fevaluate.h;h=1ac224b69be2b38dffdad4070dee6eeb94b2aafa;hb=dabaf2220fe0c77400a5f71a91952f510e6a126b;hp=4e6bb1a6d25a444a46f40eaac39e120a9228e636;hpb=adfb23c029e54c7522aadca1adf3e0b15fdcebcd;p=stockfish diff --git a/src/evaluate.h b/src/evaluate.h index 4e6bb1a6..1ac224b6 100644 --- a/src/evaluate.h +++ b/src/evaluate.h @@ -30,7 +30,7 @@ class Position; namespace Eval { - std::string trace(const Position& pos); + std::string trace(Position& pos); Value evaluate(const Position& pos); extern bool useNNUE; @@ -39,17 +39,20 @@ 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-50144f835024.nnue" + #define EvalFileDefaultName "nn-46832cfbead3.nnue" namespace NNUE { + std::string trace(Position& pos); Value evaluate(const Position& pos, bool adjusted = false); - bool load_eval(std::string name, std::istream& stream); - bool save_eval(std::ostream& stream); + void init(); - void export_net(const std::optional& filename); void verify(); + bool load_eval(std::string name, std::istream& stream); + bool save_eval(std::ostream& stream); + bool save_eval(const std::optional& filename); + } // namespace NNUE } // namespace Eval