X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fsearch.cpp;h=fb9bc17a26232b1d27853cb65e69a0691c07cd72;hp=11ba939a95153384267210921f8032ffbf5199cb;hb=66f5cd3f9d123306c509b6172fd11ed3afa1d39a;hpb=4509eb1342fe282d08bd90340efaff4df5947a87 diff --git a/src/search.cpp b/src/search.cpp index 11ba939a..fb9bc17a 100644 --- a/src/search.cpp +++ b/src/search.cpp @@ -33,6 +33,7 @@ #include "thread.h" #include "tt.h" #include "uci.h" +#include "syzygy/tbprobe.h" namespace Search { @@ -42,6 +43,12 @@ namespace Search { Position RootPos; Time::point SearchTime; StateStackPtr SetupStates; + int TBCardinality; + uint64_t TBHits; + bool RootInTB; + bool TB50MoveRule; + Depth TBProbeDepth; + Value TBScore; } using std::string; @@ -102,7 +109,7 @@ namespace { } size_t candidates_size() const { return candidates; } - bool time_to_pick(Depth depth) const { return depth == 1 + level; } + bool time_to_pick(Depth depth) const { return depth / ONE_PLY == 1 + level; } Move pick_move(); int level; @@ -181,6 +188,8 @@ template uint64_t Search::perft(Position& pos, Depth depth); void Search::think() { TimeMgr.init(Limits, RootPos.game_ply(), RootPos.side_to_move()); + TBHits = TBCardinality = 0; + RootInTB = false; int cf = Options["Contempt"] * PawnValueEg / 100; // From centipawns DrawValue[ RootPos.side_to_move()] = VALUE_DRAW - Value(cf); @@ -195,6 +204,58 @@ void Search::think() { } else { + // Check Tablebases at root + int piecesCnt = RootPos.total_piece_count(); + TBCardinality = Options["SyzygyProbeLimit"]; + TBProbeDepth = Options["SyzygyProbeDepth"] * ONE_PLY; + if (TBCardinality > Tablebases::TBLargest) + { + TBCardinality = Tablebases::TBLargest; + TBProbeDepth = 0 * ONE_PLY; + } + TB50MoveRule = Options["Syzygy50MoveRule"]; + + if (piecesCnt <= TBCardinality) + { + TBHits = RootMoves.size(); + + // If the current root position is in the tablebases then RootMoves + // contains only moves that preserve the draw or win. + RootInTB = Tablebases::root_probe(RootPos, TBScore); + + if (RootInTB) + { + TBCardinality = 0; // Do not probe tablebases during the search + + // It might be a good idea to mangle the hash key (xor it + // with a fixed value) in order to "clear" the hash table of + // the results of previous probes. However, that would have to + // be done from within the Position class, so we skip it for now. + + // Optional: decrease target time. + } + else // If DTZ tables are missing, use WDL tables as a fallback + { + // Filter out moves that do not preserve a draw or win + RootInTB = Tablebases::root_probe_wdl(RootPos, TBScore); + + // Only probe during search if winning + if (TBScore <= VALUE_DRAW) + TBCardinality = 0; + } + + if (!RootInTB) + { + TBHits = 0; + } + else if (!TB50MoveRule) + { + TBScore = TBScore > VALUE_DRAW ? VALUE_MATE - MAX_PLY - 1 + : TBScore < VALUE_DRAW ? -VALUE_MATE + MAX_PLY + 1 + : TBScore; + } + } + for (size_t i = 0; i < Threads.size(); ++i) Threads[i]->maxPly = 0; @@ -486,6 +547,37 @@ namespace { return ttValue; } + // Step 4a. Tablebase probe + if ( !RootNode + && pos.total_piece_count() <= TBCardinality + && ( pos.total_piece_count() < TBCardinality || depth >= TBProbeDepth ) + && pos.rule50_count() == 0) + { + int found, v = Tablebases::probe_wdl(pos, &found); + + if (found) + { + TBHits++; + + if (TB50MoveRule) { + value = v < -1 ? -VALUE_MATE + MAX_PLY + ss->ply + : v > 1 ? VALUE_MATE - MAX_PLY - ss->ply + : VALUE_DRAW + 2 * v; + } + else + { + value = v < 0 ? -VALUE_MATE + MAX_PLY + ss->ply + : v > 0 ? VALUE_MATE - MAX_PLY - ss->ply + : VALUE_DRAW; + } + + TT.store(posKey, value_to_tt(value, ss->ply), BOUND_EXACT, + std::min(DEPTH_MAX - ONE_PLY, depth + 6 * ONE_PLY), MOVE_NONE, VALUE_NONE); + + return value; + } + } + // Step 5. Evaluate the position statically and update parent's gain statistics if (inCheck) { @@ -561,7 +653,7 @@ namespace { assert(eval - beta >= 0); // Null move dynamic reduction based on depth and value - Depth R = (3 + depth / 4 + std::min(int(eval - beta) / PawnValueMg, 3)) * ONE_PLY; + Depth R = (3 + depth / 4 + std::min((eval - beta) / PawnValueMg, 3)) * ONE_PLY; pos.do_null_move(st); (ss+1)->skipNullMove = true; @@ -694,7 +786,7 @@ moves_loop: // When in check and at SpNode search starts from here Signals.firstRootMove = (moveCount == 1); if (thisThread == Threads.main() && Time::now() - SearchTime > 3000) - sync_cout << "info depth " << depth + sync_cout << "info depth " << depth / ONE_PLY << " currmove " << UCI::format_move(move, pos.is_chess960()) << " currmovenumber " << moveCount + PVIdx << sync_endl; } @@ -727,7 +819,7 @@ moves_loop: // When in check and at SpNode search starts from here && !ext && pos.legal(move, ci.pinned)) { - Value rBeta = ttValue - int(2 * depth); + Value rBeta = ttValue - 2 * depth / ONE_PLY; ss->excludedMove = move; ss->skipNullMove = true; value = search(pos, ss, rBeta - 1, rBeta, depth / 2, cutNode); @@ -1263,7 +1355,7 @@ moves_loop: // When in check and at SpNode search starts from here // Increase history value of the cut-off move and decrease all the other // played quiet moves. - Value bonus = Value(int(depth) * int(depth)); + Value bonus = Value((depth / ONE_PLY) * (depth / ONE_PLY)); History.update(pos.moved_piece(move), to_sq(move), bonus); for (int i = 0; i < quietsCnt; ++i) { @@ -1346,21 +1438,31 @@ moves_loop: // When in check and at SpNode search starts from here { bool updated = (i <= PVIdx); - if (depth == 1 && !updated) + if (depth == ONE_PLY && !updated) continue; Depth d = updated ? depth : depth - ONE_PLY; Value v = updated ? RootMoves[i].score : RootMoves[i].prevScore; + bool tb = RootInTB; + if (tb) + { + if (abs(v) >= VALUE_MATE - MAX_PLY) + tb = false; + else + v = TBScore; + } + if (ss.rdbuf()->in_avail()) // Not at first line ss << "\n"; ss << "info depth " << d / ONE_PLY << " seldepth " << selDepth << " multipv " << i + 1 - << " score " << (i == PVIdx ? UCI::format_value(v, alpha, beta) : UCI::format_value(v)) + << " score " << ((!tb && i == PVIdx) ? UCI::format_value(v, alpha, beta) : UCI::format_value(v)) << " nodes " << pos.nodes_searched() << " nps " << pos.nodes_searched() * 1000 / elapsed + << " tbhits " << TBHits << " time " << elapsed << " pv";