X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fmain.cpp;h=3dcb3f6d9eb72c0777bee35146056acd787981a7;hp=31337fa676ef9fba1de2c99d4f3ade7bf7bde8d2;hb=10e64e05094e75d89baa4495fa867a8a64195bb7;hpb=2dfc94e0b6e011b0eb769fa0f0fcf9f2c4a2987b diff --git a/src/main.cpp b/src/main.cpp index 31337fa6..3dcb3f6d 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -35,11 +35,6 @@ extern void kpk_bitbase_init(); int main(int argc, char* argv[]) { - // Don't sync with C library I/O buffers, faster but now using printf() - // or scanf() could yield to issues because buffers are independent. - cout.sync_with_stdio(false); - cin.sync_with_stdio(false); - cout << engine_info() << endl; bitboards_init(); @@ -60,6 +55,4 @@ int main(int argc, char* argv[]) { 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(); }