mirror of
https://github.com/sockspls/badfish
synced 2025-05-01 01:03:09 +00:00
Cleanup code after removal of classical evaluation
This includes the following changes: - Remove declaration of removed global variable - Adapt string that mentions removed UCI option closes https://github.com/official-stockfish/Stockfish/pull/4675 No functional change
This commit is contained in:
parent
af110e02ec
commit
f972947492
2 changed files with 1 additions and 2 deletions
|
@ -119,7 +119,7 @@ namespace Eval {
|
|||
{
|
||||
|
||||
string msg1 = "Network evaluation parameters compatible with the engine must be available.";
|
||||
string msg2 = "The option is set to true, but the network file " + eval_file + " was not loaded successfully.";
|
||||
string msg2 = "The network file " + eval_file + " was not loaded successfully.";
|
||||
string msg3 = "The UCI option EvalFile might need to specify the full path, including the directory name, to the network file.";
|
||||
string msg4 = "The default net can be downloaded from: https://tests.stockfishchess.org/api/nn/" + std::string(EvalFileDefaultName);
|
||||
string msg5 = "The engine will be terminated now.";
|
||||
|
|
|
@ -33,7 +33,6 @@ namespace Eval {
|
|||
std::string trace(Position& pos);
|
||||
Value evaluate(const Position& pos);
|
||||
|
||||
extern bool useNNUE;
|
||||
extern std::string currentEvalFileName;
|
||||
|
||||
// The default net name MUST follow the format nn-[SHA256 first 12 digits].nnue
|
||||
|
|
Loading…
Add table
Reference in a new issue