Post-merge fixes.

This commit is contained in:
Tomasz Sobczyk
2021-04-18 20:33:49 +02:00
parent 08e255960d
commit 19f712cdbb
33 changed files with 372 additions and 768 deletions
+1 -4
View File
@@ -45,9 +45,6 @@ namespace Stockfish {
extern vector<string> setup_bench(const Position&, istream&);
// FEN string of the initial position, normal chess
const char* StartFEN = "rnbqkbnr/pppppppp/8/8/8/8/PPPPPPPP/RNBQKBNR w KQkq - 0 1";
namespace {
// position() is called when engine receives the "position" UCI command.
@@ -93,7 +90,7 @@ namespace {
Position p;
p.set(pos.fen(), Options["UCI_Chess960"], &states->back(), Threads.main());
Eval::NNUE::verify_eval_file_loaded();
Eval::NNUE::verify();
sync_cout << "\n" << Eval::trace(p) << sync_endl;
}