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
For each move available at the current position, print the move and the number of nodes at the given depth which are an ancestor of that move, separated by whitespace.
Does "the current position" mean the same thing as what you call "the base position" earlier in this section? If not, what does "the current position" mean?
Also, you meant descendant instead of ancestor, right?
The text was updated successfully, but these errors were encountered:
Starting at the "base" position (i.e. $fen, set by the fen command), your engine should apply the moves provided in the $moves list (modified by the move/unmove/moves command) to get to the "current" position, from which it executes the perft.
Oh, now I understand. I was thinking the optional move list represented moves that should each be played in the given position (effectively selecting multiple branches starting at the root), not a sequence of moves to be played one after the other (effectively selecting a single deep branch).
The readme says
Does "the current position" mean the same thing as what you call "the base position" earlier in this section? If not, what does "the current position" mean?
Also, you meant descendant instead of ancestor, right?
The text was updated successfully, but these errors were encountered: