X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fmain.cpp;h=4b716dded6ec859ca24e7afa67216dcdd4865e0d;hp=e67adc69bb647a190b74bd4e788bab66f364c568;hb=786564068bb22c750c41649733d4aa6733accaec;hpb=c1c09844525c764f869b29360519808aab5a7069 diff --git a/src/main.cpp b/src/main.cpp index e67adc69..4b716dde 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -50,12 +50,10 @@ int main(int argc, char* argv[]) { // Startup initializations init_bitboards(); - init_uci_options(); Position::init_zobrist(); Position::init_piece_square_tables(); init_eval(1); init_kpk_bitbase(); - init_search(); init_threads(); #ifdef USE_CALLGRIND @@ -65,7 +63,7 @@ int main(int argc, char* argv[]) { if (argc < 2) { // Print copyright notice - cout << engine_name() << " by " << engine_author() << endl; + cout << engine_name() << " by " << engine_authors() << endl; if (CpuHasPOPCNT) cout << "Good! CPU has hardware POPCNT." << endl;