X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fmain.cpp;h=94ee076be147cf5513950a57fe6f89eb2b183bd8;hb=ad4eac376fdc7a5ccc794416d0295a38a31ddcc2;hp=210b8363345ac58b77ae0d9dc81b3ff00d066617;hpb=0228ff9ca04fad817de5f1e7a7890908a3b0013e;p=stockfish diff --git a/src/main.cpp b/src/main.cpp index 210b8363..94ee076b 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -18,7 +18,7 @@ */ // To profile with callgrind uncomment following line -#define USE_CALLGRIND +//#define USE_CALLGRIND //// @@ -75,11 +75,11 @@ int main(int argc, char *argv[]) { } // Print copyright notice - cout << engine_name() << ". Copyright (C) " - << "2004-2009 Tord Romstad, Marco Costalba. " << endl; + cout << engine_name() + << ". By Tord Romstad, Marco Costalba, Joona Kiiski." << endl; - // FIXME ONLY FOR DEBUG, REMOVE BEFORE RELEASE - cout << "Support for POPCNT is " << CpuHasPOPCNT << endl; + if (CpuHasPOPCNT) + cout << "Good! CPU has hardware POPCNT. We will use it." << endl; // Enter UCI mode uci_main_loop();