]> git.sesse.net Git - stockfish/blob - src/main.cpp
Teach Benchmark to read positions from a file
[stockfish] / src / main.cpp
1 /*
2   Glaurung, a UCI chess playing engine.
3   Copyright (C) 2004-2008 Tord Romstad
4
5   Glaurung is free software: you can redistribute it and/or modify
6   it under the terms of the GNU General Public License as published by
7   the Free Software Foundation, either version 3 of the License, or
8   (at your option) any later version.
9   
10   Glaurung is distributed in the hope that it will be useful,
11   but WITHOUT ANY WARRANTY; without even the implied warranty of
12   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13   GNU General Public License for more details.
14   
15   You should have received a copy of the GNU General Public License
16   along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 */
18
19
20 ////
21 //// Includes
22 ////
23
24 #include <cstdlib>
25 #include <iostream>
26
27 #include "benchmark.h"
28 #include "bitboard.h"
29 #include "direction.h"
30 #include "endgame.h"
31 #include "evaluate.h"
32 #include "material.h"
33 #include "mersenne.h"
34 #include "misc.h"
35 #include "movepick.h"
36 #include "position.h"
37 #include "search.h"
38 #include "thread.h"
39 #include "uci.h"
40 #include "ucioption.h"
41
42 using std::string;
43
44 //// 
45 //// Functions
46 ////
47
48 int main(int argc, char *argv[]) {
49
50   // Disable IO buffering
51   setbuf(stdin, NULL);
52   setbuf(stdout, NULL);
53   std::cout.rdbuf()->pubsetbuf(NULL, 0);
54   std::cin.rdbuf()->pubsetbuf(NULL, 0);
55
56   // Initialization
57
58   init_mersenne();
59   init_direction_table();
60   init_bitboards();
61   init_uci_options();
62   Position::init_zobrist();
63   Position::init_piece_square_tables();
64   MaterialInfo::init();
65   MovePicker::init_phase_table();
66   init_eval(1);
67   init_bitbases();
68   init_threads();
69
70   // Make random number generation less deterministic, for book moves
71   for (int i = abs(get_system_time() % 10000); i > 0; i--)
72       genrand_int32();
73
74   // Process command line arguments
75   if (argc >= 2 && string(argv[1]) == "bench")
76   {
77       if (argc < 4 || argc > 6)
78       {
79         std::cout << "Usage: glaurung bench <hash size> <threads> "
80                   << "[time = 60s] [fen positions file = default]"
81                   << std::endl;
82         exit(0);
83       }
84       string time = argc > 4 ? argv[4] : "60";
85       string fen = argc > 5 ? argv[5] : "default";
86       benchmark(string(argv[2]) + " " + string(argv[3]) + " " + time + " " + fen);
87       return 0;
88   }
89
90   // Print copyright notice
91   std::cout << engine_name() << ".  "
92             << "Copyright (C) 2004-2008 Tord Romstad."
93             << std::endl;
94
95   // Enter UCI mode
96   uci_main_loop();
97
98   return 0;
99 }