X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fmain.cpp;h=765cd2caa52b93d52ff9c7bbe0fb984b43d0676b;hp=1a8309700555bfd61ef916fad97619d48d50386f;hb=ad43ce143664953087b44dd3b4324f77c212bd46;hpb=b5f6c2241b3ad688fb85ea8203a9254aff842f07 diff --git a/src/main.cpp b/src/main.cpp index 1a830970..765cd2ca 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; @@ -41,23 +40,18 @@ int main(int argc, char* argv[]) { Search::init(); Threads.init(); - if (argc < 2) - { - cout << engine_name() << " by " << engine_authors() << endl; + cout << engine_info() << endl; - if (CpuHasPOPCNT) - cout << "Good! CPU has hardware POPCNT." << endl; + if (argc == 1) + uci_loop(); - uci_loop(); // Enter the UCI loop and wait for user input - } else if (string(argv[1]) == "bench") benchmark(argc, argv); else - cout << "Usage: stockfish bench [hash size = 128] [threads = 1] " + cerr << "\nUsage: stockfish bench [hash size = 128] [threads = 1] " << "[limit = 12] [fen positions file = default] " << "[limited by depth, time, nodes or perft = depth]" << endl; Threads.exit(); - return 0; }