X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fbenchmark.cpp;h=c554008b857f3b46d50fc66ab501a8c8c85ab82d;hp=1d40b8fdb29e64c83b8c58ccfd11416197c4102b;hb=c295599e4ad481f677b14cb0be14174b61ebff81;hpb=a49e4fac9839263ef2a3b885a051ec842b1202d9 diff --git a/src/benchmark.cpp b/src/benchmark.cpp index 1d40b8fd..c554008b 100644 --- a/src/benchmark.cpp +++ b/src/benchmark.cpp @@ -51,7 +51,7 @@ const string BenchmarkPositions[] = { "r1bq1r1k/b1p1npp1/p2p3p/1p6/3PP3/1B2NN2/PP3PPP/R2Q1RK1 w - - 1 16", "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", + "4k2r/1pb2ppp/1p2p3/1R1p4/3P4/2r1PN2/P4PPP/1R4K1 b - - 3 22", "3q2k1/pb3p1p/4pbp1/2r5/PpN2N2/1P2P2P/5PP1/Q2R2K1 b - - 4 26" }; @@ -151,7 +151,7 @@ void benchmark(const string& commandLine) { { Move moves[1] = {MOVE_NONE}; int dummy[2] = {0, 0}; - Position pos(*it); + Position pos(*it, 0); cerr << "\nBench position: " << cnt << '/' << positions.size() << endl << endl; if (limitType == "perft") { @@ -159,7 +159,7 @@ void benchmark(const string& commandLine) { cerr << "\nPerft " << maxDepth << " result (nodes searched): " << perftCnt << endl << endl; totalNodes += perftCnt; } else { - if (!think(pos, false, false, 0, dummy, dummy, 0, maxDepth, maxNodes, secsPerPos, moves)) + if (!think(pos, false, false, dummy, dummy, 0, maxDepth, maxNodes, secsPerPos, moves)) break; totalNodes += nodes_searched(); }