X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fsearch.cpp;h=0e249705fa59a89e00d1f689d714bf33bbe024f9;hp=53a8bec9b15751981c22354e4a02525274c79887;hb=2bb555025fc94fde3972b644bdbd27f245475213;hpb=22ede4442cd285d7365b9497c3be65fb2c66b4be diff --git a/src/search.cpp b/src/search.cpp index 53a8bec9..0e249705 100644 --- a/src/search.cpp +++ b/src/search.cpp @@ -484,7 +484,7 @@ bool think(Position& pos, bool infinite, bool ponder, int time[], int increment[ std::string name = Options["Search Log Filename"].value(); LogFile.open(name.c_str(), std::ios::out | std::ios::app); - LogFile << "Searching: " << pos.to_fen(Options["UCI_Chess960"].value()) + LogFile << "Searching: " << pos.to_fen() << "\ninfinite: " << infinite << " ponder: " << ponder << " time: " << myTime @@ -570,7 +570,7 @@ namespace { Iteration = 1; // Send initial RootMoveList scoring (iteration 1) - cout << set960(Options["UCI_Chess960"].value()) // Is enough to set once at the beginning + cout << set960(pos.is_chess960()) // Is enough to set once at the beginning << "info depth " << Iteration << "\n" << rml[0].pv_info_to_uci(pos, alpha, beta) << endl;