X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fmain.cpp;h=fa821151359ac31cb904ebfd66226ae89d49955a;hp=de77e5823eff1a756f249ae1119493d441890921;hb=611a29f7675d3e5dc7e5e2b63cca9274eae05578;hpb=6afcfd00f29973f3169dae18aa439f90c2614256 diff --git a/src/main.cpp b/src/main.cpp index de77e582..fa821151 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -30,7 +30,6 @@ #include "bitboard.h" #include "bitcount.h" -#include "direction.h" #include "endgame.h" #include "evaluate.h" #include "material.h" @@ -60,7 +59,6 @@ int main(int argc, char* argv[]) { cin.rdbuf()->pubsetbuf(NULL, 0); // Startup initializations - init_direction_table(); init_bitboards(); init_uci_options(); Position::init_zobrist(); @@ -77,8 +75,7 @@ int main(int argc, char* argv[]) { if (argc <= 1) { // Print copyright notice - cout << engine_name() - << " by Tord Romstad, Marco Costalba, Joona Kiiski" << endl; + cout << engine_name() << " by " << engine_author() << endl; if (CpuHasPOPCNT) cout << "Good! CPU has hardware POPCNT." << endl;