X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fbenchmark.cpp;h=d0afee898695b50616b951987136d987e8af401d;hp=0253992710dd5618303464a5d3f0ddb495f85c69;hb=6080fecf9cba9ac063f8f07bd25004c14016bd33;hpb=660378d10e99f435df347f317878d7d2d9eade16 diff --git a/src/benchmark.cpp b/src/benchmark.cpp index 02539927..d0afee89 100644 --- a/src/benchmark.cpp +++ b/src/benchmark.cpp @@ -50,7 +50,8 @@ static const string BenchmarkPositions[] = { "3r1rk1/p5pp/bpp1pp2/8/q1PP1P2/b3P3/P2NQRPP/1R2B1K1 b - - 6 22", "r1q2rk1/2p1bppp/2Pp4/p6b/Q1PNp3/4B3/PP1R1PPP/2K4R w - - 2 18", "4k2r/1pb2ppp/1p2p3/1R1p4/3P4/2r1PN2/P4PPP/1R4K1 b - - 3 22", - "3q2k1/pb3p1p/4pbp1/2r5/PpN2N2/1P2P2P/5PP1/Q2R2K1 b - - 4 26" + "3q2k1/pb3p1p/4pbp1/2r5/PpN2N2/1P2P2P/5PP1/Q2R2K1 b - - 4 26", + "" }; @@ -101,7 +102,7 @@ void benchmark(int argc, char* argv[]) { if (!fenFile.is_open()) { cerr << "Unable to open positions file " << posFile << endl; - Application::exit_with_failure(); + exit(EXIT_FAILURE); } string pos; while (fenFile.good()) @@ -112,8 +113,8 @@ void benchmark(int argc, char* argv[]) { } fenFile.close(); } else - for (int i = 0; i < 16; i++) - positions.push_back(string(BenchmarkPositions[i])); + for (int i = 0; !BenchmarkPositions[i].empty(); i++) + positions.push_back(BenchmarkPositions[i]); vector::iterator it; int cnt = 1;