]> git.sesse.net Git - stockfish/blob - src/main.cpp
Position::is_ok()give more info on failed test
[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 <iostream>
25
26 #include "benchmark.h"
27 #include "bitboard.h"
28 #include "direction.h"
29 #include "endgame.h"
30 #include "evaluate.h"
31 #include "material.h"
32 #include "mersenne.h"
33 #include "misc.h"
34 #include "movepick.h"
35 #include "position.h"
36 #include "search.h"
37 #include "thread.h"
38 #include "uci.h"
39 #include "ucioption.h"
40
41 using std::string;
42
43 //// 
44 //// Functions
45 ////
46
47 int main(int argc, char *argv[]) {
48
49   // Disable IO buffering
50   std::cout.rdbuf()->pubsetbuf(NULL, 0);
51   std::cin.rdbuf()->pubsetbuf(NULL, 0);
52
53   // Initialization
54
55   init_mersenne();
56   init_direction_table();
57   init_bitboards();
58   init_uci_options();
59   Position::init_zobrist();
60   Position::init_piece_square_tables();
61   MaterialInfo::init();
62   MovePicker::init_phase_table();
63   init_eval(1);
64   init_bitbases();
65   init_threads();
66
67   // Make random number generation less deterministic, for book moves
68   for (int i = abs(get_system_time() % 10000); i > 0; i--)
69       genrand_int32();
70
71   // Process command line arguments
72   if (argc >= 2 && string(argv[1]) == "bench")
73   {
74       if (argc < 4 || argc > 6)
75       {
76         std::cout << "Usage: glaurung bench <hash size> <threads> "
77                   << "[time = 60s] [fen positions file = default]"
78                   << std::endl;
79         exit(0);
80       }
81       string time = argc > 4 ? argv[4] : "60";
82       string fen = argc > 5 ? argv[5] : "default";
83       benchmark(string(argv[2]) + " " + string(argv[3]) + " " + time + " " + fen);
84       return 0;
85   }
86
87   // Print copyright notice
88   std::cout << engine_name() << ".  "
89             << "Copyright (C) 2004-2008 Tord Romstad."
90             << std::endl;
91
92   // Enter UCI mode
93   uci_main_loop();
94
95   return 0;
96 }