We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Wiki:
Fullmove number: The number of the full moves. It starts at 1 and is incremented after Black's move.
Example:
using Rudzoft.ChessLib.Factories; using Rudzoft.ChessLib.Types; var game = GameFactory.Create(@"rnbqkbnr/pppppppp/8/8/8/8/PPPPPPPP/RNBQKBNR w KQkq - 0 1"); game.Pos.MakeMove(new Move(Square.E2, Square.E4), new()); var result = game.Pos.FenNotation; Console.WriteLine(result);
Actual result:
rnbqkbnr/pppppppp/8/8/4P3/8/PPPP1PPP/RNBQKBNR b KQkq - 0 2
Expected result:
rnbqkbnr/pppppppp/8/8/4P3/8/PPPP1PPP/RNBQKBNR b KQkq - 0 1
Note the last character.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Wiki:
Example:
Actual result:
Expected result:
Note the last character.
The text was updated successfully, but these errors were encountered: