]> git.sesse.net Git - stockfish/blobdiff - src/search.cpp
Unify root_search() step 2
[stockfish] / src / search.cpp
index 7e9720223b269554270443c6134cdd447ae5b476..bc0fff881ef7f003ead9e194d35ab91b887cc207 100644 (file)
@@ -628,8 +628,8 @@ namespace {
             rml.sort();
 
             // Search to the current depth, rml is updated and sorted
-            value = root_search(pos, ss, alpha, beta, depth, rml);
-            //value = search<PV, false, true>(pos, ss, alpha, beta, depth, 0);
+            //value = root_search(pos, ss, alpha, beta, depth, rml);
+            value = search<PV, false, true>(pos, ss, alpha, beta, depth, 0);
 
             // Sort the moves before to return
             rml.sort();