]> git.sesse.net Git - stockfish/blob - src/main.cpp
TranspositionTable: spaces inflate
[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
43 //// 
44 //// Functions
45 ////
46
47 int main(int argc, char *argv[]) {
48
49   // Disable IO buffering
50   setbuf(stdin, NULL);
51   setbuf(stdout, NULL);
52   std::cout.rdbuf()->pubsetbuf(NULL, 0);
53   std::cin.rdbuf()->pubsetbuf(NULL, 0);
54
55   // Initialization
56
57   init_mersenne();
58   init_direction_table();
59   init_bitboards();
60   init_uci_options();
61   Position::init_zobrist();
62   Position::init_piece_square_tables();
63   MaterialInfo::init();
64   MovePicker::init_phase_table();
65   init_eval(1);
66   init_bitbases();
67   init_threads();
68
69   // Make random number generation less deterministic, for book moves
70   int i = abs(get_system_time() % 10000);
71   for(int j = 0; j < i; j++)
72     genrand_int32();
73
74   // Process command line arguments
75   if(argc >= 2) {
76     if(std::string(argv[1]) == "bench") {
77       if(argc != 4) {
78         std::cout << "Usage: glaurung bench <hash> <threads>" << std::endl;
79         exit(0);
80       }
81       benchmark(std::string(argv[2]), std::string(argv[3]));
82       return 0;
83     }
84   }
85
86   // Print copyright notice
87   std::cout << engine_name() << ".  "
88             << "Copyright (C) 2004-2008 Tord Romstad."
89             << std::endl;
90
91   // Enter UCI mode
92   uci_main_loop();
93
94   return 0;
95 }