2011-11-12 20:44:06 +01:00
|
|
|
/*
|
|
|
|
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
|
|
|
Copyright (C) 2004-2008 Tord Romstad (Glaurung author)
|
2014-05-31 14:23:03 +02:00
|
|
|
Copyright (C) 2008-2014 Marco Costalba, Joona Kiiski, Tord Romstad
|
2011-11-12 20:44:06 +01:00
|
|
|
|
|
|
|
Stockfish is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
Stockfish is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <iostream>
|
|
|
|
|
|
|
|
#include "bitboard.h"
|
2012-06-04 18:25:51 +02:00
|
|
|
#include "evaluate.h"
|
2011-11-12 20:44:06 +01:00
|
|
|
#include "position.h"
|
|
|
|
#include "search.h"
|
2012-01-01 01:52:19 +01:00
|
|
|
#include "thread.h"
|
2012-06-04 18:25:51 +02:00
|
|
|
#include "tt.h"
|
|
|
|
#include "ucioption.h"
|
2011-11-12 20:44:06 +01:00
|
|
|
|
|
|
|
int main(int argc, char* argv[]) {
|
|
|
|
|
2012-06-04 18:25:51 +02:00
|
|
|
std::cout << engine_info() << std::endl;
|
|
|
|
|
2012-09-16 17:16:15 +02:00
|
|
|
UCI::init(Options);
|
2012-06-04 18:25:51 +02:00
|
|
|
Bitboards::init();
|
2013-08-20 20:02:33 +02:00
|
|
|
Position::init();
|
2012-09-16 17:16:15 +02:00
|
|
|
Bitbases::init_kpk();
|
2012-01-01 01:52:19 +01:00
|
|
|
Search::init();
|
2013-11-30 20:12:34 +01:00
|
|
|
Pawns::init();
|
2012-06-04 18:25:51 +02:00
|
|
|
Eval::init();
|
2012-09-16 17:16:15 +02:00
|
|
|
Threads.init();
|
2014-05-31 14:23:03 +02:00
|
|
|
TT.resize(Options["Hash"]);
|
2011-11-12 20:44:06 +01:00
|
|
|
|
2014-05-31 14:23:03 +02:00
|
|
|
UCI::loop(argc, argv);
|
2012-09-16 17:16:15 +02:00
|
|
|
|
|
|
|
Threads.exit();
|
2011-11-12 20:44:06 +01:00
|
|
|
}
|