[go: up one dir, main page]

Menu

[r225]: / tags / 0.2.5 / Uci.h  Maximize  Restore  History

Download this file

30 lines (22 with data), 442 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#ifndef UCI_H
#define UCI_H
#include <iostream>
#include <sstream>
#include "Engine.h"
class Uci
{
public:
Uci();
~Uci();
int loop();
private:
//Engine* engine;
void set_position(istringstream& is);
void set_option(istringstream& is);
void go(istringstream& is);
//void perft(istringstream& is);
//void bench(istringstream &is);
//void test(istringstream &is);
// FEN string of the initial position, normal chess
};
#endif