X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fevaluate.h;fp=src%2Fevaluate.h;h=2ab477eced24d62460ac14531449c56fd9b8439a;hp=abdbef9010d9db299c91c9bfdd56271227844d9e;hb=bfee35f930bac95b646b1821339f342c70aac2f6;hpb=487c21b1aa64dcc09dd95b845a66f39ae3c3754e diff --git a/src/evaluate.h b/src/evaluate.h index abdbef90..2ab477ec 100644 --- a/src/evaluate.h +++ b/src/evaluate.h @@ -20,7 +20,6 @@ #define EVALUATE_H_INCLUDED #include -#include #include "types.h" @@ -30,26 +29,27 @@ class Position; namespace Eval { - std::string trace(Position& pos); - Value evaluate(const Position& pos); +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-c38c3d8d3920.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" - void init(); - void verify(); +namespace NNUE { - } // namespace NNUE +void init(); +void verify(); -} // namespace Eval +} // namespace NNUE -} // namespace Stockfish +} // namespace Eval -#endif // #ifndef EVALUATE_H_INCLUDED +} // namespace Stockfish + +#endif // #ifndef EVALUATE_H_INCLUDED