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
Initialize the Board from FEN notation (pieces only)
Write tests for FEN notation -> board (pieces only)
Write tests for basic movement generators for each piece. This will use the FEN notation board generation. (mock underlying logic)
Write basic movement generators. Movement generators must come in two varieties: a. return a bitmask of valid moves, b. return a string list of valid moves (i.e. "e1 e4"). Not concerened about en passant, castling, or other special moves at this point.