Revert Chess960 fix

Will be substituted by a better next patch.

Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
Marco Costalba
2011-01-03 22:31:17 +01:00
parent d5f2e32b5c
commit 2bb555025f
3 changed files with 15 additions and 6 deletions
+2 -2
View File
@@ -484,7 +484,7 @@ bool think(Position& pos, bool infinite, bool ponder, int time[], int increment[
std::string name = Options["Search Log Filename"].value<std::string>();
LogFile.open(name.c_str(), std::ios::out | std::ios::app);
LogFile << "Searching: " << pos.to_fen(Options["UCI_Chess960"].value<bool>())
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<bool>()) // 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;