You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/** Gets the best moves of a sorted move list according to the {@link #getSize()} and {@link #getAccuracy()} of this search parameter.
93
+
* @param moves The list of moves to cut. This list must be sorted (best first). If it is not sorted, the result is unpredictable.
94
+
* @return a list of moves restricted to the size and accuracy of this search parameter.
95
+
* <br>Please note that the returned list may have more than {@link #getSize()} elements in case of equivalent moves or almost equivalent moves (according to {@link #getAccuracy()}).
96
+
* It can also have less than {@link #getSize()} elements if there's less than {@link #getSize()} legal moves or search was interrupted before it finished.
97
+
*/
86
98
public <M> List<EvaluatedMove<M>> getBestMoves(List<EvaluatedMove<M>> moves) {
0 commit comments