[go: up one dir, main page]

Menu

[r225]: / tags / 0.2.4 / main.cpp  Maximize  Restore  History

Download this file

20 lines (17 with data), 313 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
#include <iostream>
#include "Bitboard.h"
#include "Thread.h"
#include "Uci.h"
#include "Engine.h"
using namespace std;
int main ()
{
cout << "OliveChess by Olivier HERAU" << endl;
//Engine* engine = new Engine();
Bitboards::init();
Threads.init();
ChessEngine.init();
Uci uci;
uci.loop();
return 0;
}