X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fmain.cpp;h=1d5c6ea7d50d24cb75697f955be3edd291316069;hp=9b1b5ecfe4f373ce3fc6849cb64a0b5c86e481e0;hb=8ec421fa1428584e47388f68db931b3e9776b7c6;hpb=0a6532a39d2e2cfd92ba0a2c4fa8c6ad6c29b581 diff --git a/src/main.cpp b/src/main.cpp index 9b1b5ecf..1d5c6ea7 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1,7 +1,7 @@ /* Stockfish, a UCI chess playing engine derived from Glaurung 2.1 Copyright (C) 2004-2008 Tord Romstad (Glaurung author) - Copyright (C) 2008-2010 Marco Costalba, Joona Kiiski, Tord Romstad + Copyright (C) 2008-2012 Marco Costalba, Joona Kiiski, Tord Romstad Stockfish is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -21,10 +21,11 @@ #include #include "bitboard.h" -#include "misc.h" +#include "evaluate.h" #include "position.h" #include "search.h" #include "thread.h" +#include "ucioption.h" using namespace std; @@ -34,25 +35,26 @@ extern void kpk_bitbase_init(); int main(int argc, char* argv[]) { + cout << engine_info() << endl; + bitboards_init(); Position::init(); kpk_bitbase_init(); Search::init(); Threads.init(); + Eval::init(); + TT.set_size(Options["Hash"]); - if (argc < 2) - { - cout << engine_name() << " by " << engine_authors() << endl; + if (argc == 1) uci_loop(); - } + 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; }