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
Implement a move picker that supplies the "next" move to search in move ordering.
Rustic talks about this. The gist is that this is "better" because it saves you on sorting the entire list when most moves won't be used; so instead you do an incremental sort to get the next move to search.
The text was updated successfully, but these errors were encountered:
Basically done in #93 , but wasn't explicitly labeled as a "Move picker". We can look at improving the incremental sort performance at a later time. See this article.
Implement a move picker that supplies the "next" move to search in move ordering.
Rustic talks about this. The gist is that this is "better" because it saves you on sorting the entire list when most moves won't be used; so instead you do an incremental sort to get the next move to search.
The text was updated successfully, but these errors were encountered: