blob: 0bdd150b6dad90a584107ef3c5918f44b1af597a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include "uci.hpp"
#include "zobrist.hpp"
#include <cstdlib>
#include <ctime>
using namespace std;
int main() {
InitZobrist();
srand(time(0));
Uci();
return 0;
}
|