X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;ds=sidebyside;f=src%2Fuci.cpp;h=a8ae266e0cf3f07166867bf7ef083ad0f9ae2009;hb=79a28841f98c5ecbbb086855cc7b13b14364a965;hp=9fd35e97f0606f4d27ee1110bb832ddbd44ebb75;hpb=df4b106716f0fb0a5f5887b1cffeb544174008f7;p=stockfish diff --git a/src/uci.cpp b/src/uci.cpp index 9fd35e97..a8ae266e 100644 --- a/src/uci.cpp +++ b/src/uci.cpp @@ -46,6 +46,9 @@ using namespace std; namespace { + // FEN string for the initial position + const string StartPositionFEN = "rnbqkbnr/pppppppp/8/8/8/8/PPPPPPPP/RNBQKBNR w KQkq - 0 1"; + // UCIInputParser is a class for parsing UCI input. The class // is actually a string stream built on a given input string.