X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fevaluate.h;h=2ab477eced24d62460ac14531449c56fd9b8439a;hp=a222da7361aaeb4e97d349831ef4c511b2b4948c;hb=HEAD;hpb=3c0e86a91e48baea273306e45fb6cf13a59373cf diff --git a/src/evaluate.h b/src/evaluate.h index a222da73..2ab477ec 100644 --- a/src/evaluate.h +++ b/src/evaluate.h @@ -21,32 +21,35 @@ #include +#include "types.h" + namespace Stockfish { class Position; -enum Value : int; namespace Eval { - std::string trace(Position& pos); - Value evaluate(const Position& pos); +std::string trace(Position& pos); + +Value simple_eval(const Position& pos, Color c); +Value evaluate(const Position& pos); - extern std::string currentEvalFileName; +extern std::string currentEvalFileName; - // 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" +// 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" - namespace NNUE { +namespace NNUE { - void init(); - void verify(); +void init(); +void verify(); - } // namespace NNUE +} // namespace NNUE -} // namespace Eval +} // namespace Eval -} // namespace Stockfish +} // namespace Stockfish -#endif // #ifndef EVALUATE_H_INCLUDED +#endif // #ifndef EVALUATE_H_INCLUDED