X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fevaluate.h;h=2ab477eced24d62460ac14531449c56fd9b8439a;hp=586e3b81f04fe239c58d1c12b384c3610e1a2bdf;hb=HEAD;hpb=f972947492c513b7c0c4046058354b44a9ae9f04 diff --git a/src/evaluate.h b/src/evaluate.h index 586e3b81..2ab477ec 100644 --- a/src/evaluate.h +++ b/src/evaluate.h @@ -20,7 +20,6 @@ #define EVALUATE_H_INCLUDED #include -#include #include "types.h" @@ -30,25 +29,27 @@ class Position; namespace Eval { - std::string trace(Position& pos); - Value evaluate(const Position& pos); +std::string trace(Position& pos); - 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