We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd907b7 commit a702054Copy full SHA for a702054
include/bitbishop/board.hpp
@@ -63,6 +63,10 @@ class Board {
63
*/
64
Board(const std::string& fen);
65
66
+ [[nodiscard]] static Board StartingPosition() noexcept {
67
+ return {"rnbqkbnr/pppppppp/8/8/8/8/PPPPPPPP/RNBQKBNR w KQkq - 0 1"};
68
+ }
69
+
70
[[nodiscard]] static Board Empty() noexcept { return {"8/8/8/8/8/8/8/8 w KQkq - 0 1"}; }
71
72
/**
0 commit comments