X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fevaluate.h;h=2ab477eced24d62460ac14531449c56fd9b8439a;hp=5238cb81c5440fbc80820f14bf524dee405d491f;hb=HEAD;hpb=876906965b8d552866486c0e6eda1184fdb1d636 diff --git a/src/evaluate.h b/src/evaluate.h index 5238cb81..2ab477ec 100644 --- a/src/evaluate.h +++ b/src/evaluate.h @@ -20,7 +20,6 @@ #define EVALUATE_H_INCLUDED #include -#include #include "types.h" @@ -30,34 +29,27 @@ class Position; namespace Eval { - std::string trace(Position& pos); - Value evaluate(const Position& pos, int* complexity = nullptr); +std::string trace(Position& pos); - extern bool useNNUE; - extern std::string currentEvalFileName; +Value simple_eval(const Position& pos, Color c); +Value evaluate(const Position& pos); - // 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-52471d67216a.nnue" +extern std::string currentEvalFileName; - namespace 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-0000000000a0.nnue" - std::string trace(Position& pos); - Value evaluate(const Position& pos, bool adjusted = false, int* complexity = nullptr); - void hint_common_parent_position(const Position& pos); +namespace NNUE { - void init(); - void verify(); +void init(); +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 NNUE +} // namespace Eval -} // namespace Eval +} // namespace Stockfish -} // namespace Stockfish - -#endif // #ifndef EVALUATE_H_INCLUDED +#endif // #ifndef EVALUATE_H_INCLUDED