X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fsearch.cpp;h=36f57b424646caa60bae5be859d51bd04b441e65;hp=1f848183481a573cf59710f2993a1c4fb890a1f2;hb=25b4d0c127af9fe564f7a797460bed4c2837bcc2;hpb=2225e3bbe785f29dfcdb2b1057e1f141002f44c8 diff --git a/src/search.cpp b/src/search.cpp index 1f848183..36f57b42 100644 --- a/src/search.cpp +++ b/src/search.cpp @@ -534,10 +534,8 @@ namespace { Rml.bestMoveChanges = 0; - // MultiPV iteration loop. At depth 1 perform at least 2 iterations to - // get a score of the second best move for easy move detection. - int e = Min(Max(MultiPV, 2 * int(depth == 1)), (int)Rml.size()); - for (MultiPVIteration = 0; MultiPVIteration < e; MultiPVIteration++) + // MultiPV iteration loop + for (MultiPVIteration = 0; MultiPVIteration < Min(MultiPV, (int)Rml.size()); MultiPVIteration++) { // Calculate dynamic aspiration window based on previous iterations if (depth >= 5 && abs(Rml[MultiPVIteration].prevScore) < VALUE_KNOWN_WIN) @@ -1012,7 +1010,8 @@ split_point_start: // At split points actual search starts from here << " currmovenumber " << moveCount + MultiPVIteration << endl; } - isPvMove = (PvNode && moveCount == 1); + // At Root and at first iteration do a PV search on all the moves to score root moves + isPvMove = (PvNode && moveCount <= (RootNode && depth <= ONE_PLY ? MAX_MOVES : 1)); givesCheck = pos.move_gives_check(move, ci); captureOrPromotion = pos.move_is_capture_or_promotion(move);