mirror of
https://github.com/HChaZZY/Stockfish.git
synced 2025-12-26 20:16:14 +08:00
Replace "use_raw_nnue_eval" with an uci option "Use NNUE pure"
This commit is contained in:
@@ -26,11 +26,20 @@
|
||||
class Position;
|
||||
|
||||
namespace Eval {
|
||||
enum struct UseNNUEMode
|
||||
{
|
||||
False,
|
||||
True
|
||||
|
||||
#ifdef EVAL_LEARN
|
||||
,Pure
|
||||
#endif
|
||||
};
|
||||
|
||||
std::string trace(const Position& pos);
|
||||
Value evaluate(const Position& pos);
|
||||
|
||||
extern bool useNNUE;
|
||||
extern UseNNUEMode useNNUE;
|
||||
extern std::string eval_file_loaded;
|
||||
void init_NNUE();
|
||||
void verify_NNUE();
|
||||
|
||||
Reference in New Issue
Block a user