diff --git a/src/search.cpp b/src/search.cpp index 7e972022..bc0fff88 100644 --- a/src/search.cpp +++ b/src/search.cpp @@ -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(pos, ss, alpha, beta, depth, 0); + //value = root_search(pos, ss, alpha, beta, depth, rml); + value = search(pos, ss, alpha, beta, depth, 0); // Sort the moves before to return rml.sort();