X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fmain.cpp;h=9b1b5ecfe4f373ce3fc6849cb64a0b5c86e481e0;hp=1a8309700555bfd61ef916fad97619d48d50386f;hb=0a6532a39d2e2cfd92ba0a2c4fa8c6ad6c29b581;hpb=20a6f99cdb87d5877d490abceb795f7e68c5b4a6 diff --git a/src/main.cpp b/src/main.cpp index 1a830970..9b1b5ecf 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -21,11 +21,10 @@ #include #include "bitboard.h" -#include "evaluate.h" +#include "misc.h" #include "position.h" -#include "thread.h" #include "search.h" -#include "ucioption.h" +#include "thread.h" using namespace std; @@ -44,11 +43,7 @@ int main(int argc, char* argv[]) { if (argc < 2) { cout << engine_name() << " by " << engine_authors() << endl; - - if (CpuHasPOPCNT) - cout << "Good! CPU has hardware POPCNT." << endl; - - uci_loop(); // Enter the UCI loop and wait for user input + uci_loop(); } else if (string(argv[1]) == "bench") benchmark(argc, argv);