X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fuci.cpp;h=a8ae266e0cf3f07166867bf7ef083ad0f9ae2009;hb=a44f79141eb887f6fbcf06282ff91ed125a70ef4;hp=af8b01f708728b7bc68d92193aa19d7b8b86ff52;hpb=c0616d773dcb967dad755de74c36937fc5753b63;p=stockfish diff --git a/src/uci.cpp b/src/uci.cpp index af8b01f7..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. @@ -316,7 +319,7 @@ namespace { tm = get_system_time(); - n = perft(pos, depth * OnePly); + n = perft(pos, depth * ONE_PLY); tm = get_system_time() - tm; std::cout << "\nNodes " << n