X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fevaluate.h;h=1ac224b69be2b38dffdad4070dee6eeb94b2aafa;hb=dabaf2220fe0c77400a5f71a91952f510e6a126b;hp=128a7caefcc13611f05437d19e8e4e42207ba354;hpb=58054fd0fa6294510fc8cf76b0ba9673d5094c10;p=stockfish diff --git a/src/evaluate.h b/src/evaluate.h index 128a7cae..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-62ef826d1a6d.nnue" + #define EvalFileDefaultName "nn-46832cfbead3.nnue" namespace NNUE { - Value evaluate(const Position& pos); - bool load_eval(std::string name, std::istream& stream); - bool save_eval(std::ostream& stream); + std::string trace(Position& pos); + Value evaluate(const Position& pos, bool adjusted = false); + 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