mirror of
https://github.com/HChaZZY/Stockfish.git
synced 2025-12-20 17:16:33 +08:00
Move StartPositionFEN out of the header
It is not needed to have global visibility. No functional change. Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
@@ -50,9 +50,6 @@
|
|||||||
//// Constants
|
//// Constants
|
||||||
////
|
////
|
||||||
|
|
||||||
/// FEN string for the initial position
|
|
||||||
const std::string StartPositionFEN = "rnbqkbnr/pppppppp/8/8/8/8/PPPPPPPP/RNBQKBNR w KQkq - 0 1";
|
|
||||||
|
|
||||||
/// Maximum number of plies per game (220 should be enough, because the
|
/// Maximum number of plies per game (220 should be enough, because the
|
||||||
/// maximum search depth is 100, and during position setup we reset the
|
/// maximum search depth is 100, and during position setup we reset the
|
||||||
/// move counter for every non-reversible move).
|
/// move counter for every non-reversible move).
|
||||||
|
|||||||
@@ -46,6 +46,9 @@ using namespace std;
|
|||||||
|
|
||||||
namespace {
|
namespace {
|
||||||
|
|
||||||
|
// FEN string for the initial position
|
||||||
|
const string StartPositionFEN = "rnbqkbnr/pppppppp/8/8/8/8/PPPPPPPP/RNBQKBNR w KQkq - 0 1";
|
||||||
|
|
||||||
// UCIInputParser is a class for parsing UCI input. The class
|
// UCIInputParser is a class for parsing UCI input. The class
|
||||||
// is actually a string stream built on a given input string.
|
// is actually a string stream built on a given input string.
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user