]> git.sesse.net Git - stockfish/blob - src/main.cpp
Synchronize search_pv() with search take I
[stockfish] / src / main.cpp
1 /*
2   Stockfish, a UCI chess playing engine derived from Glaurung 2.1
3   Copyright (C) 2004-2008 Tord Romstad (Glaurung author)
4   Copyright (C) 2008-2009 Marco Costalba
5
6   Stockfish is free software: you can redistribute it and/or modify
7   it under the terms of the GNU General Public License as published by
8   the Free Software Foundation, either version 3 of the License, or
9   (at your option) any later version.
10
11   Stockfish is distributed in the hope that it will be useful,
12   but WITHOUT ANY WARRANTY; without even the implied warranty of
13   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14   GNU General Public License for more details.
15
16   You should have received a copy of the GNU General Public License
17   along with this program.  If not, see <http://www.gnu.org/licenses/>.
18 */
19
20 // To profile with callgrind uncomment following line
21 //#define USE_CALLGRIND
22
23
24 ////
25 //// Includes
26 ////
27
28 #include <iostream>
29 #include <string>
30
31 #include "benchmark.h"
32 #include "bitcount.h"
33 #include "misc.h"
34 #include "uci.h"
35
36 #ifdef USE_CALLGRIND
37 #include <valgrind/callgrind.h>
38 #endif
39
40 using namespace std;
41
42
43 ////
44 //// Functions
45 ////
46
47 int main(int argc, char *argv[]) {
48
49   // Disable IO buffering
50   cout.rdbuf()->pubsetbuf(NULL, 0);
51   cin.rdbuf()->pubsetbuf(NULL, 0);
52
53   // Initialization through global resources manager
54   Application::initialize();
55
56 #ifdef USE_CALLGRIND
57   CALLGRIND_START_INSTRUMENTATION;
58 #endif
59
60   // Process command line arguments if any
61   if (argc > 1)
62   {
63       if (string(argv[1]) != "bench" || argc < 4 || argc > 8)
64           cout << "Usage: stockfish bench <hash size> <threads> "
65                << "[time = 60s] [fen positions file = default] "
66                << "[time, depth, perft or node limited = time] "
67                << "[timing file name = none]" << endl;
68       else
69       {
70           string time = argc > 4 ? argv[4] : "60";
71           string fen = argc > 5 ? argv[5] : "default";
72           string lim = argc > 6 ? argv[6] : "time";
73           string tim = argc > 7 ? argv[7] : "";
74           benchmark(string(argv[2]) + " " + string(argv[3]) + " " + time + " " + fen + " " + lim + " " + tim);
75       }
76       return 0;
77   }
78
79   // Print copyright notice
80   cout << engine_name()
81        << ". By Tord Romstad, Marco Costalba, Joona Kiiski." << endl;
82
83   if (CpuHasPOPCNT)
84       cout << "Good! CPU has hardware POPCNT. We will use it." << endl;
85
86   // Enter UCI mode
87   uci_main_loop();
88   return 0;
89 }