Skip to content

Commit

Permalink
Fairy-Stockfish 11.1
Browse files Browse the repository at this point in the history
bench: 4801778
  • Loading branch information
ianfab committed May 24, 2020
1 parent 098ba9d commit 8fc7f10
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/misc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ namespace {

/// Version number. If Version is left empty, then compile date in the format
/// DD-MM-YY and show in engine_info.
const string Version = "";
const string Version = "11.1";

/// Our fancy logging facility. The trick here is to replace cin.rdbuf() and
/// cout.rdbuf() with two Tie objects that tie cin and cout to a file stream. We
Expand Down Expand Up @@ -142,6 +142,10 @@ const string engine_info(bool to_uci) {
ss << setw(2) << day << setw(2) << (1 + months.find(month) / 4) << year.substr(2);
}

#ifdef LARGEBOARDS
ss << " LB";
#endif

ss << (Is64Bit ? " 64" : "")
<< (HasPext ? " BMI2" : (HasPopCnt ? " POPCNT" : ""))
<< (to_uci ? "\nid author ": " by ")
Expand Down

0 comments on commit 8fc7f10

Please sign in to comment.