mirror of
https://github.com/peterosterlund2/droidfish.git
synced 2024-11-23 11:31:33 +01:00
Update to Stockfish 12
This commit is contained in:
parent
6bcbd6d080
commit
94c39e402e
|
@ -4,19 +4,27 @@ SF_SRC_FILES := \
|
||||||
benchmark.cpp main.cpp movegen.cpp pawns.cpp thread.cpp uci.cpp psqt.cpp \
|
benchmark.cpp main.cpp movegen.cpp pawns.cpp thread.cpp uci.cpp psqt.cpp \
|
||||||
bitbase.cpp endgame.cpp material.cpp movepick.cpp position.cpp timeman.cpp \
|
bitbase.cpp endgame.cpp material.cpp movepick.cpp position.cpp timeman.cpp \
|
||||||
tune.cpp ucioption.cpp \
|
tune.cpp ucioption.cpp \
|
||||||
bitboard.cpp evaluate.cpp misc.cpp search.cpp tt.cpp syzygy/tbprobe.cpp
|
bitboard.cpp evaluate.cpp misc.cpp search.cpp tt.cpp syzygy/tbprobe.cpp \
|
||||||
|
nnue/evaluate_nnue.cpp nnue/features/half_kp.cpp
|
||||||
|
|
||||||
MY_ARCH_DEF :=
|
MY_ARCH_DEF :=
|
||||||
|
ifeq ($(TARGET_ARCH_ABI),armeabi-v7a)
|
||||||
|
MY_ARCH_DEF += -DUSE_NEON -mfpu=neon
|
||||||
|
endif
|
||||||
ifeq ($(TARGET_ARCH_ABI),arm64-v8a)
|
ifeq ($(TARGET_ARCH_ABI),arm64-v8a)
|
||||||
MY_ARCH_DEF += -DIS_64BIT -DUSE_POPCNT
|
MY_ARCH_DEF += -DIS_64BIT -DUSE_POPCNT -DUSE_NEON
|
||||||
endif
|
endif
|
||||||
ifeq ($(TARGET_ARCH_ABI),x86_64)
|
ifeq ($(TARGET_ARCH_ABI),x86_64)
|
||||||
MY_ARCH_DEF += -DIS_64BIT
|
MY_ARCH_DEF += -DIS_64BIT -DUSE_SSE41 -msse4.1
|
||||||
|
endif
|
||||||
|
ifeq ($(TARGET_ARCH_ABI),x86)
|
||||||
|
MY_ARCH_DEF += -DUSE_SSE41 -msse4.1
|
||||||
endif
|
endif
|
||||||
|
|
||||||
include $(CLEAR_VARS)
|
include $(CLEAR_VARS)
|
||||||
LOCAL_MODULE := stockfish
|
LOCAL_MODULE := stockfish
|
||||||
LOCAL_SRC_FILES := $(SF_SRC_FILES)
|
LOCAL_SRC_FILES := $(SF_SRC_FILES)
|
||||||
LOCAL_CFLAGS := -std=c++11 -O2 -fPIE $(MY_ARCH_DEF) -s
|
LOCAL_CFLAGS := -std=c++17 -O2 -fno-exceptions -DNNUE_EMBEDDING_OFF \
|
||||||
|
-fPIE $(MY_ARCH_DEF) -s
|
||||||
LOCAL_LDFLAGS += -fPIE -pie -s
|
LOCAL_LDFLAGS += -fPIE -pie -s
|
||||||
include $(BUILD_EXECUTABLE)
|
include $(BUILD_EXECUTABLE)
|
||||||
|
|
|
@ -1,8 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
||||||
Copyright (C) 2004-2008 Tord Romstad (Glaurung author)
|
Copyright (C) 2004-2020 The Stockfish developers (see AUTHORS file)
|
||||||
Copyright (C) 2008-2015 Marco Costalba, Joona Kiiski, Tord Romstad
|
|
||||||
Copyright (C) 2015-2020 Marco Costalba, Joona Kiiski, Gary Linscott, Tord Romstad
|
|
||||||
|
|
||||||
Stockfish is free software: you can redistribute it and/or modify
|
Stockfish is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
@ -88,7 +86,7 @@ const vector<string> Defaults = {
|
||||||
|
|
||||||
// Chess 960
|
// Chess 960
|
||||||
"setoption name UCI_Chess960 value true",
|
"setoption name UCI_Chess960 value true",
|
||||||
"bbqnnrkr/pppppppp/8/8/8/8/PPPPPPPP/BBQNNRKR w KQkq - 0 1 moves g2g3 d7d5 d2d4 c8h3 c1g5 e8d6 g5e7 f7f6",
|
"bbqnnrkr/pppppppp/8/8/8/8/PPPPPPPP/BBQNNRKR w HFhf - 0 1 moves g2g3 d7d5 d2d4 c8h3 c1g5 e8d6 g5e7 f7f6",
|
||||||
"setoption name UCI_Chess960 value false"
|
"setoption name UCI_Chess960 value false"
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -97,8 +95,9 @@ const vector<string> Defaults = {
|
||||||
/// setup_bench() builds a list of UCI commands to be run by bench. There
|
/// setup_bench() builds a list of UCI commands to be run by bench. There
|
||||||
/// are five parameters: TT size in MB, number of search threads that
|
/// are five parameters: TT size in MB, number of search threads that
|
||||||
/// should be used, the limit value spent for each position, a file name
|
/// should be used, the limit value spent for each position, a file name
|
||||||
/// where to look for positions in FEN format and the type of the limit:
|
/// where to look for positions in FEN format, the type of the limit:
|
||||||
/// depth, perft, nodes and movetime (in millisecs).
|
/// depth, perft, nodes and movetime (in millisecs), and evaluation type
|
||||||
|
/// mixed (default), classical, NNUE.
|
||||||
///
|
///
|
||||||
/// bench -> search default positions up to depth 13
|
/// bench -> search default positions up to depth 13
|
||||||
/// bench 64 1 15 -> search default positions up to depth 15 (TT = 64MB)
|
/// bench 64 1 15 -> search default positions up to depth 15 (TT = 64MB)
|
||||||
|
@ -117,6 +116,7 @@ vector<string> setup_bench(const Position& current, istream& is) {
|
||||||
string limit = (is >> token) ? token : "13";
|
string limit = (is >> token) ? token : "13";
|
||||||
string fenFile = (is >> token) ? token : "default";
|
string fenFile = (is >> token) ? token : "default";
|
||||||
string limitType = (is >> token) ? token : "depth";
|
string limitType = (is >> token) ? token : "depth";
|
||||||
|
string evalType = (is >> token) ? token : "mixed";
|
||||||
|
|
||||||
go = limitType == "eval" ? "eval" : "go " + limitType + " " + limit;
|
go = limitType == "eval" ? "eval" : "go " + limitType + " " + limit;
|
||||||
|
|
||||||
|
@ -148,13 +148,20 @@ vector<string> setup_bench(const Position& current, istream& is) {
|
||||||
list.emplace_back("setoption name Hash value " + ttSize);
|
list.emplace_back("setoption name Hash value " + ttSize);
|
||||||
list.emplace_back("ucinewgame");
|
list.emplace_back("ucinewgame");
|
||||||
|
|
||||||
|
size_t posCounter = 0;
|
||||||
|
|
||||||
for (const string& fen : fens)
|
for (const string& fen : fens)
|
||||||
if (fen.find("setoption") != string::npos)
|
if (fen.find("setoption") != string::npos)
|
||||||
list.emplace_back(fen);
|
list.emplace_back(fen);
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
if (evalType == "classical" || (evalType == "mixed" && posCounter % 2 == 0))
|
||||||
|
list.emplace_back("setoption name Use NNUE value false");
|
||||||
|
else if (evalType == "NNUE" || (evalType == "mixed" && posCounter % 2 != 0))
|
||||||
|
list.emplace_back("setoption name Use NNUE value true");
|
||||||
list.emplace_back("position fen " + fen);
|
list.emplace_back("position fen " + fen);
|
||||||
list.emplace_back(go);
|
list.emplace_back(go);
|
||||||
|
++posCounter;
|
||||||
}
|
}
|
||||||
|
|
||||||
return list;
|
return list;
|
||||||
|
|
|
@ -1,8 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
||||||
Copyright (C) 2004-2008 Tord Romstad (Glaurung author)
|
Copyright (C) 2004-2020 The Stockfish developers (see AUTHORS file)
|
||||||
Copyright (C) 2008-2015 Marco Costalba, Joona Kiiski, Tord Romstad
|
|
||||||
Copyright (C) 2015-2020 Marco Costalba, Joona Kiiski, Gary Linscott, Tord Romstad
|
|
||||||
|
|
||||||
Stockfish is free software: you can redistribute it and/or modify
|
Stockfish is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
@ -108,25 +106,25 @@ namespace {
|
||||||
stm = Color ((idx >> 12) & 0x01);
|
stm = Color ((idx >> 12) & 0x01);
|
||||||
psq = make_square(File((idx >> 13) & 0x3), Rank(RANK_7 - ((idx >> 15) & 0x7)));
|
psq = make_square(File((idx >> 13) & 0x3), Rank(RANK_7 - ((idx >> 15) & 0x7)));
|
||||||
|
|
||||||
// Check if two pieces are on the same square or if a king can be captured
|
// Invalid if two pieces are on the same square or if a king can be captured
|
||||||
if ( distance(ksq[WHITE], ksq[BLACK]) <= 1
|
if ( distance(ksq[WHITE], ksq[BLACK]) <= 1
|
||||||
|| ksq[WHITE] == psq
|
|| ksq[WHITE] == psq
|
||||||
|| ksq[BLACK] == psq
|
|| ksq[BLACK] == psq
|
||||||
|| (stm == WHITE && (pawn_attacks_bb(WHITE, psq) & ksq[BLACK])))
|
|| (stm == WHITE && (pawn_attacks_bb(WHITE, psq) & ksq[BLACK])))
|
||||||
result = INVALID;
|
result = INVALID;
|
||||||
|
|
||||||
// Immediate win if a pawn can be promoted without getting captured
|
// Win if the pawn can be promoted without getting captured
|
||||||
else if ( stm == WHITE
|
else if ( stm == WHITE
|
||||||
&& rank_of(psq) == RANK_7
|
&& rank_of(psq) == RANK_7
|
||||||
&& ksq[stm] != psq + NORTH
|
&& ksq[WHITE] != psq + NORTH
|
||||||
&& ( distance(ksq[~stm], psq + NORTH) > 1
|
&& ( distance(ksq[BLACK], psq + NORTH) > 1
|
||||||
|| (attacks_bb<KING>(ksq[stm]) & (psq + NORTH))))
|
|| (distance(ksq[WHITE], psq + NORTH) == 1)))
|
||||||
result = WIN;
|
result = WIN;
|
||||||
|
|
||||||
// Immediate draw if it is a stalemate or a king captures undefended pawn
|
// Draw if it is stalemate or the black king can capture the pawn
|
||||||
else if ( stm == BLACK
|
else if ( stm == BLACK
|
||||||
&& ( !(attacks_bb<KING>(ksq[stm]) & ~(attacks_bb<KING>(ksq[~stm]) | pawn_attacks_bb(~stm, psq)))
|
&& ( !(attacks_bb<KING>(ksq[BLACK]) & ~(attacks_bb<KING>(ksq[WHITE]) | pawn_attacks_bb(WHITE, psq)))
|
||||||
|| (attacks_bb<KING>(ksq[stm]) & psq & ~attacks_bb<KING>(ksq[~stm]))))
|
|| (attacks_bb<KING>(ksq[BLACK]) & ~attacks_bb<KING>(ksq[WHITE]) & psq)))
|
||||||
result = DRAW;
|
result = DRAW;
|
||||||
|
|
||||||
// Position will be classified later
|
// Position will be classified later
|
||||||
|
|
|
@ -1,8 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
||||||
Copyright (C) 2004-2008 Tord Romstad (Glaurung author)
|
Copyright (C) 2004-2020 The Stockfish developers (see AUTHORS file)
|
||||||
Copyright (C) 2008-2015 Marco Costalba, Joona Kiiski, Tord Romstad
|
|
||||||
Copyright (C) 2015-2020 Marco Costalba, Joona Kiiski, Gary Linscott, Tord Romstad
|
|
||||||
|
|
||||||
Stockfish is free software: you can redistribute it and/or modify
|
Stockfish is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
@ -40,7 +38,17 @@ namespace {
|
||||||
Bitboard RookTable[0x19000]; // To store rook attacks
|
Bitboard RookTable[0x19000]; // To store rook attacks
|
||||||
Bitboard BishopTable[0x1480]; // To store bishop attacks
|
Bitboard BishopTable[0x1480]; // To store bishop attacks
|
||||||
|
|
||||||
void init_magics(Bitboard table[], Magic magics[], Direction directions[]);
|
void init_magics(PieceType pt, Bitboard table[], Magic magics[]);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/// safe_destination() returns the bitboard of target square for the given step
|
||||||
|
/// from the given square. If the step is off the board, returns empty bitboard.
|
||||||
|
|
||||||
|
inline Bitboard safe_destination(Square s, int step) {
|
||||||
|
Square to = Square(s + step);
|
||||||
|
return is_ok(to) && distance(s, to) <= 2 ? square_bb(to) : Bitboard(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -79,11 +87,8 @@ void Bitboards::init() {
|
||||||
for (Square s2 = SQ_A1; s2 <= SQ_H8; ++s2)
|
for (Square s2 = SQ_A1; s2 <= SQ_H8; ++s2)
|
||||||
SquareDistance[s1][s2] = std::max(distance<File>(s1, s2), distance<Rank>(s1, s2));
|
SquareDistance[s1][s2] = std::max(distance<File>(s1, s2), distance<Rank>(s1, s2));
|
||||||
|
|
||||||
Direction RookDirections[] = { NORTH, EAST, SOUTH, WEST };
|
init_magics(ROOK, RookTable, RookMagics);
|
||||||
Direction BishopDirections[] = { NORTH_EAST, SOUTH_EAST, SOUTH_WEST, NORTH_WEST };
|
init_magics(BISHOP, BishopTable, BishopMagics);
|
||||||
|
|
||||||
init_magics(RookTable, RookMagics, RookDirections);
|
|
||||||
init_magics(BishopTable, BishopMagics, BishopDirections);
|
|
||||||
|
|
||||||
for (Square s1 = SQ_A1; s1 <= SQ_H8; ++s1)
|
for (Square s1 = SQ_A1; s1 <= SQ_H8; ++s1)
|
||||||
{
|
{
|
||||||
|
@ -109,15 +114,17 @@ void Bitboards::init() {
|
||||||
|
|
||||||
namespace {
|
namespace {
|
||||||
|
|
||||||
Bitboard sliding_attack(Direction directions[], Square sq, Bitboard occupied) {
|
Bitboard sliding_attack(PieceType pt, Square sq, Bitboard occupied) {
|
||||||
|
|
||||||
Bitboard attacks = 0;
|
Bitboard attacks = 0;
|
||||||
|
Direction RookDirections[4] = {NORTH, SOUTH, EAST, WEST};
|
||||||
|
Direction BishopDirections[4] = {NORTH_EAST, SOUTH_EAST, SOUTH_WEST, NORTH_WEST};
|
||||||
|
|
||||||
for (int i = 0; i < 4; ++i)
|
for (Direction d : (pt == ROOK ? RookDirections : BishopDirections))
|
||||||
{
|
{
|
||||||
Square s = sq;
|
Square s = sq;
|
||||||
while(safe_destination(s, directions[i]) && !(occupied & s))
|
while(safe_destination(s, d) && !(occupied & s))
|
||||||
attacks |= (s += directions[i]);
|
attacks |= (s += d);
|
||||||
}
|
}
|
||||||
|
|
||||||
return attacks;
|
return attacks;
|
||||||
|
@ -129,7 +136,7 @@ namespace {
|
||||||
// www.chessprogramming.org/Magic_Bitboards. In particular, here we use the so
|
// www.chessprogramming.org/Magic_Bitboards. In particular, here we use the so
|
||||||
// called "fancy" approach.
|
// called "fancy" approach.
|
||||||
|
|
||||||
void init_magics(Bitboard table[], Magic magics[], Direction directions[]) {
|
void init_magics(PieceType pt, Bitboard table[], Magic magics[]) {
|
||||||
|
|
||||||
// Optimal PRNG seeds to pick the correct magics in the shortest time
|
// Optimal PRNG seeds to pick the correct magics in the shortest time
|
||||||
int seeds[][RANK_NB] = { { 8977, 44560, 54343, 38998, 5731, 95205, 104912, 17020 },
|
int seeds[][RANK_NB] = { { 8977, 44560, 54343, 38998, 5731, 95205, 104912, 17020 },
|
||||||
|
@ -149,7 +156,7 @@ namespace {
|
||||||
// the number of 1s of the mask. Hence we deduce the size of the shift to
|
// the number of 1s of the mask. Hence we deduce the size of the shift to
|
||||||
// apply to the 64 or 32 bits word to get the index.
|
// apply to the 64 or 32 bits word to get the index.
|
||||||
Magic& m = magics[s];
|
Magic& m = magics[s];
|
||||||
m.mask = sliding_attack(directions, s, 0) & ~edges;
|
m.mask = sliding_attack(pt, s, 0) & ~edges;
|
||||||
m.shift = (Is64Bit ? 64 : 32) - popcount(m.mask);
|
m.shift = (Is64Bit ? 64 : 32) - popcount(m.mask);
|
||||||
|
|
||||||
// Set the offset for the attacks table of the square. We have individual
|
// Set the offset for the attacks table of the square. We have individual
|
||||||
|
@ -161,7 +168,7 @@ namespace {
|
||||||
b = size = 0;
|
b = size = 0;
|
||||||
do {
|
do {
|
||||||
occupancy[size] = b;
|
occupancy[size] = b;
|
||||||
reference[size] = sliding_attack(directions, s, b);
|
reference[size] = sliding_attack(pt, s, b);
|
||||||
|
|
||||||
if (HasPext)
|
if (HasPext)
|
||||||
m.attacks[pext(b, m.mask)] = reference[size];
|
m.attacks[pext(b, m.mask)] = reference[size];
|
||||||
|
|
|
@ -1,8 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
||||||
Copyright (C) 2004-2008 Tord Romstad (Glaurung author)
|
Copyright (C) 2004-2020 The Stockfish developers (see AUTHORS file)
|
||||||
Copyright (C) 2008-2015 Marco Costalba, Joona Kiiski, Tord Romstad
|
|
||||||
Copyright (C) 2015-2020 Marco Costalba, Joona Kiiski, Gary Linscott, Tord Romstad
|
|
||||||
|
|
||||||
Stockfish is free software: you can redistribute it and/or modify
|
Stockfish is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
@ -110,6 +108,7 @@ inline Bitboard square_bb(Square s) {
|
||||||
return SquareBB[s];
|
return SquareBB[s];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/// Overloads of bitwise operators between a Bitboard and a Square for testing
|
/// Overloads of bitwise operators between a Bitboard and a Square for testing
|
||||||
/// whether a given bit is set in a bitboard, and for setting and clearing bits.
|
/// whether a given bit is set in a bitboard, and for setting and clearing bits.
|
||||||
|
|
||||||
|
@ -123,12 +122,13 @@ inline Bitboard operator&(Square s, Bitboard b) { return b & s; }
|
||||||
inline Bitboard operator|(Square s, Bitboard b) { return b | s; }
|
inline Bitboard operator|(Square s, Bitboard b) { return b | s; }
|
||||||
inline Bitboard operator^(Square s, Bitboard b) { return b ^ s; }
|
inline Bitboard operator^(Square s, Bitboard b) { return b ^ s; }
|
||||||
|
|
||||||
inline Bitboard operator|(Square s, Square s2) { return square_bb(s) | s2; }
|
inline Bitboard operator|(Square s1, Square s2) { return square_bb(s1) | s2; }
|
||||||
|
|
||||||
constexpr bool more_than_one(Bitboard b) {
|
constexpr bool more_than_one(Bitboard b) {
|
||||||
return b & (b - 1);
|
return b & (b - 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
constexpr bool opposite_colors(Square s1, Square s2) {
|
constexpr bool opposite_colors(Square s1, Square s2) {
|
||||||
return (s1 + rank_of(s1) + s2 + rank_of(s2)) & 1;
|
return (s1 + rank_of(s1) + s2 + rank_of(s2)) & 1;
|
||||||
}
|
}
|
||||||
|
@ -137,19 +137,19 @@ constexpr bool opposite_colors(Square s1, Square s2) {
|
||||||
/// rank_bb() and file_bb() return a bitboard representing all the squares on
|
/// rank_bb() and file_bb() return a bitboard representing all the squares on
|
||||||
/// the given file or rank.
|
/// the given file or rank.
|
||||||
|
|
||||||
inline Bitboard rank_bb(Rank r) {
|
constexpr Bitboard rank_bb(Rank r) {
|
||||||
return Rank1BB << (8 * r);
|
return Rank1BB << (8 * r);
|
||||||
}
|
}
|
||||||
|
|
||||||
inline Bitboard rank_bb(Square s) {
|
constexpr Bitboard rank_bb(Square s) {
|
||||||
return rank_bb(rank_of(s));
|
return rank_bb(rank_of(s));
|
||||||
}
|
}
|
||||||
|
|
||||||
inline Bitboard file_bb(File f) {
|
constexpr Bitboard file_bb(File f) {
|
||||||
return FileABB << f;
|
return FileABB << f;
|
||||||
}
|
}
|
||||||
|
|
||||||
inline Bitboard file_bb(Square s) {
|
constexpr Bitboard file_bb(Square s) {
|
||||||
return file_bb(file_of(s));
|
return file_bb(file_of(s));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -194,16 +194,17 @@ constexpr Bitboard pawn_double_attacks_bb(Bitboard b) {
|
||||||
|
|
||||||
|
|
||||||
/// adjacent_files_bb() returns a bitboard representing all the squares on the
|
/// adjacent_files_bb() returns a bitboard representing all the squares on the
|
||||||
/// adjacent files of the given one.
|
/// adjacent files of a given square.
|
||||||
|
|
||||||
inline Bitboard adjacent_files_bb(Square s) {
|
constexpr Bitboard adjacent_files_bb(Square s) {
|
||||||
return shift<EAST>(file_bb(s)) | shift<WEST>(file_bb(s));
|
return shift<EAST>(file_bb(s)) | shift<WEST>(file_bb(s));
|
||||||
}
|
}
|
||||||
|
|
||||||
/// line_bb(Square, Square) returns a Bitboard representing an entire line
|
|
||||||
/// (from board edge to board edge) that intersects the given squares.
|
/// line_bb() returns a bitboard representing an entire line (from board edge
|
||||||
/// If the given squares are not on a same file/rank/diagonal, return 0.
|
/// to board edge) that intersects the two given squares. If the given squares
|
||||||
/// Ex. line_bb(SQ_C4, SQ_F7) returns a bitboard with the A2-G8 diagonal.
|
/// are not on a same file/rank/diagonal, the function returns 0. For instance,
|
||||||
|
/// line_bb(SQ_C4, SQ_F7) will return a bitboard with the A2-G8 diagonal.
|
||||||
|
|
||||||
inline Bitboard line_bb(Square s1, Square s2) {
|
inline Bitboard line_bb(Square s1, Square s2) {
|
||||||
|
|
||||||
|
@ -211,10 +212,11 @@ inline Bitboard line_bb(Square s1, Square s2) {
|
||||||
return LineBB[s1][s2];
|
return LineBB[s1][s2];
|
||||||
}
|
}
|
||||||
|
|
||||||
/// between_bb() returns a Bitboard representing squares that are linearly
|
|
||||||
/// between the given squares (excluding the given squares).
|
/// between_bb() returns a bitboard representing squares that are linearly
|
||||||
/// If the given squares are not on a same file/rank/diagonal, return 0.
|
/// between the two given squares (excluding the given squares). If the given
|
||||||
/// Ex. between_bb(SQ_C4, SQ_F7) returns a bitboard with squares D5 and E6.
|
/// squares are not on a same file/rank/diagonal, we return 0. For instance,
|
||||||
|
/// between_bb(SQ_C4, SQ_F7) will return a bitboard with squares D5 and E6.
|
||||||
|
|
||||||
inline Bitboard between_bb(Square s1, Square s2) {
|
inline Bitboard between_bb(Square s1, Square s2) {
|
||||||
Bitboard b = line_bb(s1, s2) & ((AllSquares << s1) ^ (AllSquares << s2));
|
Bitboard b = line_bb(s1, s2) & ((AllSquares << s1) ^ (AllSquares << s2));
|
||||||
|
@ -226,7 +228,7 @@ inline Bitboard between_bb(Square s1, Square s2) {
|
||||||
/// in front of the given one, from the point of view of the given color. For instance,
|
/// in front of the given one, from the point of view of the given color. For instance,
|
||||||
/// forward_ranks_bb(BLACK, SQ_D3) will return the 16 squares on ranks 1 and 2.
|
/// forward_ranks_bb(BLACK, SQ_D3) will return the 16 squares on ranks 1 and 2.
|
||||||
|
|
||||||
inline Bitboard forward_ranks_bb(Color c, Square s) {
|
constexpr Bitboard forward_ranks_bb(Color c, Square s) {
|
||||||
return c == WHITE ? ~Rank1BB << 8 * relative_rank(WHITE, s)
|
return c == WHITE ? ~Rank1BB << 8 * relative_rank(WHITE, s)
|
||||||
: ~Rank8BB >> 8 * relative_rank(BLACK, s);
|
: ~Rank8BB >> 8 * relative_rank(BLACK, s);
|
||||||
}
|
}
|
||||||
|
@ -235,16 +237,16 @@ inline Bitboard forward_ranks_bb(Color c, Square s) {
|
||||||
/// forward_file_bb() returns a bitboard representing all the squares along the
|
/// forward_file_bb() returns a bitboard representing all the squares along the
|
||||||
/// line in front of the given one, from the point of view of the given color.
|
/// line in front of the given one, from the point of view of the given color.
|
||||||
|
|
||||||
inline Bitboard forward_file_bb(Color c, Square s) {
|
constexpr Bitboard forward_file_bb(Color c, Square s) {
|
||||||
return forward_ranks_bb(c, s) & file_bb(s);
|
return forward_ranks_bb(c, s) & file_bb(s);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/// pawn_attack_span() returns a bitboard representing all the squares that can
|
/// pawn_attack_span() returns a bitboard representing all the squares that can
|
||||||
/// be attacked by a pawn of the given color when it moves along its file,
|
/// be attacked by a pawn of the given color when it moves along its file, starting
|
||||||
/// starting from the given square.
|
/// from the given square.
|
||||||
|
|
||||||
inline Bitboard pawn_attack_span(Color c, Square s) {
|
constexpr Bitboard pawn_attack_span(Color c, Square s) {
|
||||||
return forward_ranks_bb(c, s) & adjacent_files_bb(s);
|
return forward_ranks_bb(c, s) & adjacent_files_bb(s);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -252,8 +254,8 @@ inline Bitboard pawn_attack_span(Color c, Square s) {
|
||||||
/// passed_pawn_span() returns a bitboard which can be used to test if a pawn of
|
/// passed_pawn_span() returns a bitboard which can be used to test if a pawn of
|
||||||
/// the given color and on the given square is a passed pawn.
|
/// the given color and on the given square is a passed pawn.
|
||||||
|
|
||||||
inline Bitboard passed_pawn_span(Color c, Square s) {
|
constexpr Bitboard passed_pawn_span(Color c, Square s) {
|
||||||
return forward_ranks_bb(c, s) & (adjacent_files_bb(s) | file_bb(s));
|
return pawn_attack_span(c, s) | forward_file_bb(c, s);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -276,13 +278,6 @@ template<> inline int distance<Square>(Square x, Square y) { return SquareDistan
|
||||||
inline int edge_distance(File f) { return std::min(f, File(FILE_H - f)); }
|
inline int edge_distance(File f) { return std::min(f, File(FILE_H - f)); }
|
||||||
inline int edge_distance(Rank r) { return std::min(r, Rank(RANK_8 - r)); }
|
inline int edge_distance(Rank r) { return std::min(r, Rank(RANK_8 - r)); }
|
||||||
|
|
||||||
/// Return the target square bitboard if we do not step off the board, empty otherwise
|
|
||||||
|
|
||||||
inline Bitboard safe_destination(Square s, int step)
|
|
||||||
{
|
|
||||||
Square to = Square(s + step);
|
|
||||||
return is_ok(to) && distance(s, to) <= 2 ? square_bb(to) : Bitboard(0);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// attacks_bb(Square) returns the pseudo attacks of the give piece type
|
/// attacks_bb(Square) returns the pseudo attacks of the give piece type
|
||||||
/// assuming an empty board.
|
/// assuming an empty board.
|
||||||
|
@ -295,6 +290,7 @@ inline Bitboard attacks_bb(Square s) {
|
||||||
return PseudoAttacks[Pt][s];
|
return PseudoAttacks[Pt][s];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/// attacks_bb(Square, Bitboard) returns the attacks by the given piece
|
/// attacks_bb(Square, Bitboard) returns the attacks by the given piece
|
||||||
/// assuming the board is occupied according to the passed Bitboard.
|
/// assuming the board is occupied according to the passed Bitboard.
|
||||||
/// Sliding piece attacks do not continue passed an occupied square.
|
/// Sliding piece attacks do not continue passed an occupied square.
|
||||||
|
|
|
@ -1,8 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
||||||
Copyright (C) 2004-2008 Tord Romstad (Glaurung author)
|
Copyright (C) 2004-2020 The Stockfish developers (see AUTHORS file)
|
||||||
Copyright (C) 2008-2015 Marco Costalba, Joona Kiiski, Tord Romstad
|
|
||||||
Copyright (C) 2015-2020 Marco Costalba, Joona Kiiski, Gary Linscott, Tord Romstad
|
|
||||||
|
|
||||||
Stockfish is free software: you can redistribute it and/or modify
|
Stockfish is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
@ -28,12 +26,14 @@ namespace {
|
||||||
|
|
||||||
// Used to drive the king towards the edge of the board
|
// Used to drive the king towards the edge of the board
|
||||||
// in KX vs K and KQ vs KR endgames.
|
// in KX vs K and KQ vs KR endgames.
|
||||||
|
// Values range from 27 (center squares) to 90 (in the corners)
|
||||||
inline int push_to_edge(Square s) {
|
inline int push_to_edge(Square s) {
|
||||||
int rd = edge_distance(rank_of(s)), fd = edge_distance(file_of(s));
|
int rd = edge_distance(rank_of(s)), fd = edge_distance(file_of(s));
|
||||||
return 90 - (7 * fd * fd / 2 + 7 * rd * rd / 2);
|
return 90 - (7 * fd * fd / 2 + 7 * rd * rd / 2);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Used to drive the king towards A1H8 corners in KBN vs K endgames.
|
// Used to drive the king towards A1H8 corners in KBN vs K endgames.
|
||||||
|
// Values range from 0 on A8H1 diagonal to 7 in A1H8 corners
|
||||||
inline int push_to_corner(Square s) {
|
inline int push_to_corner(Square s) {
|
||||||
return abs(7 - rank_of(s) - file_of(s));
|
return abs(7 - rank_of(s) - file_of(s));
|
||||||
}
|
}
|
||||||
|
@ -103,13 +103,13 @@ Value Endgame<KXK>::operator()(const Position& pos) const {
|
||||||
if (pos.side_to_move() == weakSide && !MoveList<LEGAL>(pos).size())
|
if (pos.side_to_move() == weakSide && !MoveList<LEGAL>(pos).size())
|
||||||
return VALUE_DRAW;
|
return VALUE_DRAW;
|
||||||
|
|
||||||
Square winnerKSq = pos.square<KING>(strongSide);
|
Square strongKing = pos.square<KING>(strongSide);
|
||||||
Square loserKSq = pos.square<KING>(weakSide);
|
Square weakKing = pos.square<KING>(weakSide);
|
||||||
|
|
||||||
Value result = pos.non_pawn_material(strongSide)
|
Value result = pos.non_pawn_material(strongSide)
|
||||||
+ pos.count<PAWN>(strongSide) * PawnValueEg
|
+ pos.count<PAWN>(strongSide) * PawnValueEg
|
||||||
+ push_to_edge(loserKSq)
|
+ push_to_edge(weakKing)
|
||||||
+ push_close(winnerKSq, loserKSq);
|
+ push_close(strongKing, weakKing);
|
||||||
|
|
||||||
if ( pos.count<QUEEN>(strongSide)
|
if ( pos.count<QUEEN>(strongSide)
|
||||||
|| pos.count<ROOK>(strongSide)
|
|| pos.count<ROOK>(strongSide)
|
||||||
|
@ -130,16 +130,16 @@ Value Endgame<KBNK>::operator()(const Position& pos) const {
|
||||||
assert(verify_material(pos, strongSide, KnightValueMg + BishopValueMg, 0));
|
assert(verify_material(pos, strongSide, KnightValueMg + BishopValueMg, 0));
|
||||||
assert(verify_material(pos, weakSide, VALUE_ZERO, 0));
|
assert(verify_material(pos, weakSide, VALUE_ZERO, 0));
|
||||||
|
|
||||||
Square winnerKSq = pos.square<KING>(strongSide);
|
Square strongKing = pos.square<KING>(strongSide);
|
||||||
Square loserKSq = pos.square<KING>(weakSide);
|
Square strongBishop = pos.square<BISHOP>(strongSide);
|
||||||
Square bishopSq = pos.square<BISHOP>(strongSide);
|
Square weakKing = pos.square<KING>(weakSide);
|
||||||
|
|
||||||
// If our bishop does not attack A1/H8, we flip the enemy king square
|
// If our bishop does not attack A1/H8, we flip the enemy king square
|
||||||
// to drive to opposite corners (A8/H1).
|
// to drive to opposite corners (A8/H1).
|
||||||
|
|
||||||
Value result = (VALUE_KNOWN_WIN + 3520)
|
Value result = (VALUE_KNOWN_WIN + 3520)
|
||||||
+ push_close(winnerKSq, loserKSq)
|
+ push_close(strongKing, weakKing)
|
||||||
+ 420 * push_to_corner(opposite_colors(bishopSq, SQ_A1) ? flip_file(loserKSq) : loserKSq);
|
+ 420 * push_to_corner(opposite_colors(strongBishop, SQ_A1) ? flip_file(weakKing) : weakKing);
|
||||||
|
|
||||||
assert(abs(result) < VALUE_TB_WIN_IN_MAX_PLY);
|
assert(abs(result) < VALUE_TB_WIN_IN_MAX_PLY);
|
||||||
return strongSide == pos.side_to_move() ? result : -result;
|
return strongSide == pos.side_to_move() ? result : -result;
|
||||||
|
@ -154,16 +154,16 @@ Value Endgame<KPK>::operator()(const Position& pos) const {
|
||||||
assert(verify_material(pos, weakSide, VALUE_ZERO, 0));
|
assert(verify_material(pos, weakSide, VALUE_ZERO, 0));
|
||||||
|
|
||||||
// Assume strongSide is white and the pawn is on files A-D
|
// Assume strongSide is white and the pawn is on files A-D
|
||||||
Square wksq = normalize(pos, strongSide, pos.square<KING>(strongSide));
|
Square strongKing = normalize(pos, strongSide, pos.square<KING>(strongSide));
|
||||||
Square bksq = normalize(pos, strongSide, pos.square<KING>(weakSide));
|
Square strongPawn = normalize(pos, strongSide, pos.square<PAWN>(strongSide));
|
||||||
Square psq = normalize(pos, strongSide, pos.square<PAWN>(strongSide));
|
Square weakKing = normalize(pos, strongSide, pos.square<KING>(weakSide));
|
||||||
|
|
||||||
Color us = strongSide == pos.side_to_move() ? WHITE : BLACK;
|
Color us = strongSide == pos.side_to_move() ? WHITE : BLACK;
|
||||||
|
|
||||||
if (!Bitbases::probe(wksq, psq, bksq, us))
|
if (!Bitbases::probe(strongKing, strongPawn, weakKing, us))
|
||||||
return VALUE_DRAW;
|
return VALUE_DRAW;
|
||||||
|
|
||||||
Value result = VALUE_KNOWN_WIN + PawnValueEg + Value(rank_of(psq));
|
Value result = VALUE_KNOWN_WIN + PawnValueEg + Value(rank_of(strongPawn));
|
||||||
|
|
||||||
return strongSide == pos.side_to_move() ? result : -result;
|
return strongSide == pos.side_to_move() ? result : -result;
|
||||||
}
|
}
|
||||||
|
@ -179,36 +179,35 @@ Value Endgame<KRKP>::operator()(const Position& pos) const {
|
||||||
assert(verify_material(pos, strongSide, RookValueMg, 0));
|
assert(verify_material(pos, strongSide, RookValueMg, 0));
|
||||||
assert(verify_material(pos, weakSide, VALUE_ZERO, 1));
|
assert(verify_material(pos, weakSide, VALUE_ZERO, 1));
|
||||||
|
|
||||||
Square wksq = relative_square(strongSide, pos.square<KING>(strongSide));
|
Square strongKing = pos.square<KING>(strongSide);
|
||||||
Square bksq = relative_square(strongSide, pos.square<KING>(weakSide));
|
Square weakKing = pos.square<KING>(weakSide);
|
||||||
Square rsq = relative_square(strongSide, pos.square<ROOK>(strongSide));
|
Square strongRook = pos.square<ROOK>(strongSide);
|
||||||
Square psq = relative_square(strongSide, pos.square<PAWN>(weakSide));
|
Square weakPawn = pos.square<PAWN>(weakSide);
|
||||||
|
Square queeningSquare = make_square(file_of(weakPawn), relative_rank(weakSide, RANK_8));
|
||||||
Square queeningSq = make_square(file_of(psq), RANK_1);
|
|
||||||
Value result;
|
Value result;
|
||||||
|
|
||||||
// If the stronger side's king is in front of the pawn, it's a win
|
// If the stronger side's king is in front of the pawn, it's a win
|
||||||
if (forward_file_bb(WHITE, wksq) & psq)
|
if (forward_file_bb(strongSide, strongKing) & weakPawn)
|
||||||
result = RookValueEg - distance(wksq, psq);
|
result = RookValueEg - distance(strongKing, weakPawn);
|
||||||
|
|
||||||
// If the weaker side's king is too far from the pawn and the rook,
|
// If the weaker side's king is too far from the pawn and the rook,
|
||||||
// it's a win.
|
// it's a win.
|
||||||
else if ( distance(bksq, psq) >= 3 + (pos.side_to_move() == weakSide)
|
else if ( distance(weakKing, weakPawn) >= 3 + (pos.side_to_move() == weakSide)
|
||||||
&& distance(bksq, rsq) >= 3)
|
&& distance(weakKing, strongRook) >= 3)
|
||||||
result = RookValueEg - distance(wksq, psq);
|
result = RookValueEg - distance(strongKing, weakPawn);
|
||||||
|
|
||||||
// If the pawn is far advanced and supported by the defending king,
|
// If the pawn is far advanced and supported by the defending king,
|
||||||
// the position is drawish
|
// the position is drawish
|
||||||
else if ( rank_of(bksq) <= RANK_3
|
else if ( relative_rank(strongSide, weakKing) <= RANK_3
|
||||||
&& distance(bksq, psq) == 1
|
&& distance(weakKing, weakPawn) == 1
|
||||||
&& rank_of(wksq) >= RANK_4
|
&& relative_rank(strongSide, strongKing) >= RANK_4
|
||||||
&& distance(wksq, psq) > 2 + (pos.side_to_move() == strongSide))
|
&& distance(strongKing, weakPawn) > 2 + (pos.side_to_move() == strongSide))
|
||||||
result = Value(80) - 8 * distance(wksq, psq);
|
result = Value(80) - 8 * distance(strongKing, weakPawn);
|
||||||
|
|
||||||
else
|
else
|
||||||
result = Value(200) - 8 * ( distance(wksq, psq + SOUTH)
|
result = Value(200) - 8 * ( distance(strongKing, weakPawn + pawn_push(weakSide))
|
||||||
- distance(bksq, psq + SOUTH)
|
- distance(weakKing, weakPawn + pawn_push(weakSide))
|
||||||
- distance(psq, queeningSq));
|
- distance(weakPawn, queeningSquare));
|
||||||
|
|
||||||
return strongSide == pos.side_to_move() ? result : -result;
|
return strongSide == pos.side_to_move() ? result : -result;
|
||||||
}
|
}
|
||||||
|
@ -235,9 +234,9 @@ Value Endgame<KRKN>::operator()(const Position& pos) const {
|
||||||
assert(verify_material(pos, strongSide, RookValueMg, 0));
|
assert(verify_material(pos, strongSide, RookValueMg, 0));
|
||||||
assert(verify_material(pos, weakSide, KnightValueMg, 0));
|
assert(verify_material(pos, weakSide, KnightValueMg, 0));
|
||||||
|
|
||||||
Square bksq = pos.square<KING>(weakSide);
|
Square weakKing = pos.square<KING>(weakSide);
|
||||||
Square bnsq = pos.square<KNIGHT>(weakSide);
|
Square weakKnight = pos.square<KNIGHT>(weakSide);
|
||||||
Value result = Value(push_to_edge(bksq) + push_away(bksq, bnsq));
|
Value result = Value(push_to_edge(weakKing) + push_away(weakKing, weakKnight));
|
||||||
return strongSide == pos.side_to_move() ? result : -result;
|
return strongSide == pos.side_to_move() ? result : -result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -252,22 +251,22 @@ Value Endgame<KQKP>::operator()(const Position& pos) const {
|
||||||
assert(verify_material(pos, strongSide, QueenValueMg, 0));
|
assert(verify_material(pos, strongSide, QueenValueMg, 0));
|
||||||
assert(verify_material(pos, weakSide, VALUE_ZERO, 1));
|
assert(verify_material(pos, weakSide, VALUE_ZERO, 1));
|
||||||
|
|
||||||
Square winnerKSq = pos.square<KING>(strongSide);
|
Square strongKing = pos.square<KING>(strongSide);
|
||||||
Square loserKSq = pos.square<KING>(weakSide);
|
Square weakKing = pos.square<KING>(weakSide);
|
||||||
Square pawnSq = pos.square<PAWN>(weakSide);
|
Square weakPawn = pos.square<PAWN>(weakSide);
|
||||||
|
|
||||||
Value result = Value(push_close(winnerKSq, loserKSq));
|
Value result = Value(push_close(strongKing, weakKing));
|
||||||
|
|
||||||
if ( relative_rank(weakSide, pawnSq) != RANK_7
|
if ( relative_rank(weakSide, weakPawn) != RANK_7
|
||||||
|| distance(loserKSq, pawnSq) != 1
|
|| distance(weakKing, weakPawn) != 1
|
||||||
|| ((FileBBB | FileDBB | FileEBB | FileGBB) & pawnSq))
|
|| ((FileBBB | FileDBB | FileEBB | FileGBB) & weakPawn))
|
||||||
result += QueenValueEg - PawnValueEg;
|
result += QueenValueEg - PawnValueEg;
|
||||||
|
|
||||||
return strongSide == pos.side_to_move() ? result : -result;
|
return strongSide == pos.side_to_move() ? result : -result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/// KQ vs KR. This is almost identical to KX vs K: We give the attacking
|
/// KQ vs KR. This is almost identical to KX vs K: we give the attacking
|
||||||
/// king a bonus for having the kings close together, and for forcing the
|
/// king a bonus for having the kings close together, and for forcing the
|
||||||
/// defending king towards the edge. If we also take care to avoid null move for
|
/// defending king towards the edge. If we also take care to avoid null move for
|
||||||
/// the defending side in the search, this is usually sufficient to win KQ vs KR.
|
/// the defending side in the search, this is usually sufficient to win KQ vs KR.
|
||||||
|
@ -277,29 +276,32 @@ Value Endgame<KQKR>::operator()(const Position& pos) const {
|
||||||
assert(verify_material(pos, strongSide, QueenValueMg, 0));
|
assert(verify_material(pos, strongSide, QueenValueMg, 0));
|
||||||
assert(verify_material(pos, weakSide, RookValueMg, 0));
|
assert(verify_material(pos, weakSide, RookValueMg, 0));
|
||||||
|
|
||||||
Square winnerKSq = pos.square<KING>(strongSide);
|
Square strongKing = pos.square<KING>(strongSide);
|
||||||
Square loserKSq = pos.square<KING>(weakSide);
|
Square weakKing = pos.square<KING>(weakSide);
|
||||||
|
|
||||||
Value result = QueenValueEg
|
Value result = QueenValueEg
|
||||||
- RookValueEg
|
- RookValueEg
|
||||||
+ push_to_edge(loserKSq)
|
+ push_to_edge(weakKing)
|
||||||
+ push_close(winnerKSq, loserKSq);
|
+ push_close(strongKing, weakKing);
|
||||||
|
|
||||||
return strongSide == pos.side_to_move() ? result : -result;
|
return strongSide == pos.side_to_move() ? result : -result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/// KNN vs KP. Very drawish, but there are some mate opportunities if we can
|
/// KNN vs KP. Very drawish, but there are some mate opportunities if we can
|
||||||
// press the weakSide King to a corner before the pawn advances too much.
|
/// press the weakSide King to a corner before the pawn advances too much.
|
||||||
template<>
|
template<>
|
||||||
Value Endgame<KNNKP>::operator()(const Position& pos) const {
|
Value Endgame<KNNKP>::operator()(const Position& pos) const {
|
||||||
|
|
||||||
assert(verify_material(pos, strongSide, 2 * KnightValueMg, 0));
|
assert(verify_material(pos, strongSide, 2 * KnightValueMg, 0));
|
||||||
assert(verify_material(pos, weakSide, VALUE_ZERO, 1));
|
assert(verify_material(pos, weakSide, VALUE_ZERO, 1));
|
||||||
|
|
||||||
|
Square weakKing = pos.square<KING>(weakSide);
|
||||||
|
Square weakPawn = pos.square<PAWN>(weakSide);
|
||||||
|
|
||||||
Value result = PawnValueEg
|
Value result = PawnValueEg
|
||||||
+ 2 * push_to_edge(pos.square<KING>(weakSide))
|
+ 2 * push_to_edge(weakKing)
|
||||||
- 10 * relative_rank(weakSide, pos.square<PAWN>(weakSide));
|
- 10 * relative_rank(weakSide, weakPawn);
|
||||||
|
|
||||||
return strongSide == pos.side_to_move() ? result : -result;
|
return strongSide == pos.side_to_move() ? result : -result;
|
||||||
}
|
}
|
||||||
|
@ -325,15 +327,17 @@ ScaleFactor Endgame<KBPsK>::operator()(const Position& pos) const {
|
||||||
Bitboard strongPawns = pos.pieces(strongSide, PAWN);
|
Bitboard strongPawns = pos.pieces(strongSide, PAWN);
|
||||||
Bitboard allPawns = pos.pieces(PAWN);
|
Bitboard allPawns = pos.pieces(PAWN);
|
||||||
|
|
||||||
|
Square strongBishop = pos.square<BISHOP>(strongSide);
|
||||||
|
Square weakKing = pos.square<KING>(weakSide);
|
||||||
|
Square strongKing = pos.square<KING>(strongSide);
|
||||||
|
|
||||||
// All strongSide pawns are on a single rook file?
|
// All strongSide pawns are on a single rook file?
|
||||||
if (!(strongPawns & ~FileABB) || !(strongPawns & ~FileHBB))
|
if (!(strongPawns & ~FileABB) || !(strongPawns & ~FileHBB))
|
||||||
{
|
{
|
||||||
Square bishopSq = pos.square<BISHOP>(strongSide);
|
Square queeningSquare = relative_square(strongSide, make_square(file_of(lsb(strongPawns)), RANK_8));
|
||||||
Square queeningSq = relative_square(strongSide, make_square(file_of(lsb(strongPawns)), RANK_8));
|
|
||||||
Square weakKingSq = pos.square<KING>(weakSide);
|
|
||||||
|
|
||||||
if ( opposite_colors(queeningSq, bishopSq)
|
if ( opposite_colors(queeningSquare, strongBishop)
|
||||||
&& distance(queeningSq, weakKingSq) <= 1)
|
&& distance(queeningSquare, weakKing) <= 1)
|
||||||
return SCALE_FACTOR_DRAW;
|
return SCALE_FACTOR_DRAW;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -343,28 +347,24 @@ ScaleFactor Endgame<KBPsK>::operator()(const Position& pos) const {
|
||||||
&& pos.count<PAWN>(weakSide) >= 1)
|
&& pos.count<PAWN>(weakSide) >= 1)
|
||||||
{
|
{
|
||||||
// Get the least advanced weakSide pawn
|
// Get the least advanced weakSide pawn
|
||||||
Square weakPawnSq = frontmost_sq(strongSide, pos.pieces(weakSide, PAWN));
|
Square weakPawn = frontmost_sq(strongSide, pos.pieces(weakSide, PAWN));
|
||||||
|
|
||||||
Square strongKingSq = pos.square<KING>(strongSide);
|
|
||||||
Square weakKingSq = pos.square<KING>(weakSide);
|
|
||||||
Square bishopSq = pos.square<BISHOP>(strongSide);
|
|
||||||
|
|
||||||
// There's potential for a draw if our pawn is blocked on the 7th rank,
|
// There's potential for a draw if our pawn is blocked on the 7th rank,
|
||||||
// the bishop cannot attack it or they only have one pawn left
|
// the bishop cannot attack it or they only have one pawn left.
|
||||||
if ( relative_rank(strongSide, weakPawnSq) == RANK_7
|
if ( relative_rank(strongSide, weakPawn) == RANK_7
|
||||||
&& (strongPawns & (weakPawnSq + pawn_push(weakSide)))
|
&& (strongPawns & (weakPawn + pawn_push(weakSide)))
|
||||||
&& (opposite_colors(bishopSq, weakPawnSq) || !more_than_one(strongPawns)))
|
&& (opposite_colors(strongBishop, weakPawn) || !more_than_one(strongPawns)))
|
||||||
{
|
{
|
||||||
int strongKingDist = distance(weakPawnSq, strongKingSq);
|
int strongKingDist = distance(weakPawn, strongKing);
|
||||||
int weakKingDist = distance(weakPawnSq, weakKingSq);
|
int weakKingDist = distance(weakPawn, weakKing);
|
||||||
|
|
||||||
// It's a draw if the weak king is on its back two ranks, within 2
|
// It's a draw if the weak king is on its back two ranks, within 2
|
||||||
// squares of the blocking pawn and the strong king is not
|
// squares of the blocking pawn and the strong king is not
|
||||||
// closer. (I think this rule only fails in practically
|
// closer. (I think this rule only fails in practically
|
||||||
// unreachable positions such as 5k1K/6p1/6P1/8/8/3B4/8/8 w
|
// unreachable positions such as 5k1K/6p1/6P1/8/8/3B4/8/8 w
|
||||||
// and positions where qsearch will immediately correct the
|
// and positions where qsearch will immediately correct the
|
||||||
// problem such as 8/4k1p1/6P1/1K6/3B4/8/8/8 w)
|
// problem such as 8/4k1p1/6P1/1K6/3B4/8/8/8 w).
|
||||||
if ( relative_rank(strongSide, weakKingSq) >= RANK_7
|
if ( relative_rank(strongSide, weakKing) >= RANK_7
|
||||||
&& weakKingDist <= 2
|
&& weakKingDist <= 2
|
||||||
&& weakKingDist <= strongKingDist)
|
&& weakKingDist <= strongKingDist)
|
||||||
return SCALE_FACTOR_DRAW;
|
return SCALE_FACTOR_DRAW;
|
||||||
|
@ -384,15 +384,16 @@ ScaleFactor Endgame<KQKRPs>::operator()(const Position& pos) const {
|
||||||
assert(pos.count<ROOK>(weakSide) == 1);
|
assert(pos.count<ROOK>(weakSide) == 1);
|
||||||
assert(pos.count<PAWN>(weakSide) >= 1);
|
assert(pos.count<PAWN>(weakSide) >= 1);
|
||||||
|
|
||||||
Square kingSq = pos.square<KING>(weakSide);
|
Square strongKing = pos.square<KING>(strongSide);
|
||||||
Square rsq = pos.square<ROOK>(weakSide);
|
Square weakKing = pos.square<KING>(weakSide);
|
||||||
|
Square weakRook = pos.square<ROOK>(weakSide);
|
||||||
|
|
||||||
if ( relative_rank(weakSide, kingSq) <= RANK_2
|
if ( relative_rank(weakSide, weakKing) <= RANK_2
|
||||||
&& relative_rank(weakSide, pos.square<KING>(strongSide)) >= RANK_4
|
&& relative_rank(weakSide, strongKing) >= RANK_4
|
||||||
&& relative_rank(weakSide, rsq) == RANK_3
|
&& relative_rank(weakSide, weakRook) == RANK_3
|
||||||
&& ( pos.pieces(weakSide, PAWN)
|
&& ( pos.pieces(weakSide, PAWN)
|
||||||
& attacks_bb<KING>(kingSq)
|
& attacks_bb<KING>(weakKing)
|
||||||
& pawn_attacks_bb(strongSide, rsq)))
|
& pawn_attacks_bb(strongSide, weakRook)))
|
||||||
return SCALE_FACTOR_DRAW;
|
return SCALE_FACTOR_DRAW;
|
||||||
|
|
||||||
return SCALE_FACTOR_NONE;
|
return SCALE_FACTOR_NONE;
|
||||||
|
@ -412,89 +413,89 @@ ScaleFactor Endgame<KRPKR>::operator()(const Position& pos) const {
|
||||||
assert(verify_material(pos, weakSide, RookValueMg, 0));
|
assert(verify_material(pos, weakSide, RookValueMg, 0));
|
||||||
|
|
||||||
// Assume strongSide is white and the pawn is on files A-D
|
// Assume strongSide is white and the pawn is on files A-D
|
||||||
Square wksq = normalize(pos, strongSide, pos.square<KING>(strongSide));
|
Square strongKing = normalize(pos, strongSide, pos.square<KING>(strongSide));
|
||||||
Square bksq = normalize(pos, strongSide, pos.square<KING>(weakSide));
|
Square strongRook = normalize(pos, strongSide, pos.square<ROOK>(strongSide));
|
||||||
Square wrsq = normalize(pos, strongSide, pos.square<ROOK>(strongSide));
|
Square strongPawn = normalize(pos, strongSide, pos.square<PAWN>(strongSide));
|
||||||
Square wpsq = normalize(pos, strongSide, pos.square<PAWN>(strongSide));
|
Square weakKing = normalize(pos, strongSide, pos.square<KING>(weakSide));
|
||||||
Square brsq = normalize(pos, strongSide, pos.square<ROOK>(weakSide));
|
Square weakRook = normalize(pos, strongSide, pos.square<ROOK>(weakSide));
|
||||||
|
|
||||||
File f = file_of(wpsq);
|
File pawnFile = file_of(strongPawn);
|
||||||
Rank r = rank_of(wpsq);
|
Rank pawnRank = rank_of(strongPawn);
|
||||||
Square queeningSq = make_square(f, RANK_8);
|
Square queeningSquare = make_square(pawnFile, RANK_8);
|
||||||
int tempo = (pos.side_to_move() == strongSide);
|
int tempo = (pos.side_to_move() == strongSide);
|
||||||
|
|
||||||
// If the pawn is not too far advanced and the defending king defends the
|
// If the pawn is not too far advanced and the defending king defends the
|
||||||
// queening square, use the third-rank defence.
|
// queening square, use the third-rank defence.
|
||||||
if ( r <= RANK_5
|
if ( pawnRank <= RANK_5
|
||||||
&& distance(bksq, queeningSq) <= 1
|
&& distance(weakKing, queeningSquare) <= 1
|
||||||
&& wksq <= SQ_H5
|
&& strongKing <= SQ_H5
|
||||||
&& (rank_of(brsq) == RANK_6 || (r <= RANK_3 && rank_of(wrsq) != RANK_6)))
|
&& (rank_of(weakRook) == RANK_6 || (pawnRank <= RANK_3 && rank_of(strongRook) != RANK_6)))
|
||||||
return SCALE_FACTOR_DRAW;
|
return SCALE_FACTOR_DRAW;
|
||||||
|
|
||||||
// The defending side saves a draw by checking from behind in case the pawn
|
// The defending side saves a draw by checking from behind in case the pawn
|
||||||
// has advanced to the 6th rank with the king behind.
|
// has advanced to the 6th rank with the king behind.
|
||||||
if ( r == RANK_6
|
if ( pawnRank == RANK_6
|
||||||
&& distance(bksq, queeningSq) <= 1
|
&& distance(weakKing, queeningSquare) <= 1
|
||||||
&& rank_of(wksq) + tempo <= RANK_6
|
&& rank_of(strongKing) + tempo <= RANK_6
|
||||||
&& (rank_of(brsq) == RANK_1 || (!tempo && distance<File>(brsq, wpsq) >= 3)))
|
&& (rank_of(weakRook) == RANK_1 || (!tempo && distance<File>(weakRook, strongPawn) >= 3)))
|
||||||
return SCALE_FACTOR_DRAW;
|
return SCALE_FACTOR_DRAW;
|
||||||
|
|
||||||
if ( r >= RANK_6
|
if ( pawnRank >= RANK_6
|
||||||
&& bksq == queeningSq
|
&& weakKing == queeningSquare
|
||||||
&& rank_of(brsq) == RANK_1
|
&& rank_of(weakRook) == RANK_1
|
||||||
&& (!tempo || distance(wksq, wpsq) >= 2))
|
&& (!tempo || distance(strongKing, strongPawn) >= 2))
|
||||||
return SCALE_FACTOR_DRAW;
|
return SCALE_FACTOR_DRAW;
|
||||||
|
|
||||||
// White pawn on a7 and rook on a8 is a draw if black's king is on g7 or h7
|
// White pawn on a7 and rook on a8 is a draw if black's king is on g7 or h7
|
||||||
// and the black rook is behind the pawn.
|
// and the black rook is behind the pawn.
|
||||||
if ( wpsq == SQ_A7
|
if ( strongPawn == SQ_A7
|
||||||
&& wrsq == SQ_A8
|
&& strongRook == SQ_A8
|
||||||
&& (bksq == SQ_H7 || bksq == SQ_G7)
|
&& (weakKing == SQ_H7 || weakKing == SQ_G7)
|
||||||
&& file_of(brsq) == FILE_A
|
&& file_of(weakRook) == FILE_A
|
||||||
&& (rank_of(brsq) <= RANK_3 || file_of(wksq) >= FILE_D || rank_of(wksq) <= RANK_5))
|
&& (rank_of(weakRook) <= RANK_3 || file_of(strongKing) >= FILE_D || rank_of(strongKing) <= RANK_5))
|
||||||
return SCALE_FACTOR_DRAW;
|
return SCALE_FACTOR_DRAW;
|
||||||
|
|
||||||
// If the defending king blocks the pawn and the attacking king is too far
|
// If the defending king blocks the pawn and the attacking king is too far
|
||||||
// away, it's a draw.
|
// away, it's a draw.
|
||||||
if ( r <= RANK_5
|
if ( pawnRank <= RANK_5
|
||||||
&& bksq == wpsq + NORTH
|
&& weakKing == strongPawn + NORTH
|
||||||
&& distance(wksq, wpsq) - tempo >= 2
|
&& distance(strongKing, strongPawn) - tempo >= 2
|
||||||
&& distance(wksq, brsq) - tempo >= 2)
|
&& distance(strongKing, weakRook) - tempo >= 2)
|
||||||
return SCALE_FACTOR_DRAW;
|
return SCALE_FACTOR_DRAW;
|
||||||
|
|
||||||
// Pawn on the 7th rank supported by the rook from behind usually wins if the
|
// Pawn on the 7th rank supported by the rook from behind usually wins if the
|
||||||
// attacking king is closer to the queening square than the defending king,
|
// attacking king is closer to the queening square than the defending king,
|
||||||
// and the defending king cannot gain tempi by threatening the attacking rook.
|
// and the defending king cannot gain tempi by threatening the attacking rook.
|
||||||
if ( r == RANK_7
|
if ( pawnRank == RANK_7
|
||||||
&& f != FILE_A
|
&& pawnFile != FILE_A
|
||||||
&& file_of(wrsq) == f
|
&& file_of(strongRook) == pawnFile
|
||||||
&& wrsq != queeningSq
|
&& strongRook != queeningSquare
|
||||||
&& (distance(wksq, queeningSq) < distance(bksq, queeningSq) - 2 + tempo)
|
&& (distance(strongKing, queeningSquare) < distance(weakKing, queeningSquare) - 2 + tempo)
|
||||||
&& (distance(wksq, queeningSq) < distance(bksq, wrsq) + tempo))
|
&& (distance(strongKing, queeningSquare) < distance(weakKing, strongRook) + tempo))
|
||||||
return ScaleFactor(SCALE_FACTOR_MAX - 2 * distance(wksq, queeningSq));
|
return ScaleFactor(SCALE_FACTOR_MAX - 2 * distance(strongKing, queeningSquare));
|
||||||
|
|
||||||
// Similar to the above, but with the pawn further back
|
// Similar to the above, but with the pawn further back
|
||||||
if ( f != FILE_A
|
if ( pawnFile != FILE_A
|
||||||
&& file_of(wrsq) == f
|
&& file_of(strongRook) == pawnFile
|
||||||
&& wrsq < wpsq
|
&& strongRook < strongPawn
|
||||||
&& (distance(wksq, queeningSq) < distance(bksq, queeningSq) - 2 + tempo)
|
&& (distance(strongKing, queeningSquare) < distance(weakKing, queeningSquare) - 2 + tempo)
|
||||||
&& (distance(wksq, wpsq + NORTH) < distance(bksq, wpsq + NORTH) - 2 + tempo)
|
&& (distance(strongKing, strongPawn + NORTH) < distance(weakKing, strongPawn + NORTH) - 2 + tempo)
|
||||||
&& ( distance(bksq, wrsq) + tempo >= 3
|
&& ( distance(weakKing, strongRook) + tempo >= 3
|
||||||
|| ( distance(wksq, queeningSq) < distance(bksq, wrsq) + tempo
|
|| ( distance(strongKing, queeningSquare) < distance(weakKing, strongRook) + tempo
|
||||||
&& (distance(wksq, wpsq + NORTH) < distance(bksq, wrsq) + tempo))))
|
&& (distance(strongKing, strongPawn + NORTH) < distance(weakKing, strongPawn) + tempo))))
|
||||||
return ScaleFactor( SCALE_FACTOR_MAX
|
return ScaleFactor( SCALE_FACTOR_MAX
|
||||||
- 8 * distance(wpsq, queeningSq)
|
- 8 * distance(strongPawn, queeningSquare)
|
||||||
- 2 * distance(wksq, queeningSq));
|
- 2 * distance(strongKing, queeningSquare));
|
||||||
|
|
||||||
// If the pawn is not far advanced and the defending king is somewhere in
|
// If the pawn is not far advanced and the defending king is somewhere in
|
||||||
// the pawn's path, it's probably a draw.
|
// the pawn's path, it's probably a draw.
|
||||||
if (r <= RANK_4 && bksq > wpsq)
|
if (pawnRank <= RANK_4 && weakKing > strongPawn)
|
||||||
{
|
{
|
||||||
if (file_of(bksq) == file_of(wpsq))
|
if (file_of(weakKing) == file_of(strongPawn))
|
||||||
return ScaleFactor(10);
|
return ScaleFactor(10);
|
||||||
if ( distance<File>(bksq, wpsq) == 1
|
if ( distance<File>(weakKing, strongPawn) == 1
|
||||||
&& distance(wksq, bksq) > 2)
|
&& distance(strongKing, weakKing) > 2)
|
||||||
return ScaleFactor(24 - 2 * distance(wksq, bksq));
|
return ScaleFactor(24 - 2 * distance(strongKing, weakKing));
|
||||||
}
|
}
|
||||||
return SCALE_FACTOR_NONE;
|
return SCALE_FACTOR_NONE;
|
||||||
}
|
}
|
||||||
|
@ -508,10 +509,11 @@ ScaleFactor Endgame<KRPKB>::operator()(const Position& pos) const {
|
||||||
// Test for a rook pawn
|
// Test for a rook pawn
|
||||||
if (pos.pieces(PAWN) & (FileABB | FileHBB))
|
if (pos.pieces(PAWN) & (FileABB | FileHBB))
|
||||||
{
|
{
|
||||||
Square ksq = pos.square<KING>(weakSide);
|
Square weakKing = pos.square<KING>(weakSide);
|
||||||
Square bsq = pos.square<BISHOP>(weakSide);
|
Square weakBishop = pos.square<BISHOP>(weakSide);
|
||||||
Square psq = pos.square<PAWN>(strongSide);
|
Square strongKing = pos.square<KING>(strongSide);
|
||||||
Rank rk = relative_rank(strongSide, psq);
|
Square strongPawn = pos.square<PAWN>(strongSide);
|
||||||
|
Rank pawnRank = relative_rank(strongSide, strongPawn);
|
||||||
Direction push = pawn_push(strongSide);
|
Direction push = pawn_push(strongSide);
|
||||||
|
|
||||||
// If the pawn is on the 5th rank and the pawn (currently) is on
|
// If the pawn is on the 5th rank and the pawn (currently) is on
|
||||||
|
@ -519,11 +521,11 @@ ScaleFactor Endgame<KRPKB>::operator()(const Position& pos) const {
|
||||||
// a fortress. Depending on the king position give a moderate
|
// a fortress. Depending on the king position give a moderate
|
||||||
// reduction or a stronger one if the defending king is near the
|
// reduction or a stronger one if the defending king is near the
|
||||||
// corner but not trapped there.
|
// corner but not trapped there.
|
||||||
if (rk == RANK_5 && !opposite_colors(bsq, psq))
|
if (pawnRank == RANK_5 && !opposite_colors(weakBishop, strongPawn))
|
||||||
{
|
{
|
||||||
int d = distance(psq + 3 * push, ksq);
|
int d = distance(strongPawn + 3 * push, weakKing);
|
||||||
|
|
||||||
if (d <= 2 && !(d == 0 && ksq == pos.square<KING>(strongSide) + 2 * push))
|
if (d <= 2 && !(d == 0 && weakKing == strongKing + 2 * push))
|
||||||
return ScaleFactor(24);
|
return ScaleFactor(24);
|
||||||
else
|
else
|
||||||
return ScaleFactor(48);
|
return ScaleFactor(48);
|
||||||
|
@ -533,10 +535,10 @@ ScaleFactor Endgame<KRPKB>::operator()(const Position& pos) const {
|
||||||
// it's drawn if the bishop attacks the square in front of the
|
// it's drawn if the bishop attacks the square in front of the
|
||||||
// pawn from a reasonable distance and the defending king is near
|
// pawn from a reasonable distance and the defending king is near
|
||||||
// the corner
|
// the corner
|
||||||
if ( rk == RANK_6
|
if ( pawnRank == RANK_6
|
||||||
&& distance(psq + 2 * push, ksq) <= 1
|
&& distance(strongPawn + 2 * push, weakKing) <= 1
|
||||||
&& (attacks_bb<BISHOP>(bsq) & (psq + push))
|
&& (attacks_bb<BISHOP>(weakBishop) & (strongPawn + push))
|
||||||
&& distance<File>(bsq, psq) >= 2)
|
&& distance<File>(weakBishop, strongPawn) >= 2)
|
||||||
return ScaleFactor(8);
|
return ScaleFactor(8);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -551,28 +553,28 @@ ScaleFactor Endgame<KRPPKRP>::operator()(const Position& pos) const {
|
||||||
assert(verify_material(pos, strongSide, RookValueMg, 2));
|
assert(verify_material(pos, strongSide, RookValueMg, 2));
|
||||||
assert(verify_material(pos, weakSide, RookValueMg, 1));
|
assert(verify_material(pos, weakSide, RookValueMg, 1));
|
||||||
|
|
||||||
Square wpsq1 = pos.squares<PAWN>(strongSide)[0];
|
Square strongPawn1 = pos.squares<PAWN>(strongSide)[0];
|
||||||
Square wpsq2 = pos.squares<PAWN>(strongSide)[1];
|
Square strongPawn2 = pos.squares<PAWN>(strongSide)[1];
|
||||||
Square bksq = pos.square<KING>(weakSide);
|
Square weakKing = pos.square<KING>(weakSide);
|
||||||
|
|
||||||
// Does the stronger side have a passed pawn?
|
// Does the stronger side have a passed pawn?
|
||||||
if (pos.pawn_passed(strongSide, wpsq1) || pos.pawn_passed(strongSide, wpsq2))
|
if (pos.pawn_passed(strongSide, strongPawn1) || pos.pawn_passed(strongSide, strongPawn2))
|
||||||
return SCALE_FACTOR_NONE;
|
return SCALE_FACTOR_NONE;
|
||||||
|
|
||||||
Rank r = std::max(relative_rank(strongSide, wpsq1), relative_rank(strongSide, wpsq2));
|
Rank pawnRank = std::max(relative_rank(strongSide, strongPawn1), relative_rank(strongSide, strongPawn2));
|
||||||
|
|
||||||
if ( distance<File>(bksq, wpsq1) <= 1
|
if ( distance<File>(weakKing, strongPawn1) <= 1
|
||||||
&& distance<File>(bksq, wpsq2) <= 1
|
&& distance<File>(weakKing, strongPawn2) <= 1
|
||||||
&& relative_rank(strongSide, bksq) > r)
|
&& relative_rank(strongSide, weakKing) > pawnRank)
|
||||||
{
|
{
|
||||||
assert(r > RANK_1 && r < RANK_7);
|
assert(pawnRank > RANK_1 && pawnRank < RANK_7);
|
||||||
return ScaleFactor(7 * r);
|
return ScaleFactor(7 * pawnRank);
|
||||||
}
|
}
|
||||||
return SCALE_FACTOR_NONE;
|
return SCALE_FACTOR_NONE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/// K and two or more pawns vs K. There is just a single rule here: If all pawns
|
/// K and two or more pawns vs K. There is just a single rule here: if all pawns
|
||||||
/// are on the same rook file and are blocked by the defending king, it's a draw.
|
/// are on the same rook file and are blocked by the defending king, it's a draw.
|
||||||
template<>
|
template<>
|
||||||
ScaleFactor Endgame<KPsK>::operator()(const Position& pos) const {
|
ScaleFactor Endgame<KPsK>::operator()(const Position& pos) const {
|
||||||
|
@ -581,12 +583,12 @@ ScaleFactor Endgame<KPsK>::operator()(const Position& pos) const {
|
||||||
assert(pos.count<PAWN>(strongSide) >= 2);
|
assert(pos.count<PAWN>(strongSide) >= 2);
|
||||||
assert(verify_material(pos, weakSide, VALUE_ZERO, 0));
|
assert(verify_material(pos, weakSide, VALUE_ZERO, 0));
|
||||||
|
|
||||||
Square ksq = pos.square<KING>(weakSide);
|
Square weakKing = pos.square<KING>(weakSide);
|
||||||
Bitboard pawns = pos.pieces(strongSide, PAWN);
|
Bitboard strongPawns = pos.pieces(strongSide, PAWN);
|
||||||
|
|
||||||
// If all pawns are ahead of the king on a single rook file, it's a draw.
|
// If all pawns are ahead of the king on a single rook file, it's a draw.
|
||||||
if (!((pawns & ~FileABB) || (pawns & ~FileHBB)) &&
|
if ( !(strongPawns & ~(FileABB | FileHBB))
|
||||||
!(pawns & ~passed_pawn_span(weakSide, ksq)))
|
&& !(strongPawns & ~passed_pawn_span(weakSide, weakKing)))
|
||||||
return SCALE_FACTOR_DRAW;
|
return SCALE_FACTOR_DRAW;
|
||||||
|
|
||||||
return SCALE_FACTOR_NONE;
|
return SCALE_FACTOR_NONE;
|
||||||
|
@ -603,19 +605,19 @@ ScaleFactor Endgame<KBPKB>::operator()(const Position& pos) const {
|
||||||
assert(verify_material(pos, strongSide, BishopValueMg, 1));
|
assert(verify_material(pos, strongSide, BishopValueMg, 1));
|
||||||
assert(verify_material(pos, weakSide, BishopValueMg, 0));
|
assert(verify_material(pos, weakSide, BishopValueMg, 0));
|
||||||
|
|
||||||
Square pawnSq = pos.square<PAWN>(strongSide);
|
Square strongPawn = pos.square<PAWN>(strongSide);
|
||||||
Square strongBishopSq = pos.square<BISHOP>(strongSide);
|
Square strongBishop = pos.square<BISHOP>(strongSide);
|
||||||
Square weakBishopSq = pos.square<BISHOP>(weakSide);
|
Square weakBishop = pos.square<BISHOP>(weakSide);
|
||||||
Square weakKingSq = pos.square<KING>(weakSide);
|
Square weakKing = pos.square<KING>(weakSide);
|
||||||
|
|
||||||
// Case 1: Defending king blocks the pawn, and cannot be driven away
|
// Case 1: Defending king blocks the pawn, and cannot be driven away
|
||||||
if ( (forward_file_bb(strongSide, pawnSq) & weakKingSq)
|
if ( (forward_file_bb(strongSide, strongPawn) & weakKing)
|
||||||
&& ( opposite_colors(weakKingSq, strongBishopSq)
|
&& ( opposite_colors(weakKing, strongBishop)
|
||||||
|| relative_rank(strongSide, weakKingSq) <= RANK_6))
|
|| relative_rank(strongSide, weakKing) <= RANK_6))
|
||||||
return SCALE_FACTOR_DRAW;
|
return SCALE_FACTOR_DRAW;
|
||||||
|
|
||||||
// Case 2: Opposite colored bishops
|
// Case 2: Opposite colored bishops
|
||||||
if (opposite_colors(strongBishopSq, weakBishopSq))
|
if (opposite_colors(strongBishop, weakBishop))
|
||||||
return SCALE_FACTOR_DRAW;
|
return SCALE_FACTOR_DRAW;
|
||||||
|
|
||||||
return SCALE_FACTOR_NONE;
|
return SCALE_FACTOR_NONE;
|
||||||
|
@ -629,36 +631,36 @@ ScaleFactor Endgame<KBPPKB>::operator()(const Position& pos) const {
|
||||||
assert(verify_material(pos, strongSide, BishopValueMg, 2));
|
assert(verify_material(pos, strongSide, BishopValueMg, 2));
|
||||||
assert(verify_material(pos, weakSide, BishopValueMg, 0));
|
assert(verify_material(pos, weakSide, BishopValueMg, 0));
|
||||||
|
|
||||||
Square wbsq = pos.square<BISHOP>(strongSide);
|
Square strongBishop = pos.square<BISHOP>(strongSide);
|
||||||
Square bbsq = pos.square<BISHOP>(weakSide);
|
Square weakBishop = pos.square<BISHOP>(weakSide);
|
||||||
|
|
||||||
if (!opposite_colors(wbsq, bbsq))
|
if (!opposite_colors(strongBishop, weakBishop))
|
||||||
return SCALE_FACTOR_NONE;
|
return SCALE_FACTOR_NONE;
|
||||||
|
|
||||||
Square ksq = pos.square<KING>(weakSide);
|
Square weakKing = pos.square<KING>(weakSide);
|
||||||
Square psq1 = pos.squares<PAWN>(strongSide)[0];
|
Square strongPawn1 = pos.squares<PAWN>(strongSide)[0];
|
||||||
Square psq2 = pos.squares<PAWN>(strongSide)[1];
|
Square strongPawn2 = pos.squares<PAWN>(strongSide)[1];
|
||||||
Square blockSq1, blockSq2;
|
Square blockSq1, blockSq2;
|
||||||
|
|
||||||
if (relative_rank(strongSide, psq1) > relative_rank(strongSide, psq2))
|
if (relative_rank(strongSide, strongPawn1) > relative_rank(strongSide, strongPawn2))
|
||||||
{
|
{
|
||||||
blockSq1 = psq1 + pawn_push(strongSide);
|
blockSq1 = strongPawn1 + pawn_push(strongSide);
|
||||||
blockSq2 = make_square(file_of(psq2), rank_of(psq1));
|
blockSq2 = make_square(file_of(strongPawn2), rank_of(strongPawn1));
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
blockSq1 = psq2 + pawn_push(strongSide);
|
blockSq1 = strongPawn2 + pawn_push(strongSide);
|
||||||
blockSq2 = make_square(file_of(psq1), rank_of(psq2));
|
blockSq2 = make_square(file_of(strongPawn1), rank_of(strongPawn2));
|
||||||
}
|
}
|
||||||
|
|
||||||
switch (distance<File>(psq1, psq2))
|
switch (distance<File>(strongPawn1, strongPawn2))
|
||||||
{
|
{
|
||||||
case 0:
|
case 0:
|
||||||
// Both pawns are on the same file. It's an easy draw if the defender firmly
|
// Both pawns are on the same file. It's an easy draw if the defender firmly
|
||||||
// controls some square in the frontmost pawn's path.
|
// controls some square in the frontmost pawn's path.
|
||||||
if ( file_of(ksq) == file_of(blockSq1)
|
if ( file_of(weakKing) == file_of(blockSq1)
|
||||||
&& relative_rank(strongSide, ksq) >= relative_rank(strongSide, blockSq1)
|
&& relative_rank(strongSide, weakKing) >= relative_rank(strongSide, blockSq1)
|
||||||
&& opposite_colors(ksq, wbsq))
|
&& opposite_colors(weakKing, strongBishop))
|
||||||
return SCALE_FACTOR_DRAW;
|
return SCALE_FACTOR_DRAW;
|
||||||
else
|
else
|
||||||
return SCALE_FACTOR_NONE;
|
return SCALE_FACTOR_NONE;
|
||||||
|
@ -667,16 +669,16 @@ ScaleFactor Endgame<KBPPKB>::operator()(const Position& pos) const {
|
||||||
// Pawns on adjacent files. It's a draw if the defender firmly controls the
|
// Pawns on adjacent files. It's a draw if the defender firmly controls the
|
||||||
// square in front of the frontmost pawn's path, and the square diagonally
|
// square in front of the frontmost pawn's path, and the square diagonally
|
||||||
// behind this square on the file of the other pawn.
|
// behind this square on the file of the other pawn.
|
||||||
if ( ksq == blockSq1
|
if ( weakKing == blockSq1
|
||||||
&& opposite_colors(ksq, wbsq)
|
&& opposite_colors(weakKing, strongBishop)
|
||||||
&& ( bbsq == blockSq2
|
&& ( weakBishop == blockSq2
|
||||||
|| (attacks_bb<BISHOP>(blockSq2, pos.pieces()) & pos.pieces(weakSide, BISHOP))
|
|| (attacks_bb<BISHOP>(blockSq2, pos.pieces()) & pos.pieces(weakSide, BISHOP))
|
||||||
|| distance<Rank>(psq1, psq2) >= 2))
|
|| distance<Rank>(strongPawn1, strongPawn2) >= 2))
|
||||||
return SCALE_FACTOR_DRAW;
|
return SCALE_FACTOR_DRAW;
|
||||||
|
|
||||||
else if ( ksq == blockSq2
|
else if ( weakKing == blockSq2
|
||||||
&& opposite_colors(ksq, wbsq)
|
&& opposite_colors(weakKing, strongBishop)
|
||||||
&& ( bbsq == blockSq1
|
&& ( weakBishop == blockSq1
|
||||||
|| (attacks_bb<BISHOP>(blockSq1, pos.pieces()) & pos.pieces(weakSide, BISHOP))))
|
|| (attacks_bb<BISHOP>(blockSq1, pos.pieces()) & pos.pieces(weakSide, BISHOP))))
|
||||||
return SCALE_FACTOR_DRAW;
|
return SCALE_FACTOR_DRAW;
|
||||||
else
|
else
|
||||||
|
@ -689,7 +691,7 @@ ScaleFactor Endgame<KBPPKB>::operator()(const Position& pos) const {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/// KBP vs KN. There is a single rule: If the defending king is somewhere along
|
/// KBP vs KN. There is a single rule: if the defending king is somewhere along
|
||||||
/// the path of the pawn, and the square of the king is not of the same color as
|
/// the path of the pawn, and the square of the king is not of the same color as
|
||||||
/// the stronger side's bishop, it's a draw.
|
/// the stronger side's bishop, it's a draw.
|
||||||
template<>
|
template<>
|
||||||
|
@ -698,14 +700,14 @@ ScaleFactor Endgame<KBPKN>::operator()(const Position& pos) const {
|
||||||
assert(verify_material(pos, strongSide, BishopValueMg, 1));
|
assert(verify_material(pos, strongSide, BishopValueMg, 1));
|
||||||
assert(verify_material(pos, weakSide, KnightValueMg, 0));
|
assert(verify_material(pos, weakSide, KnightValueMg, 0));
|
||||||
|
|
||||||
Square pawnSq = pos.square<PAWN>(strongSide);
|
Square strongPawn = pos.square<PAWN>(strongSide);
|
||||||
Square strongBishopSq = pos.square<BISHOP>(strongSide);
|
Square strongBishop = pos.square<BISHOP>(strongSide);
|
||||||
Square weakKingSq = pos.square<KING>(weakSide);
|
Square weakKing = pos.square<KING>(weakSide);
|
||||||
|
|
||||||
if ( file_of(weakKingSq) == file_of(pawnSq)
|
if ( file_of(weakKing) == file_of(strongPawn)
|
||||||
&& relative_rank(strongSide, pawnSq) < relative_rank(strongSide, weakKingSq)
|
&& relative_rank(strongSide, strongPawn) < relative_rank(strongSide, weakKing)
|
||||||
&& ( opposite_colors(weakKingSq, strongBishopSq)
|
&& ( opposite_colors(weakKing, strongBishop)
|
||||||
|| relative_rank(strongSide, weakKingSq) <= RANK_6))
|
|| relative_rank(strongSide, weakKing) <= RANK_6))
|
||||||
return SCALE_FACTOR_DRAW;
|
return SCALE_FACTOR_DRAW;
|
||||||
|
|
||||||
return SCALE_FACTOR_NONE;
|
return SCALE_FACTOR_NONE;
|
||||||
|
@ -713,7 +715,7 @@ ScaleFactor Endgame<KBPKN>::operator()(const Position& pos) const {
|
||||||
|
|
||||||
|
|
||||||
/// KP vs KP. This is done by removing the weakest side's pawn and probing the
|
/// KP vs KP. This is done by removing the weakest side's pawn and probing the
|
||||||
/// KP vs K bitbase: If the weakest side has a draw without the pawn, it probably
|
/// KP vs K bitbase: if the weakest side has a draw without the pawn, it probably
|
||||||
/// has at least a draw with the pawn as well. The exception is when the stronger
|
/// has at least a draw with the pawn as well. The exception is when the stronger
|
||||||
/// side's pawn is far advanced and not on a rook file; in this case it is often
|
/// side's pawn is far advanced and not on a rook file; in this case it is often
|
||||||
/// possible to win (e.g. 8/4k3/3p4/3P4/6K1/8/8/8 w - - 0 1).
|
/// possible to win (e.g. 8/4k3/3p4/3P4/6K1/8/8/8 w - - 0 1).
|
||||||
|
@ -724,18 +726,18 @@ ScaleFactor Endgame<KPKP>::operator()(const Position& pos) const {
|
||||||
assert(verify_material(pos, weakSide, VALUE_ZERO, 1));
|
assert(verify_material(pos, weakSide, VALUE_ZERO, 1));
|
||||||
|
|
||||||
// Assume strongSide is white and the pawn is on files A-D
|
// Assume strongSide is white and the pawn is on files A-D
|
||||||
Square wksq = normalize(pos, strongSide, pos.square<KING>(strongSide));
|
Square strongKing = normalize(pos, strongSide, pos.square<KING>(strongSide));
|
||||||
Square bksq = normalize(pos, strongSide, pos.square<KING>(weakSide));
|
Square weakKing = normalize(pos, strongSide, pos.square<KING>(weakSide));
|
||||||
Square psq = normalize(pos, strongSide, pos.square<PAWN>(strongSide));
|
Square strongPawn = normalize(pos, strongSide, pos.square<PAWN>(strongSide));
|
||||||
|
|
||||||
Color us = strongSide == pos.side_to_move() ? WHITE : BLACK;
|
Color us = strongSide == pos.side_to_move() ? WHITE : BLACK;
|
||||||
|
|
||||||
// If the pawn has advanced to the fifth rank or further, and is not a
|
// If the pawn has advanced to the fifth rank or further, and is not a
|
||||||
// rook pawn, it's too dangerous to assume that it's at least a draw.
|
// rook pawn, it's too dangerous to assume that it's at least a draw.
|
||||||
if (rank_of(psq) >= RANK_5 && file_of(psq) != FILE_A)
|
if (rank_of(strongPawn) >= RANK_5 && file_of(strongPawn) != FILE_A)
|
||||||
return SCALE_FACTOR_NONE;
|
return SCALE_FACTOR_NONE;
|
||||||
|
|
||||||
// Probe the KPK bitbase with the weakest side's pawn removed. If it's a draw,
|
// Probe the KPK bitbase with the weakest side's pawn removed. If it's a draw,
|
||||||
// it's probably at least a draw even with the pawn.
|
// it's probably at least a draw even with the pawn.
|
||||||
return Bitbases::probe(wksq, psq, bksq, us) ? SCALE_FACTOR_NONE : SCALE_FACTOR_DRAW;
|
return Bitbases::probe(strongKing, strongPawn, weakKing, us) ? SCALE_FACTOR_NONE : SCALE_FACTOR_DRAW;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,8 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
||||||
Copyright (C) 2004-2008 Tord Romstad (Glaurung author)
|
Copyright (C) 2004-2020 The Stockfish developers (see AUTHORS file)
|
||||||
Copyright (C) 2008-2015 Marco Costalba, Joona Kiiski, Tord Romstad
|
|
||||||
Copyright (C) 2015-2020 Marco Costalba, Joona Kiiski, Gary Linscott, Tord Romstad
|
|
||||||
|
|
||||||
Stockfish is free software: you can redistribute it and/or modify
|
Stockfish is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
|
|
@ -1,8 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
||||||
Copyright (C) 2004-2008 Tord Romstad (Glaurung author)
|
Copyright (C) 2004-2020 The Stockfish developers (see AUTHORS file)
|
||||||
Copyright (C) 2008-2015 Marco Costalba, Joona Kiiski, Tord Romstad
|
|
||||||
Copyright (C) 2015-2020 Marco Costalba, Joona Kiiski, Gary Linscott, Tord Romstad
|
|
||||||
|
|
||||||
Stockfish is free software: you can redistribute it and/or modify
|
Stockfish is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
@ -20,15 +18,130 @@
|
||||||
|
|
||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
#include <cassert>
|
#include <cassert>
|
||||||
|
#include <cstdlib>
|
||||||
#include <cstring> // For std::memset
|
#include <cstring> // For std::memset
|
||||||
|
#include <fstream>
|
||||||
#include <iomanip>
|
#include <iomanip>
|
||||||
#include <sstream>
|
#include <sstream>
|
||||||
|
#include <iostream>
|
||||||
|
#include <streambuf>
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
#include "bitboard.h"
|
#include "bitboard.h"
|
||||||
#include "evaluate.h"
|
#include "evaluate.h"
|
||||||
#include "material.h"
|
#include "material.h"
|
||||||
|
#include "misc.h"
|
||||||
#include "pawns.h"
|
#include "pawns.h"
|
||||||
#include "thread.h"
|
#include "thread.h"
|
||||||
|
#include "uci.h"
|
||||||
|
#include "incbin/incbin.h"
|
||||||
|
|
||||||
|
|
||||||
|
// Macro to embed the default NNUE file data in the engine binary (using incbin.h, by Dale Weiler).
|
||||||
|
// This macro invocation will declare the following three variables
|
||||||
|
// const unsigned char gEmbeddedNNUEData[]; // a pointer to the embedded data
|
||||||
|
// const unsigned char *const gEmbeddedNNUEEnd; // a marker to the end
|
||||||
|
// const unsigned int gEmbeddedNNUESize; // the size of the embedded file
|
||||||
|
// Note that this does not work in Microsof Visual Studio.
|
||||||
|
#if !defined(_MSC_VER) && !defined(NNUE_EMBEDDING_OFF)
|
||||||
|
INCBIN(EmbeddedNNUE, EvalFileDefaultName);
|
||||||
|
#else
|
||||||
|
const unsigned char gEmbeddedNNUEData[1] = {0x0};
|
||||||
|
const unsigned char *const gEmbeddedNNUEEnd = &gEmbeddedNNUEData[1];
|
||||||
|
const unsigned int gEmbeddedNNUESize = 1;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
using namespace std;
|
||||||
|
using namespace Eval::NNUE;
|
||||||
|
|
||||||
|
namespace Eval {
|
||||||
|
|
||||||
|
bool useNNUE;
|
||||||
|
string eval_file_loaded = "None";
|
||||||
|
|
||||||
|
/// init_NNUE() tries to load a nnue network at startup time, or when the engine
|
||||||
|
/// receives a UCI command "setoption name EvalFile value nn-[a-z0-9]{12}.nnue"
|
||||||
|
/// The name of the nnue network is always retrieved from the EvalFile option.
|
||||||
|
/// We search the given network in three locations: internally (the default
|
||||||
|
/// network may be embedded in the binary), in the active working directory and
|
||||||
|
/// in the engine directory. Distro packagers may define the DEFAULT_NNUE_DIRECTORY
|
||||||
|
/// variable to have the engine search in a special directory in their distro.
|
||||||
|
|
||||||
|
void init_NNUE() {
|
||||||
|
|
||||||
|
useNNUE = Options["Use NNUE"];
|
||||||
|
if (!useNNUE)
|
||||||
|
return;
|
||||||
|
|
||||||
|
string eval_file = string(Options["EvalFile"]);
|
||||||
|
|
||||||
|
#if defined(DEFAULT_NNUE_DIRECTORY)
|
||||||
|
#define stringify2(x) #x
|
||||||
|
#define stringify(x) stringify2(x)
|
||||||
|
vector<string> dirs = { "<internal>" , "" , CommandLine::binaryDirectory , stringify(DEFAULT_NNUE_DIRECTORY) };
|
||||||
|
#else
|
||||||
|
vector<string> dirs = { "<internal>" , "" , CommandLine::binaryDirectory };
|
||||||
|
#endif
|
||||||
|
|
||||||
|
for (string directory : dirs)
|
||||||
|
if (eval_file_loaded != eval_file)
|
||||||
|
{
|
||||||
|
if (directory != "<internal>")
|
||||||
|
{
|
||||||
|
ifstream stream(directory + eval_file, ios::binary);
|
||||||
|
if (load_eval(eval_file, stream))
|
||||||
|
eval_file_loaded = eval_file;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (directory == "<internal>" && eval_file == EvalFileDefaultName)
|
||||||
|
{
|
||||||
|
// C++ way to prepare a buffer for a memory stream
|
||||||
|
class MemoryBuffer : public basic_streambuf<char> {
|
||||||
|
public: MemoryBuffer(char* p, size_t n) { setg(p, p, p + n); setp(p, p + n); }
|
||||||
|
};
|
||||||
|
|
||||||
|
MemoryBuffer buffer(const_cast<char*>(reinterpret_cast<const char*>(gEmbeddedNNUEData)),
|
||||||
|
size_t(gEmbeddedNNUESize));
|
||||||
|
|
||||||
|
istream stream(&buffer);
|
||||||
|
if (load_eval(eval_file, stream))
|
||||||
|
eval_file_loaded = eval_file;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// verify_NNUE() verifies that the last net used was loaded successfully
|
||||||
|
void verify_NNUE() {
|
||||||
|
|
||||||
|
string eval_file = string(Options["EvalFile"]);
|
||||||
|
|
||||||
|
if (useNNUE && eval_file_loaded != eval_file)
|
||||||
|
{
|
||||||
|
UCI::OptionsMap defaults;
|
||||||
|
UCI::init(defaults);
|
||||||
|
|
||||||
|
string msg1 = "If the UCI option \"Use NNUE\" is set to true, network evaluation parameters compatible with the engine must be available.";
|
||||||
|
string msg2 = "The option is set to true, but the network file " + eval_file + " was not loaded successfully.";
|
||||||
|
string msg3 = "The UCI option EvalFile might need to specify the full path, including the directory name, to the network file.";
|
||||||
|
string msg4 = "The default net can be downloaded from: https://tests.stockfishchess.org/api/nn/" + string(defaults["EvalFile"]);
|
||||||
|
string msg5 = "The engine will be terminated now.";
|
||||||
|
|
||||||
|
sync_cout << "info string ERROR: " << msg1 << sync_endl;
|
||||||
|
sync_cout << "info string ERROR: " << msg2 << sync_endl;
|
||||||
|
sync_cout << "info string ERROR: " << msg3 << sync_endl;
|
||||||
|
sync_cout << "info string ERROR: " << msg4 << sync_endl;
|
||||||
|
sync_cout << "info string ERROR: " << msg5 << sync_endl;
|
||||||
|
|
||||||
|
exit(EXIT_FAILURE);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (useNNUE)
|
||||||
|
sync_cout << "info string NNUE evaluation using " << eval_file << " enabled" << sync_endl;
|
||||||
|
else
|
||||||
|
sync_cout << "info string classical evaluation enabled" << sync_endl;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
namespace Trace {
|
namespace Trace {
|
||||||
|
|
||||||
|
@ -74,17 +187,20 @@ using namespace Trace;
|
||||||
namespace {
|
namespace {
|
||||||
|
|
||||||
// Threshold for lazy and space evaluation
|
// Threshold for lazy and space evaluation
|
||||||
constexpr Value LazyThreshold = Value(1400);
|
constexpr Value LazyThreshold1 = Value(1400);
|
||||||
|
constexpr Value LazyThreshold2 = Value(1300);
|
||||||
constexpr Value SpaceThreshold = Value(12222);
|
constexpr Value SpaceThreshold = Value(12222);
|
||||||
|
constexpr Value NNUEThreshold1 = Value(550);
|
||||||
|
constexpr Value NNUEThreshold2 = Value(150);
|
||||||
|
|
||||||
// KingAttackWeights[PieceType] contains king attack weights by piece type
|
// KingAttackWeights[PieceType] contains king attack weights by piece type
|
||||||
constexpr int KingAttackWeights[PIECE_TYPE_NB] = { 0, 0, 81, 52, 44, 10 };
|
constexpr int KingAttackWeights[PIECE_TYPE_NB] = { 0, 0, 81, 52, 44, 10 };
|
||||||
|
|
||||||
// Penalties for enemy's safe checks
|
// SafeCheck[PieceType][single/multiple] contains safe check bonus by piece type,
|
||||||
constexpr int QueenSafeCheck = 772;
|
// higher if multiple safe checks are possible for that piece type.
|
||||||
constexpr int RookSafeCheck = 1084;
|
constexpr int SafeCheck[][2] = {
|
||||||
constexpr int BishopSafeCheck = 645;
|
{}, {}, {792, 1283}, {645, 967}, {1084, 1897}, {772, 1119}
|
||||||
constexpr int KnightSafeCheck = 792;
|
};
|
||||||
|
|
||||||
#define S(mg, eg) make_score(mg, eg)
|
#define S(mg, eg) make_score(mg, eg)
|
||||||
|
|
||||||
|
@ -106,53 +222,58 @@ namespace {
|
||||||
S(110,182), S(114,182), S(114,192), S(116,219) }
|
S(110,182), S(114,182), S(114,192), S(116,219) }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// KingProtector[knight/bishop] contains penalty for each distance unit to own king
|
||||||
|
constexpr Score KingProtector[] = { S(8, 9), S(6, 9) };
|
||||||
|
|
||||||
|
// Outpost[knight/bishop] contains bonuses for each knight or bishop occupying a
|
||||||
|
// pawn protected square on rank 4 to 6 which is also safe from a pawn attack.
|
||||||
|
constexpr Score Outpost[] = { S(56, 34), S(31, 23) };
|
||||||
|
|
||||||
|
// PassedRank[Rank] contains a bonus according to the rank of a passed pawn
|
||||||
|
constexpr Score PassedRank[RANK_NB] = {
|
||||||
|
S(0, 0), S(9, 28), S(15, 31), S(17, 39), S(64, 70), S(171, 177), S(277, 260)
|
||||||
|
};
|
||||||
|
|
||||||
// RookOnFile[semiopen/open] contains bonuses for each rook when there is
|
// RookOnFile[semiopen/open] contains bonuses for each rook when there is
|
||||||
// no (friendly) pawn on the rook file.
|
// no (friendly) pawn on the rook file.
|
||||||
constexpr Score RookOnFile[] = { S(19, 7), S(48, 29) };
|
constexpr Score RookOnFile[] = { S(19, 7), S(48, 27) };
|
||||||
|
|
||||||
// ThreatByMinor/ByRook[attacked PieceType] contains bonuses according to
|
// ThreatByMinor/ByRook[attacked PieceType] contains bonuses according to
|
||||||
// which piece type attacks which one. Attacks on lesser pieces which are
|
// which piece type attacks which one. Attacks on lesser pieces which are
|
||||||
// pawn-defended are not considered.
|
// pawn-defended are not considered.
|
||||||
constexpr Score ThreatByMinor[PIECE_TYPE_NB] = {
|
constexpr Score ThreatByMinor[PIECE_TYPE_NB] = {
|
||||||
S(0, 0), S(5, 32), S(57, 41), S(77, 56), S(88, 119), S(79, 161)
|
S(0, 0), S(5, 32), S(55, 41), S(77, 56), S(89, 119), S(79, 162)
|
||||||
};
|
};
|
||||||
|
|
||||||
constexpr Score ThreatByRook[PIECE_TYPE_NB] = {
|
constexpr Score ThreatByRook[PIECE_TYPE_NB] = {
|
||||||
S(0, 0), S(3, 46), S(37, 68), S(42, 60), S(0, 38), S(58, 41)
|
S(0, 0), S(3, 44), S(37, 68), S(42, 60), S(0, 39), S(58, 43)
|
||||||
};
|
|
||||||
|
|
||||||
// PassedRank[Rank] contains a bonus according to the rank of a passed pawn
|
|
||||||
constexpr Score PassedRank[RANK_NB] = {
|
|
||||||
S(0, 0), S(10, 28), S(17, 33), S(15, 41), S(62, 72), S(168, 177), S(276, 260)
|
|
||||||
};
|
};
|
||||||
|
|
||||||
// Assorted bonuses and penalties
|
// Assorted bonuses and penalties
|
||||||
constexpr Score BishopPawns = S( 3, 7);
|
constexpr Score BadOutpost = S( -7, 36);
|
||||||
constexpr Score BishopOnKingRing = S( 24, 0);
|
constexpr Score BishopOnKingRing = S( 24, 0);
|
||||||
|
constexpr Score BishopPawns = S( 3, 7);
|
||||||
constexpr Score BishopXRayPawns = S( 4, 5);
|
constexpr Score BishopXRayPawns = S( 4, 5);
|
||||||
constexpr Score CorneredBishop = S( 50, 50);
|
constexpr Score CorneredBishop = S( 50, 50);
|
||||||
constexpr Score FlankAttacks = S( 8, 0);
|
constexpr Score FlankAttacks = S( 8, 0);
|
||||||
constexpr Score Hanging = S( 69, 36);
|
constexpr Score Hanging = S( 69, 36);
|
||||||
constexpr Score BishopKingProtector = S( 6, 9);
|
|
||||||
constexpr Score KnightKingProtector = S( 8, 9);
|
|
||||||
constexpr Score KnightOnQueen = S( 16, 11);
|
constexpr Score KnightOnQueen = S( 16, 11);
|
||||||
constexpr Score LongDiagonalBishop = S( 45, 0);
|
constexpr Score LongDiagonalBishop = S( 45, 0);
|
||||||
constexpr Score MinorBehindPawn = S( 18, 3);
|
constexpr Score MinorBehindPawn = S( 18, 3);
|
||||||
constexpr Score KnightOutpost = S( 56, 36);
|
|
||||||
constexpr Score BishopOutpost = S( 30, 23);
|
|
||||||
constexpr Score ReachableOutpost = S( 31, 22);
|
|
||||||
constexpr Score PassedFile = S( 11, 8);
|
constexpr Score PassedFile = S( 11, 8);
|
||||||
constexpr Score PawnlessFlank = S( 17, 95);
|
constexpr Score PawnlessFlank = S( 17, 95);
|
||||||
|
constexpr Score ReachableOutpost = S( 31, 22);
|
||||||
constexpr Score RestrictedPiece = S( 7, 7);
|
constexpr Score RestrictedPiece = S( 7, 7);
|
||||||
constexpr Score RookOnKingRing = S( 16, 0);
|
constexpr Score RookOnKingRing = S( 16, 0);
|
||||||
constexpr Score RookOnQueenFile = S( 5, 9);
|
constexpr Score RookOnQueenFile = S( 6, 11);
|
||||||
constexpr Score SliderOnQueen = S( 59, 18);
|
constexpr Score SliderOnQueen = S( 60, 18);
|
||||||
constexpr Score ThreatByKing = S( 24, 89);
|
constexpr Score ThreatByKing = S( 24, 89);
|
||||||
constexpr Score ThreatByPawnPush = S( 48, 39);
|
constexpr Score ThreatByPawnPush = S( 48, 39);
|
||||||
constexpr Score ThreatBySafePawn = S(173, 94);
|
constexpr Score ThreatBySafePawn = S(173, 94);
|
||||||
constexpr Score TrappedRook = S( 55, 13);
|
constexpr Score TrappedRook = S( 55, 13);
|
||||||
constexpr Score WeakQueen = S( 51, 14);
|
constexpr Score WeakQueenProtection = S( 14, 0);
|
||||||
constexpr Score WeakQueenProtection = S( 15, 0);
|
constexpr Score WeakQueen = S( 56, 15);
|
||||||
|
|
||||||
|
|
||||||
#undef S
|
#undef S
|
||||||
|
|
||||||
|
@ -215,6 +336,7 @@ namespace {
|
||||||
|
|
||||||
// Evaluation::initialize() computes king and pawn attacks, and the king ring
|
// Evaluation::initialize() computes king and pawn attacks, and the king ring
|
||||||
// bitboard for a given color. This is done at the beginning of the evaluation.
|
// bitboard for a given color. This is done at the beginning of the evaluation.
|
||||||
|
|
||||||
template<Tracing T> template<Color Us>
|
template<Tracing T> template<Color Us>
|
||||||
void Evaluation<T>::initialize() {
|
void Evaluation<T>::initialize() {
|
||||||
|
|
||||||
|
@ -241,8 +363,8 @@ namespace {
|
||||||
attackedBy2[Us] = dblAttackByPawn | (attackedBy[Us][KING] & attackedBy[Us][PAWN]);
|
attackedBy2[Us] = dblAttackByPawn | (attackedBy[Us][KING] & attackedBy[Us][PAWN]);
|
||||||
|
|
||||||
// Init our king safety tables
|
// Init our king safety tables
|
||||||
Square s = make_square(Utility::clamp(file_of(ksq), FILE_B, FILE_G),
|
Square s = make_square(std::clamp(file_of(ksq), FILE_B, FILE_G),
|
||||||
Utility::clamp(rank_of(ksq), RANK_2, RANK_7));
|
std::clamp(rank_of(ksq), RANK_2, RANK_7));
|
||||||
kingRing[Us] = attacks_bb<KING>(s) | s;
|
kingRing[Us] = attacks_bb<KING>(s) | s;
|
||||||
|
|
||||||
kingAttackersCount[Them] = popcount(kingRing[Us] & pe->pawn_attacks(Them));
|
kingAttackersCount[Them] = popcount(kingRing[Us] & pe->pawn_attacks(Them));
|
||||||
|
@ -254,6 +376,7 @@ namespace {
|
||||||
|
|
||||||
|
|
||||||
// Evaluation::pieces() scores pieces of a given color and type
|
// Evaluation::pieces() scores pieces of a given color and type
|
||||||
|
|
||||||
template<Tracing T> template<Color Us, PieceType Pt>
|
template<Tracing T> template<Color Us, PieceType Pt>
|
||||||
Score Evaluation<T>::pieces() {
|
Score Evaluation<T>::pieces() {
|
||||||
|
|
||||||
|
@ -301,10 +424,19 @@ namespace {
|
||||||
|
|
||||||
if (Pt == BISHOP || Pt == KNIGHT)
|
if (Pt == BISHOP || Pt == KNIGHT)
|
||||||
{
|
{
|
||||||
// Bonus if piece is on an outpost square or can reach one
|
// Bonus if the piece is on an outpost square or can reach one
|
||||||
bb = OutpostRanks & attackedBy[Us][PAWN] & ~pe->pawn_attacks_span(Them);
|
// Reduced bonus for knights (BadOutpost) if few relevant targets
|
||||||
if (bb & s)
|
bb = OutpostRanks & (attackedBy[Us][PAWN] | shift<Down>(pos.pieces(PAWN)))
|
||||||
score += (Pt == KNIGHT) ? KnightOutpost : BishopOutpost;
|
& ~pe->pawn_attacks_span(Them);
|
||||||
|
Bitboard targets = pos.pieces(Them) & ~pos.pieces(PAWN);
|
||||||
|
|
||||||
|
if ( Pt == KNIGHT
|
||||||
|
&& bb & s & ~CenterFiles // on a side outpost
|
||||||
|
&& !(b & targets) // no relevant attacks
|
||||||
|
&& (!more_than_one(targets & (s & QueenSide ? QueenSide : KingSide))))
|
||||||
|
score += BadOutpost;
|
||||||
|
else if (bb & s)
|
||||||
|
score += Outpost[Pt == BISHOP];
|
||||||
else if (Pt == KNIGHT && bb & b & ~pos.pieces(Us))
|
else if (Pt == KNIGHT && bb & b & ~pos.pieces(Us))
|
||||||
score += ReachableOutpost;
|
score += ReachableOutpost;
|
||||||
|
|
||||||
|
@ -313,8 +445,7 @@ namespace {
|
||||||
score += MinorBehindPawn;
|
score += MinorBehindPawn;
|
||||||
|
|
||||||
// Penalty if the piece is far from the king
|
// Penalty if the piece is far from the king
|
||||||
score -= (Pt == KNIGHT ? KnightKingProtector
|
score -= KingProtector[Pt == BISHOP] * distance(pos.square<KING>(Us), s);
|
||||||
: BishopKingProtector) * distance(pos.square<KING>(Us), s);
|
|
||||||
|
|
||||||
if (Pt == BISHOP)
|
if (Pt == BISHOP)
|
||||||
{
|
{
|
||||||
|
@ -383,6 +514,7 @@ namespace {
|
||||||
|
|
||||||
|
|
||||||
// Evaluation::king() assigns bonuses and penalties to a king of a given color
|
// Evaluation::king() assigns bonuses and penalties to a king of a given color
|
||||||
|
|
||||||
template<Tracing T> template<Color Us>
|
template<Tracing T> template<Color Us>
|
||||||
Score Evaluation<T>::king() const {
|
Score Evaluation<T>::king() const {
|
||||||
|
|
||||||
|
@ -411,41 +543,33 @@ namespace {
|
||||||
b2 = attacks_bb<BISHOP>(ksq, pos.pieces() ^ pos.pieces(Us, QUEEN));
|
b2 = attacks_bb<BISHOP>(ksq, pos.pieces() ^ pos.pieces(Us, QUEEN));
|
||||||
|
|
||||||
// Enemy rooks checks
|
// Enemy rooks checks
|
||||||
rookChecks = b1 & safe & attackedBy[Them][ROOK];
|
rookChecks = b1 & attackedBy[Them][ROOK] & safe;
|
||||||
if (rookChecks)
|
if (rookChecks)
|
||||||
kingDanger += more_than_one(rookChecks) ? RookSafeCheck * 175/100
|
kingDanger += SafeCheck[ROOK][more_than_one(rookChecks)];
|
||||||
: RookSafeCheck;
|
|
||||||
else
|
else
|
||||||
unsafeChecks |= b1 & attackedBy[Them][ROOK];
|
unsafeChecks |= b1 & attackedBy[Them][ROOK];
|
||||||
|
|
||||||
// Enemy queen safe checks: we count them only if they are from squares from
|
// Enemy queen safe checks: count them only if the checks are from squares from
|
||||||
// which we can't give a rook check, because rook checks are more valuable.
|
// which opponent cannot give a rook check, because rook checks are more valuable.
|
||||||
queenChecks = (b1 | b2)
|
queenChecks = (b1 | b2) & attackedBy[Them][QUEEN] & safe
|
||||||
& attackedBy[Them][QUEEN]
|
& ~(attackedBy[Us][QUEEN] | rookChecks);
|
||||||
& safe
|
|
||||||
& ~attackedBy[Us][QUEEN]
|
|
||||||
& ~rookChecks;
|
|
||||||
if (queenChecks)
|
if (queenChecks)
|
||||||
kingDanger += more_than_one(queenChecks) ? QueenSafeCheck * 145/100
|
kingDanger += SafeCheck[QUEEN][more_than_one(queenChecks)];
|
||||||
: QueenSafeCheck;
|
|
||||||
|
|
||||||
// Enemy bishops checks: we count them only if they are from squares from
|
// Enemy bishops checks: count them only if they are from squares from which
|
||||||
// which we can't give a queen check, because queen checks are more valuable.
|
// opponent cannot give a queen check, because queen checks are more valuable.
|
||||||
bishopChecks = b2
|
bishopChecks = b2 & attackedBy[Them][BISHOP] & safe
|
||||||
& attackedBy[Them][BISHOP]
|
|
||||||
& safe
|
|
||||||
& ~queenChecks;
|
& ~queenChecks;
|
||||||
if (bishopChecks)
|
if (bishopChecks)
|
||||||
kingDanger += more_than_one(bishopChecks) ? BishopSafeCheck * 3/2
|
kingDanger += SafeCheck[BISHOP][more_than_one(bishopChecks)];
|
||||||
: BishopSafeCheck;
|
|
||||||
else
|
else
|
||||||
unsafeChecks |= b2 & attackedBy[Them][BISHOP];
|
unsafeChecks |= b2 & attackedBy[Them][BISHOP];
|
||||||
|
|
||||||
// Enemy knights checks
|
// Enemy knights checks
|
||||||
knightChecks = attacks_bb<KNIGHT>(ksq) & attackedBy[Them][KNIGHT];
|
knightChecks = attacks_bb<KNIGHT>(ksq) & attackedBy[Them][KNIGHT];
|
||||||
if (knightChecks & safe)
|
if (knightChecks & safe)
|
||||||
kingDanger += more_than_one(knightChecks & safe) ? KnightSafeCheck * 162/100
|
kingDanger += SafeCheck[KNIGHT][more_than_one(knightChecks & safe)];
|
||||||
: KnightSafeCheck;
|
|
||||||
else
|
else
|
||||||
unsafeChecks |= knightChecks;
|
unsafeChecks |= knightChecks;
|
||||||
|
|
||||||
|
@ -455,7 +579,7 @@ namespace {
|
||||||
b2 = b1 & attackedBy2[Them];
|
b2 = b1 & attackedBy2[Them];
|
||||||
b3 = attackedBy[Us][ALL_PIECES] & KingFlank[file_of(ksq)] & Camp;
|
b3 = attackedBy[Us][ALL_PIECES] & KingFlank[file_of(ksq)] & Camp;
|
||||||
|
|
||||||
int kingFlankAttack = popcount(b1) + popcount(b2);
|
int kingFlankAttack = popcount(b1) + popcount(b2);
|
||||||
int kingFlankDefense = popcount(b3);
|
int kingFlankDefense = popcount(b3);
|
||||||
|
|
||||||
kingDanger += kingAttackersCount[Them] * kingAttackersWeight[Them]
|
kingDanger += kingAttackersCount[Them] * kingAttackersWeight[Them]
|
||||||
|
@ -491,6 +615,7 @@ namespace {
|
||||||
|
|
||||||
// Evaluation::threats() assigns bonuses according to the types of the
|
// Evaluation::threats() assigns bonuses according to the types of the
|
||||||
// attacking and the attacked pieces.
|
// attacking and the attacked pieces.
|
||||||
|
|
||||||
template<Tracing T> template<Color Us>
|
template<Tracing T> template<Color Us>
|
||||||
Score Evaluation<T>::threats() const {
|
Score Evaluation<T>::threats() const {
|
||||||
|
|
||||||
|
@ -565,17 +690,21 @@ namespace {
|
||||||
// Bonus for threats on the next moves against enemy queen
|
// Bonus for threats on the next moves against enemy queen
|
||||||
if (pos.count<QUEEN>(Them) == 1)
|
if (pos.count<QUEEN>(Them) == 1)
|
||||||
{
|
{
|
||||||
|
bool queenImbalance = pos.count<QUEEN>() == 1;
|
||||||
|
|
||||||
Square s = pos.square<QUEEN>(Them);
|
Square s = pos.square<QUEEN>(Them);
|
||||||
safe = mobilityArea[Us] & ~stronglyProtected;
|
safe = mobilityArea[Us]
|
||||||
|
& ~pos.pieces(Us, PAWN)
|
||||||
|
& ~stronglyProtected;
|
||||||
|
|
||||||
b = attackedBy[Us][KNIGHT] & attacks_bb<KNIGHT>(s);
|
b = attackedBy[Us][KNIGHT] & attacks_bb<KNIGHT>(s);
|
||||||
|
|
||||||
score += KnightOnQueen * popcount(b & safe);
|
score += KnightOnQueen * popcount(b & safe) * (1 + queenImbalance);
|
||||||
|
|
||||||
b = (attackedBy[Us][BISHOP] & attacks_bb<BISHOP>(s, pos.pieces()))
|
b = (attackedBy[Us][BISHOP] & attacks_bb<BISHOP>(s, pos.pieces()))
|
||||||
| (attackedBy[Us][ROOK ] & attacks_bb<ROOK >(s, pos.pieces()));
|
| (attackedBy[Us][ROOK ] & attacks_bb<ROOK >(s, pos.pieces()));
|
||||||
|
|
||||||
score += SliderOnQueen * popcount(b & safe & attackedBy2[Us]);
|
score += SliderOnQueen * popcount(b & safe & attackedBy2[Us]) * (1 + queenImbalance);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (T)
|
if (T)
|
||||||
|
@ -632,8 +761,8 @@ namespace {
|
||||||
Square blockSq = s + Up;
|
Square blockSq = s + Up;
|
||||||
|
|
||||||
// Adjust bonus based on the king's proximity
|
// Adjust bonus based on the king's proximity
|
||||||
bonus += make_score(0, ( (king_proximity(Them, blockSq) * 19) / 4
|
bonus += make_score(0, ( king_proximity(Them, blockSq) * 19 / 4
|
||||||
- king_proximity(Us, blockSq) * 2) * w);
|
- king_proximity(Us, blockSq) * 2) * w);
|
||||||
|
|
||||||
// If blockSq is not the queening square then consider also a second push
|
// If blockSq is not the queening square then consider also a second push
|
||||||
if (r != RANK_7)
|
if (r != RANK_7)
|
||||||
|
@ -676,16 +805,15 @@ namespace {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// Evaluation::space() computes the space evaluation for a given side. The
|
// Evaluation::space() computes a space evaluation for a given side, aiming to improve game
|
||||||
// space evaluation is a simple bonus based on the number of safe squares
|
// play in the opening. It is based on the number of safe squares on the four central files
|
||||||
// available for minor pieces on the central four files on ranks 2--4. Safe
|
// on ranks 2 to 4. Completely safe squares behind a friendly pawn are counted twice.
|
||||||
// squares one, two or three squares behind a friendly pawn are counted
|
// Finally, the space bonus is multiplied by a weight which decreases according to occupancy.
|
||||||
// twice. Finally, the space bonus is multiplied by a weight. The aim is to
|
|
||||||
// improve play on game opening.
|
|
||||||
|
|
||||||
template<Tracing T> template<Color Us>
|
template<Tracing T> template<Color Us>
|
||||||
Score Evaluation<T>::space() const {
|
Score Evaluation<T>::space() const {
|
||||||
|
|
||||||
|
// Early exit if, for example, both queens or 6 minor pieces have been exchanged
|
||||||
if (pos.non_pawn_material() < SpaceThreshold)
|
if (pos.non_pawn_material() < SpaceThreshold)
|
||||||
return SCORE_ZERO;
|
return SCORE_ZERO;
|
||||||
|
|
||||||
|
@ -716,9 +844,9 @@ namespace {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// Evaluation::winnable() adjusts the mg and eg score components based on the
|
// Evaluation::winnable() adjusts the midgame and endgame score components, based on
|
||||||
// known attacking/defending status of the players.
|
// the known attacking/defending status of the players. The final value is derived
|
||||||
// A single value is derived from the mg and eg values and returned.
|
// by interpolation from the midgame and endgame values.
|
||||||
|
|
||||||
template<Tracing T>
|
template<Tracing T>
|
||||||
Value Evaluation<T>::winnable(Score score) const {
|
Value Evaluation<T>::winnable(Score score) const {
|
||||||
|
@ -732,8 +860,8 @@ namespace {
|
||||||
bool almostUnwinnable = outflanking < 0
|
bool almostUnwinnable = outflanking < 0
|
||||||
&& !pawnsOnBothFlanks;
|
&& !pawnsOnBothFlanks;
|
||||||
|
|
||||||
bool infiltration = rank_of(pos.square<KING>(WHITE)) > RANK_4
|
bool infiltration = rank_of(pos.square<KING>(WHITE)) > RANK_4
|
||||||
|| rank_of(pos.square<KING>(BLACK)) < RANK_5;
|
|| rank_of(pos.square<KING>(BLACK)) < RANK_5;
|
||||||
|
|
||||||
// Compute the initiative bonus for the attacking side
|
// Compute the initiative bonus for the attacking side
|
||||||
int complexity = 9 * pe->passed_count()
|
int complexity = 9 * pe->passed_count()
|
||||||
|
@ -751,18 +879,17 @@ namespace {
|
||||||
// Now apply the bonus: note that we find the attacking side by extracting the
|
// Now apply the bonus: note that we find the attacking side by extracting the
|
||||||
// sign of the midgame or endgame values, and that we carefully cap the bonus
|
// sign of the midgame or endgame values, and that we carefully cap the bonus
|
||||||
// so that the midgame and endgame scores do not change sign after the bonus.
|
// so that the midgame and endgame scores do not change sign after the bonus.
|
||||||
int u = ((mg > 0) - (mg < 0)) * Utility::clamp(complexity + 50, -abs(mg), 0);
|
int u = ((mg > 0) - (mg < 0)) * std::clamp(complexity + 50, -abs(mg), 0);
|
||||||
int v = ((eg > 0) - (eg < 0)) * std::max(complexity, -abs(eg));
|
int v = ((eg > 0) - (eg < 0)) * std::max(complexity, -abs(eg));
|
||||||
|
|
||||||
mg += u;
|
mg += u;
|
||||||
eg += v;
|
eg += v;
|
||||||
|
|
||||||
// Compute the scale factor for the winning side
|
// Compute the scale factor for the winning side
|
||||||
|
|
||||||
Color strongSide = eg > VALUE_DRAW ? WHITE : BLACK;
|
Color strongSide = eg > VALUE_DRAW ? WHITE : BLACK;
|
||||||
int sf = me->scale_factor(pos, strongSide);
|
int sf = me->scale_factor(pos, strongSide);
|
||||||
|
|
||||||
// If scale is not already specific, scale down the endgame via general heuristics
|
// If scale factor is not already specific, scale down via general heuristics
|
||||||
if (sf == SCALE_FACTOR_NORMAL)
|
if (sf == SCALE_FACTOR_NORMAL)
|
||||||
{
|
{
|
||||||
if (pos.opposite_bishops())
|
if (pos.opposite_bishops())
|
||||||
|
@ -773,6 +900,15 @@ namespace {
|
||||||
else
|
else
|
||||||
sf = 22 + 3 * pos.count<ALL_PIECES>(strongSide);
|
sf = 22 + 3 * pos.count<ALL_PIECES>(strongSide);
|
||||||
}
|
}
|
||||||
|
else if ( pos.non_pawn_material(WHITE) == RookValueMg
|
||||||
|
&& pos.non_pawn_material(BLACK) == RookValueMg
|
||||||
|
&& pos.count<PAWN>(strongSide) - pos.count<PAWN>(~strongSide) <= 1
|
||||||
|
&& bool(KingSide & pos.pieces(strongSide, PAWN)) != bool(QueenSide & pos.pieces(strongSide, PAWN))
|
||||||
|
&& (attacks_bb<KING>(pos.square<KING>(~strongSide)) & pos.pieces(~strongSide, PAWN)))
|
||||||
|
sf = 36;
|
||||||
|
else if (pos.count<QUEEN>() == 1)
|
||||||
|
sf = 37 + 3 * (pos.count<QUEEN>(WHITE) == 1 ? pos.count<BISHOP>(BLACK) + pos.count<KNIGHT>(BLACK)
|
||||||
|
: pos.count<BISHOP>(WHITE) + pos.count<KNIGHT>(WHITE));
|
||||||
else
|
else
|
||||||
sf = std::min(sf, 36 + 7 * pos.count<PAWN>(strongSide));
|
sf = std::min(sf, 36 + 7 * pos.count<PAWN>(strongSide));
|
||||||
}
|
}
|
||||||
|
@ -819,17 +955,19 @@ namespace {
|
||||||
score += pe->pawn_score(WHITE) - pe->pawn_score(BLACK);
|
score += pe->pawn_score(WHITE) - pe->pawn_score(BLACK);
|
||||||
|
|
||||||
// Early exit if score is high
|
// Early exit if score is high
|
||||||
Value v = (mg_value(score) + eg_value(score)) / 2;
|
auto lazy_skip = [&](Value lazyThreshold) {
|
||||||
if (abs(v) > LazyThreshold + pos.non_pawn_material() / 64)
|
return abs(mg_value(score) + eg_value(score)) / 2 > lazyThreshold + pos.non_pawn_material() / 64;
|
||||||
return pos.side_to_move() == WHITE ? v : -v;
|
};
|
||||||
|
|
||||||
|
if (lazy_skip(LazyThreshold1))
|
||||||
|
goto make_v;
|
||||||
|
|
||||||
// Main evaluation begins here
|
// Main evaluation begins here
|
||||||
|
|
||||||
initialize<WHITE>();
|
initialize<WHITE>();
|
||||||
initialize<BLACK>();
|
initialize<BLACK>();
|
||||||
|
|
||||||
// Pieces evaluated first (also populates attackedBy, attackedBy2).
|
// Pieces evaluated first (also populates attackedBy, attackedBy2).
|
||||||
// Note that the order of evaluation of the terms is left unspecified
|
// Note that the order of evaluation of the terms is left unspecified.
|
||||||
score += pieces<WHITE, KNIGHT>() - pieces<BLACK, KNIGHT>()
|
score += pieces<WHITE, KNIGHT>() - pieces<BLACK, KNIGHT>()
|
||||||
+ pieces<WHITE, BISHOP>() - pieces<BLACK, BISHOP>()
|
+ pieces<WHITE, BISHOP>() - pieces<BLACK, BISHOP>()
|
||||||
+ pieces<WHITE, ROOK >() - pieces<BLACK, ROOK >()
|
+ pieces<WHITE, ROOK >() - pieces<BLACK, ROOK >()
|
||||||
|
@ -839,12 +977,17 @@ namespace {
|
||||||
|
|
||||||
// More complex interactions that require fully populated attack bitboards
|
// More complex interactions that require fully populated attack bitboards
|
||||||
score += king< WHITE>() - king< BLACK>()
|
score += king< WHITE>() - king< BLACK>()
|
||||||
+ threats<WHITE>() - threats<BLACK>()
|
+ passed< WHITE>() - passed< BLACK>();
|
||||||
+ passed< WHITE>() - passed< BLACK>()
|
|
||||||
|
if (lazy_skip(LazyThreshold2))
|
||||||
|
goto make_v;
|
||||||
|
|
||||||
|
score += threats<WHITE>() - threats<BLACK>()
|
||||||
+ space< WHITE>() - space< BLACK>();
|
+ space< WHITE>() - space< BLACK>();
|
||||||
|
|
||||||
|
make_v:
|
||||||
// Derive single value from mg and eg parts of score
|
// Derive single value from mg and eg parts of score
|
||||||
v = winnable(score);
|
Value v = winnable(score);
|
||||||
|
|
||||||
// In case of tracing add all remaining individual evaluation terms
|
// In case of tracing add all remaining individual evaluation terms
|
||||||
if (T)
|
if (T)
|
||||||
|
@ -861,9 +1004,6 @@ namespace {
|
||||||
// Side to move point of view
|
// Side to move point of view
|
||||||
v = (pos.side_to_move() == WHITE ? v : -v) + Tempo;
|
v = (pos.side_to_move() == WHITE ? v : -v) + Tempo;
|
||||||
|
|
||||||
// Damp down the evaluation linearly when shuffling
|
|
||||||
v = v * (100 - pos.rule50_count()) / 100;
|
|
||||||
|
|
||||||
return v;
|
return v;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -874,28 +1014,45 @@ namespace {
|
||||||
/// evaluation of the position from the point of view of the side to move.
|
/// evaluation of the position from the point of view of the side to move.
|
||||||
|
|
||||||
Value Eval::evaluate(const Position& pos) {
|
Value Eval::evaluate(const Position& pos) {
|
||||||
return Evaluation<NO_TRACE>(pos).value();
|
|
||||||
}
|
|
||||||
|
|
||||||
|
bool classical = !Eval::useNNUE
|
||||||
|
|| abs(eg_value(pos.psq_score())) * 16 > NNUEThreshold1 * (16 + pos.rule50_count());
|
||||||
|
Value v = classical ? Evaluation<NO_TRACE>(pos).value()
|
||||||
|
: NNUE::evaluate(pos) * 5 / 4 + Tempo;
|
||||||
|
|
||||||
|
if (classical && Eval::useNNUE && abs(v) * 16 < NNUEThreshold2 * (16 + pos.rule50_count()))
|
||||||
|
v = NNUE::evaluate(pos) * 5 / 4 + Tempo;
|
||||||
|
|
||||||
|
// Damp down the evaluation linearly when shuffling
|
||||||
|
v = v * (100 - pos.rule50_count()) / 100;
|
||||||
|
|
||||||
|
// Guarantee evaluation does not hit the tablebase range
|
||||||
|
v = std::clamp(v, VALUE_TB_LOSS_IN_MAX_PLY + 1, VALUE_TB_WIN_IN_MAX_PLY - 1);
|
||||||
|
|
||||||
|
return v;
|
||||||
|
}
|
||||||
|
|
||||||
/// trace() is like evaluate(), but instead of returning a value, it returns
|
/// trace() is like evaluate(), but instead of returning a value, it returns
|
||||||
/// a string (suitable for outputting to stdout) that contains the detailed
|
/// a string (suitable for outputting to stdout) that contains the detailed
|
||||||
/// descriptions and values of each evaluation term. Useful for debugging.
|
/// descriptions and values of each evaluation term. Useful for debugging.
|
||||||
|
/// Trace scores are from white's point of view
|
||||||
|
|
||||||
std::string Eval::trace(const Position& pos) {
|
std::string Eval::trace(const Position& pos) {
|
||||||
|
|
||||||
if (pos.checkers())
|
if (pos.checkers())
|
||||||
return "Total evaluation: none (in check)";
|
return "Final evaluation: none (in check)";
|
||||||
|
|
||||||
|
std::stringstream ss;
|
||||||
|
ss << std::showpoint << std::noshowpos << std::fixed << std::setprecision(2);
|
||||||
|
|
||||||
|
Value v;
|
||||||
|
|
||||||
std::memset(scores, 0, sizeof(scores));
|
std::memset(scores, 0, sizeof(scores));
|
||||||
|
|
||||||
pos.this_thread()->contempt = SCORE_ZERO; // Reset any dynamic contempt
|
pos.this_thread()->contempt = SCORE_ZERO; // Reset any dynamic contempt
|
||||||
|
|
||||||
Value v = Evaluation<TRACE>(pos).value();
|
v = Evaluation<TRACE>(pos).value();
|
||||||
|
|
||||||
v = pos.side_to_move() == WHITE ? v : -v; // Trace scores are from white's point of view
|
|
||||||
|
|
||||||
std::stringstream ss;
|
|
||||||
ss << std::showpoint << std::noshowpos << std::fixed << std::setprecision(2)
|
ss << std::showpoint << std::noshowpos << std::fixed << std::setprecision(2)
|
||||||
<< " Term | White | Black | Total \n"
|
<< " Term | White | Black | Total \n"
|
||||||
<< " | MG EG | MG EG | MG EG \n"
|
<< " | MG EG | MG EG | MG EG \n"
|
||||||
|
@ -916,7 +1073,20 @@ std::string Eval::trace(const Position& pos) {
|
||||||
<< " ------------+-------------+-------------+------------\n"
|
<< " ------------+-------------+-------------+------------\n"
|
||||||
<< " Total | " << Term(TOTAL);
|
<< " Total | " << Term(TOTAL);
|
||||||
|
|
||||||
ss << "\nFinal evaluation: " << to_cp(v) << " (white side)\n";
|
v = pos.side_to_move() == WHITE ? v : -v;
|
||||||
|
|
||||||
|
ss << "\nClassical evaluation: " << to_cp(v) << " (white side)\n";
|
||||||
|
|
||||||
|
if (Eval::useNNUE)
|
||||||
|
{
|
||||||
|
v = NNUE::evaluate(pos);
|
||||||
|
v = pos.side_to_move() == WHITE ? v : -v;
|
||||||
|
ss << "\nNNUE evaluation: " << to_cp(v) << " (white side)\n";
|
||||||
|
}
|
||||||
|
|
||||||
|
v = evaluate(pos);
|
||||||
|
v = pos.side_to_move() == WHITE ? v : -v;
|
||||||
|
ss << "\nFinal evaluation: " << to_cp(v) << " (white side)\n";
|
||||||
|
|
||||||
return ss.str();
|
return ss.str();
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,8 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
||||||
Copyright (C) 2004-2008 Tord Romstad (Glaurung author)
|
Copyright (C) 2004-2020 The Stockfish developers (see AUTHORS file)
|
||||||
Copyright (C) 2008-2015 Marco Costalba, Joona Kiiski, Tord Romstad
|
|
||||||
Copyright (C) 2015-2020 Marco Costalba, Joona Kiiski, Gary Linscott, Tord Romstad
|
|
||||||
|
|
||||||
Stockfish is free software: you can redistribute it and/or modify
|
Stockfish is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
@ -29,9 +27,28 @@ class Position;
|
||||||
|
|
||||||
namespace Eval {
|
namespace Eval {
|
||||||
|
|
||||||
std::string trace(const Position& pos);
|
std::string trace(const Position& pos);
|
||||||
|
Value evaluate(const Position& pos);
|
||||||
|
|
||||||
Value evaluate(const Position& pos);
|
extern bool useNNUE;
|
||||||
}
|
extern std::string eval_file_loaded;
|
||||||
|
void init_NNUE();
|
||||||
|
void verify_NNUE();
|
||||||
|
|
||||||
|
// The default net name MUST follow the format nn-[SHA256 first 12 digits].nnue
|
||||||
|
// for the build process (profile-build and fishtest) to work. Do not change the
|
||||||
|
// name of the macro, as it is used in the Makefile.
|
||||||
|
#define EvalFileDefaultName "nn-82215d0fd0df.nnue"
|
||||||
|
|
||||||
|
namespace NNUE {
|
||||||
|
|
||||||
|
Value evaluate(const Position& pos);
|
||||||
|
Value compute_eval(const Position& pos);
|
||||||
|
void update_eval(const Position& pos);
|
||||||
|
bool load_eval(std::string streamName, std::istream& stream);
|
||||||
|
|
||||||
|
} // namespace NNUE
|
||||||
|
|
||||||
|
} // namespace Eval
|
||||||
|
|
||||||
#endif // #ifndef EVALUATE_H_INCLUDED
|
#endif // #ifndef EVALUATE_H_INCLUDED
|
||||||
|
|
26
DroidFishApp/src/main/cpp/stockfish/incbin/UNLICENCE
Normal file
26
DroidFishApp/src/main/cpp/stockfish/incbin/UNLICENCE
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
The file "incbin.h" is free and unencumbered software released into
|
||||||
|
the public domain by Dale Weiler, see:
|
||||||
|
<https://github.com/graphitemaster/incbin>
|
||||||
|
|
||||||
|
Anyone is free to copy, modify, publish, use, compile, sell, or
|
||||||
|
distribute this software, either in source code form or as a compiled
|
||||||
|
binary, for any purpose, commercial or non-commercial, and by any
|
||||||
|
means.
|
||||||
|
|
||||||
|
In jurisdictions that recognize copyright laws, the author or authors
|
||||||
|
of this software dedicate any and all copyright interest in the
|
||||||
|
software to the public domain. We make this dedication for the benefit
|
||||||
|
of the public at large and to the detriment of our heirs and
|
||||||
|
successors. We intend this dedication to be an overt act of
|
||||||
|
relinquishment in perpetuity of all present and future rights to this
|
||||||
|
software under copyright law.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||||
|
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||||
|
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
||||||
|
IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
|
||||||
|
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
||||||
|
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
||||||
|
OTHER DEALINGS IN THE SOFTWARE.
|
||||||
|
|
||||||
|
For more information, please refer to <http://unlicense.org/>
|
368
DroidFishApp/src/main/cpp/stockfish/incbin/incbin.h
Executable file
368
DroidFishApp/src/main/cpp/stockfish/incbin/incbin.h
Executable file
|
@ -0,0 +1,368 @@
|
||||||
|
/**
|
||||||
|
* @file incbin.h
|
||||||
|
* @author Dale Weiler
|
||||||
|
* @brief Utility for including binary files
|
||||||
|
*
|
||||||
|
* Facilities for including binary files into the current translation unit and
|
||||||
|
* making use from them externally in other translation units.
|
||||||
|
*/
|
||||||
|
#ifndef INCBIN_HDR
|
||||||
|
#define INCBIN_HDR
|
||||||
|
#include <limits.h>
|
||||||
|
#if defined(__AVX512BW__) || \
|
||||||
|
defined(__AVX512CD__) || \
|
||||||
|
defined(__AVX512DQ__) || \
|
||||||
|
defined(__AVX512ER__) || \
|
||||||
|
defined(__AVX512PF__) || \
|
||||||
|
defined(__AVX512VL__) || \
|
||||||
|
defined(__AVX512F__)
|
||||||
|
# define INCBIN_ALIGNMENT_INDEX 6
|
||||||
|
#elif defined(__AVX__) || \
|
||||||
|
defined(__AVX2__)
|
||||||
|
# define INCBIN_ALIGNMENT_INDEX 5
|
||||||
|
#elif defined(__SSE__) || \
|
||||||
|
defined(__SSE2__) || \
|
||||||
|
defined(__SSE3__) || \
|
||||||
|
defined(__SSSE3__) || \
|
||||||
|
defined(__SSE4_1__) || \
|
||||||
|
defined(__SSE4_2__) || \
|
||||||
|
defined(__neon__)
|
||||||
|
# define INCBIN_ALIGNMENT_INDEX 4
|
||||||
|
#elif ULONG_MAX != 0xffffffffu
|
||||||
|
# define INCBIN_ALIGNMENT_INDEX 3
|
||||||
|
# else
|
||||||
|
# define INCBIN_ALIGNMENT_INDEX 2
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Lookup table of (1 << n) where `n' is `INCBIN_ALIGNMENT_INDEX' */
|
||||||
|
#define INCBIN_ALIGN_SHIFT_0 1
|
||||||
|
#define INCBIN_ALIGN_SHIFT_1 2
|
||||||
|
#define INCBIN_ALIGN_SHIFT_2 4
|
||||||
|
#define INCBIN_ALIGN_SHIFT_3 8
|
||||||
|
#define INCBIN_ALIGN_SHIFT_4 16
|
||||||
|
#define INCBIN_ALIGN_SHIFT_5 32
|
||||||
|
#define INCBIN_ALIGN_SHIFT_6 64
|
||||||
|
|
||||||
|
/* Actual alignment value */
|
||||||
|
#define INCBIN_ALIGNMENT \
|
||||||
|
INCBIN_CONCATENATE( \
|
||||||
|
INCBIN_CONCATENATE(INCBIN_ALIGN_SHIFT, _), \
|
||||||
|
INCBIN_ALIGNMENT_INDEX)
|
||||||
|
|
||||||
|
/* Stringize */
|
||||||
|
#define INCBIN_STR(X) \
|
||||||
|
#X
|
||||||
|
#define INCBIN_STRINGIZE(X) \
|
||||||
|
INCBIN_STR(X)
|
||||||
|
/* Concatenate */
|
||||||
|
#define INCBIN_CAT(X, Y) \
|
||||||
|
X ## Y
|
||||||
|
#define INCBIN_CONCATENATE(X, Y) \
|
||||||
|
INCBIN_CAT(X, Y)
|
||||||
|
/* Deferred macro expansion */
|
||||||
|
#define INCBIN_EVAL(X) \
|
||||||
|
X
|
||||||
|
#define INCBIN_INVOKE(N, ...) \
|
||||||
|
INCBIN_EVAL(N(__VA_ARGS__))
|
||||||
|
|
||||||
|
/* Green Hills uses a different directive for including binary data */
|
||||||
|
#if defined(__ghs__)
|
||||||
|
# if (__ghs_asm == 2)
|
||||||
|
# define INCBIN_MACRO ".file"
|
||||||
|
/* Or consider the ".myrawdata" entry in the ld file */
|
||||||
|
# else
|
||||||
|
# define INCBIN_MACRO "\tINCBIN"
|
||||||
|
# endif
|
||||||
|
#else
|
||||||
|
# define INCBIN_MACRO ".incbin"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifndef _MSC_VER
|
||||||
|
# define INCBIN_ALIGN \
|
||||||
|
__attribute__((aligned(INCBIN_ALIGNMENT)))
|
||||||
|
#else
|
||||||
|
# define INCBIN_ALIGN __declspec(align(INCBIN_ALIGNMENT))
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(__arm__) || /* GNU C and RealView */ \
|
||||||
|
defined(__arm) || /* Diab */ \
|
||||||
|
defined(_ARM) /* ImageCraft */
|
||||||
|
# define INCBIN_ARM
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifdef __GNUC__
|
||||||
|
/* Utilize .balign where supported */
|
||||||
|
# define INCBIN_ALIGN_HOST ".balign " INCBIN_STRINGIZE(INCBIN_ALIGNMENT) "\n"
|
||||||
|
# define INCBIN_ALIGN_BYTE ".balign 1\n"
|
||||||
|
#elif defined(INCBIN_ARM)
|
||||||
|
/*
|
||||||
|
* On arm assemblers, the alignment value is calculated as (1 << n) where `n' is
|
||||||
|
* the shift count. This is the value passed to `.align'
|
||||||
|
*/
|
||||||
|
# define INCBIN_ALIGN_HOST ".align " INCBIN_STRINGIZE(INCBIN_ALIGNMENT_INDEX) "\n"
|
||||||
|
# define INCBIN_ALIGN_BYTE ".align 0\n"
|
||||||
|
#else
|
||||||
|
/* We assume other inline assembler's treat `.align' as `.balign' */
|
||||||
|
# define INCBIN_ALIGN_HOST ".align " INCBIN_STRINGIZE(INCBIN_ALIGNMENT) "\n"
|
||||||
|
# define INCBIN_ALIGN_BYTE ".align 1\n"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* INCBIN_CONST is used by incbin.c generated files */
|
||||||
|
#if defined(__cplusplus)
|
||||||
|
# define INCBIN_EXTERNAL extern "C"
|
||||||
|
# define INCBIN_CONST extern const
|
||||||
|
#else
|
||||||
|
# define INCBIN_EXTERNAL extern
|
||||||
|
# define INCBIN_CONST const
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Optionally override the linker section into which data is emitted.
|
||||||
|
*
|
||||||
|
* @warning If you use this facility, you'll have to deal with platform-specific linker output
|
||||||
|
* section naming on your own
|
||||||
|
*
|
||||||
|
* Overriding the default linker output section, e.g for esp8266/Arduino:
|
||||||
|
* @code
|
||||||
|
* #define INCBIN_OUTPUT_SECTION ".irom.text"
|
||||||
|
* #include "incbin.h"
|
||||||
|
* INCBIN(Foo, "foo.txt");
|
||||||
|
* // Data is emitted into program memory that never gets copied to RAM
|
||||||
|
* @endcode
|
||||||
|
*/
|
||||||
|
#if !defined(INCBIN_OUTPUT_SECTION)
|
||||||
|
# if defined(__APPLE__)
|
||||||
|
# define INCBIN_OUTPUT_SECTION ".const_data"
|
||||||
|
# else
|
||||||
|
# define INCBIN_OUTPUT_SECTION ".rodata"
|
||||||
|
# endif
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(__APPLE__)
|
||||||
|
/* The directives are different for Apple branded compilers */
|
||||||
|
# define INCBIN_SECTION INCBIN_OUTPUT_SECTION "\n"
|
||||||
|
# define INCBIN_GLOBAL(NAME) ".globl " INCBIN_MANGLE INCBIN_STRINGIZE(INCBIN_PREFIX) #NAME "\n"
|
||||||
|
# define INCBIN_INT ".long "
|
||||||
|
# define INCBIN_MANGLE "_"
|
||||||
|
# define INCBIN_BYTE ".byte "
|
||||||
|
# define INCBIN_TYPE(...)
|
||||||
|
#else
|
||||||
|
# define INCBIN_SECTION ".section " INCBIN_OUTPUT_SECTION "\n"
|
||||||
|
# define INCBIN_GLOBAL(NAME) ".global " INCBIN_STRINGIZE(INCBIN_PREFIX) #NAME "\n"
|
||||||
|
# if defined(__ghs__)
|
||||||
|
# define INCBIN_INT ".word "
|
||||||
|
# else
|
||||||
|
# define INCBIN_INT ".int "
|
||||||
|
# endif
|
||||||
|
# if defined(__USER_LABEL_PREFIX__)
|
||||||
|
# define INCBIN_MANGLE INCBIN_STRINGIZE(__USER_LABEL_PREFIX__)
|
||||||
|
# else
|
||||||
|
# define INCBIN_MANGLE ""
|
||||||
|
# endif
|
||||||
|
# if defined(INCBIN_ARM)
|
||||||
|
/* On arm assemblers, `@' is used as a line comment token */
|
||||||
|
# define INCBIN_TYPE(NAME) ".type " INCBIN_STRINGIZE(INCBIN_PREFIX) #NAME ", %object\n"
|
||||||
|
# elif defined(__MINGW32__) || defined(__MINGW64__)
|
||||||
|
/* Mingw doesn't support this directive either */
|
||||||
|
# define INCBIN_TYPE(NAME)
|
||||||
|
# else
|
||||||
|
/* It's safe to use `@' on other architectures */
|
||||||
|
# define INCBIN_TYPE(NAME) ".type " INCBIN_STRINGIZE(INCBIN_PREFIX) #NAME ", @object\n"
|
||||||
|
# endif
|
||||||
|
# define INCBIN_BYTE ".byte "
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* List of style types used for symbol names */
|
||||||
|
#define INCBIN_STYLE_CAMEL 0
|
||||||
|
#define INCBIN_STYLE_SNAKE 1
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Specify the prefix to use for symbol names.
|
||||||
|
*
|
||||||
|
* By default this is `g', producing symbols of the form:
|
||||||
|
* @code
|
||||||
|
* #include "incbin.h"
|
||||||
|
* INCBIN(Foo, "foo.txt");
|
||||||
|
*
|
||||||
|
* // Now you have the following symbols:
|
||||||
|
* // const unsigned char gFooData[];
|
||||||
|
* // const unsigned char *const gFooEnd;
|
||||||
|
* // const unsigned int gFooSize;
|
||||||
|
* @endcode
|
||||||
|
*
|
||||||
|
* If however you specify a prefix before including: e.g:
|
||||||
|
* @code
|
||||||
|
* #define INCBIN_PREFIX incbin
|
||||||
|
* #include "incbin.h"
|
||||||
|
* INCBIN(Foo, "foo.txt");
|
||||||
|
*
|
||||||
|
* // Now you have the following symbols instead:
|
||||||
|
* // const unsigned char incbinFooData[];
|
||||||
|
* // const unsigned char *const incbinFooEnd;
|
||||||
|
* // const unsigned int incbinFooSize;
|
||||||
|
* @endcode
|
||||||
|
*/
|
||||||
|
#if !defined(INCBIN_PREFIX)
|
||||||
|
# define INCBIN_PREFIX g
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Specify the style used for symbol names.
|
||||||
|
*
|
||||||
|
* Possible options are
|
||||||
|
* - INCBIN_STYLE_CAMEL "CamelCase"
|
||||||
|
* - INCBIN_STYLE_SNAKE "snake_case"
|
||||||
|
*
|
||||||
|
* Default option is *INCBIN_STYLE_CAMEL* producing symbols of the form:
|
||||||
|
* @code
|
||||||
|
* #include "incbin.h"
|
||||||
|
* INCBIN(Foo, "foo.txt");
|
||||||
|
*
|
||||||
|
* // Now you have the following symbols:
|
||||||
|
* // const unsigned char <prefix>FooData[];
|
||||||
|
* // const unsigned char *const <prefix>FooEnd;
|
||||||
|
* // const unsigned int <prefix>FooSize;
|
||||||
|
* @endcode
|
||||||
|
*
|
||||||
|
* If however you specify a style before including: e.g:
|
||||||
|
* @code
|
||||||
|
* #define INCBIN_STYLE INCBIN_STYLE_SNAKE
|
||||||
|
* #include "incbin.h"
|
||||||
|
* INCBIN(foo, "foo.txt");
|
||||||
|
*
|
||||||
|
* // Now you have the following symbols:
|
||||||
|
* // const unsigned char <prefix>foo_data[];
|
||||||
|
* // const unsigned char *const <prefix>foo_end;
|
||||||
|
* // const unsigned int <prefix>foo_size;
|
||||||
|
* @endcode
|
||||||
|
*/
|
||||||
|
#if !defined(INCBIN_STYLE)
|
||||||
|
# define INCBIN_STYLE INCBIN_STYLE_CAMEL
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Style lookup tables */
|
||||||
|
#define INCBIN_STYLE_0_DATA Data
|
||||||
|
#define INCBIN_STYLE_0_END End
|
||||||
|
#define INCBIN_STYLE_0_SIZE Size
|
||||||
|
#define INCBIN_STYLE_1_DATA _data
|
||||||
|
#define INCBIN_STYLE_1_END _end
|
||||||
|
#define INCBIN_STYLE_1_SIZE _size
|
||||||
|
|
||||||
|
/* Style lookup: returning identifier */
|
||||||
|
#define INCBIN_STYLE_IDENT(TYPE) \
|
||||||
|
INCBIN_CONCATENATE( \
|
||||||
|
INCBIN_STYLE_, \
|
||||||
|
INCBIN_CONCATENATE( \
|
||||||
|
INCBIN_EVAL(INCBIN_STYLE), \
|
||||||
|
INCBIN_CONCATENATE(_, TYPE)))
|
||||||
|
|
||||||
|
/* Style lookup: returning string literal */
|
||||||
|
#define INCBIN_STYLE_STRING(TYPE) \
|
||||||
|
INCBIN_STRINGIZE( \
|
||||||
|
INCBIN_STYLE_IDENT(TYPE)) \
|
||||||
|
|
||||||
|
/* Generate the global labels by indirectly invoking the macro with our style
|
||||||
|
* type and concatenating the name against them. */
|
||||||
|
#define INCBIN_GLOBAL_LABELS(NAME, TYPE) \
|
||||||
|
INCBIN_INVOKE( \
|
||||||
|
INCBIN_GLOBAL, \
|
||||||
|
INCBIN_CONCATENATE( \
|
||||||
|
NAME, \
|
||||||
|
INCBIN_INVOKE( \
|
||||||
|
INCBIN_STYLE_IDENT, \
|
||||||
|
TYPE))) \
|
||||||
|
INCBIN_INVOKE( \
|
||||||
|
INCBIN_TYPE, \
|
||||||
|
INCBIN_CONCATENATE( \
|
||||||
|
NAME, \
|
||||||
|
INCBIN_INVOKE( \
|
||||||
|
INCBIN_STYLE_IDENT, \
|
||||||
|
TYPE)))
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Externally reference binary data included in another translation unit.
|
||||||
|
*
|
||||||
|
* Produces three external symbols that reference the binary data included in
|
||||||
|
* another translation unit.
|
||||||
|
*
|
||||||
|
* The symbol names are a concatenation of `INCBIN_PREFIX' before *NAME*; with
|
||||||
|
* "Data", as well as "End" and "Size" after. An example is provided below.
|
||||||
|
*
|
||||||
|
* @param NAME The name given for the binary data
|
||||||
|
*
|
||||||
|
* @code
|
||||||
|
* INCBIN_EXTERN(Foo);
|
||||||
|
*
|
||||||
|
* // Now you have the following symbols:
|
||||||
|
* // extern const unsigned char <prefix>FooData[];
|
||||||
|
* // extern const unsigned char *const <prefix>FooEnd;
|
||||||
|
* // extern const unsigned int <prefix>FooSize;
|
||||||
|
* @endcode
|
||||||
|
*/
|
||||||
|
#define INCBIN_EXTERN(NAME) \
|
||||||
|
INCBIN_EXTERNAL const INCBIN_ALIGN unsigned char \
|
||||||
|
INCBIN_CONCATENATE( \
|
||||||
|
INCBIN_CONCATENATE(INCBIN_PREFIX, NAME), \
|
||||||
|
INCBIN_STYLE_IDENT(DATA))[]; \
|
||||||
|
INCBIN_EXTERNAL const INCBIN_ALIGN unsigned char *const \
|
||||||
|
INCBIN_CONCATENATE( \
|
||||||
|
INCBIN_CONCATENATE(INCBIN_PREFIX, NAME), \
|
||||||
|
INCBIN_STYLE_IDENT(END)); \
|
||||||
|
INCBIN_EXTERNAL const unsigned int \
|
||||||
|
INCBIN_CONCATENATE( \
|
||||||
|
INCBIN_CONCATENATE(INCBIN_PREFIX, NAME), \
|
||||||
|
INCBIN_STYLE_IDENT(SIZE))
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Include a binary file into the current translation unit.
|
||||||
|
*
|
||||||
|
* Includes a binary file into the current translation unit, producing three symbols
|
||||||
|
* for objects that encode the data and size respectively.
|
||||||
|
*
|
||||||
|
* The symbol names are a concatenation of `INCBIN_PREFIX' before *NAME*; with
|
||||||
|
* "Data", as well as "End" and "Size" after. An example is provided below.
|
||||||
|
*
|
||||||
|
* @param NAME The name to associate with this binary data (as an identifier.)
|
||||||
|
* @param FILENAME The file to include (as a string literal.)
|
||||||
|
*
|
||||||
|
* @code
|
||||||
|
* INCBIN(Icon, "icon.png");
|
||||||
|
*
|
||||||
|
* // Now you have the following symbols:
|
||||||
|
* // const unsigned char <prefix>IconData[];
|
||||||
|
* // const unsigned char *const <prefix>IconEnd;
|
||||||
|
* // const unsigned int <prefix>IconSize;
|
||||||
|
* @endcode
|
||||||
|
*
|
||||||
|
* @warning This must be used in global scope
|
||||||
|
* @warning The identifiers may be different if INCBIN_STYLE is not default
|
||||||
|
*
|
||||||
|
* To externally reference the data included by this in another translation unit
|
||||||
|
* please @see INCBIN_EXTERN.
|
||||||
|
*/
|
||||||
|
#ifdef _MSC_VER
|
||||||
|
#define INCBIN(NAME, FILENAME) \
|
||||||
|
INCBIN_EXTERN(NAME)
|
||||||
|
#else
|
||||||
|
#define INCBIN(NAME, FILENAME) \
|
||||||
|
__asm__(INCBIN_SECTION \
|
||||||
|
INCBIN_GLOBAL_LABELS(NAME, DATA) \
|
||||||
|
INCBIN_ALIGN_HOST \
|
||||||
|
INCBIN_MANGLE INCBIN_STRINGIZE(INCBIN_PREFIX) #NAME INCBIN_STYLE_STRING(DATA) ":\n" \
|
||||||
|
INCBIN_MACRO " \"" FILENAME "\"\n" \
|
||||||
|
INCBIN_GLOBAL_LABELS(NAME, END) \
|
||||||
|
INCBIN_ALIGN_BYTE \
|
||||||
|
INCBIN_MANGLE INCBIN_STRINGIZE(INCBIN_PREFIX) #NAME INCBIN_STYLE_STRING(END) ":\n" \
|
||||||
|
INCBIN_BYTE "1\n" \
|
||||||
|
INCBIN_GLOBAL_LABELS(NAME, SIZE) \
|
||||||
|
INCBIN_ALIGN_HOST \
|
||||||
|
INCBIN_MANGLE INCBIN_STRINGIZE(INCBIN_PREFIX) #NAME INCBIN_STYLE_STRING(SIZE) ":\n" \
|
||||||
|
INCBIN_INT INCBIN_MANGLE INCBIN_STRINGIZE(INCBIN_PREFIX) #NAME INCBIN_STYLE_STRING(END) " - " \
|
||||||
|
INCBIN_MANGLE INCBIN_STRINGIZE(INCBIN_PREFIX) #NAME INCBIN_STYLE_STRING(DATA) "\n" \
|
||||||
|
INCBIN_ALIGN_HOST \
|
||||||
|
".text\n" \
|
||||||
|
); \
|
||||||
|
INCBIN_EXTERN(NAME)
|
||||||
|
|
||||||
|
#endif
|
||||||
|
#endif
|
|
@ -1,8 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
||||||
Copyright (C) 2004-2008 Tord Romstad (Glaurung author)
|
Copyright (C) 2004-2020 The Stockfish developers (see AUTHORS file)
|
||||||
Copyright (C) 2008-2015 Marco Costalba, Joona Kiiski, Tord Romstad
|
|
||||||
Copyright (C) 2015-2020 Marco Costalba, Joona Kiiski, Gary Linscott, Tord Romstad
|
|
||||||
|
|
||||||
Stockfish is free software: you can redistribute it and/or modify
|
Stockfish is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
@ -37,6 +35,7 @@ int main(int argc, char* argv[]) {
|
||||||
|
|
||||||
std::cout << engine_info() << std::endl;
|
std::cout << engine_info() << std::endl;
|
||||||
|
|
||||||
|
CommandLine::init(argc, argv);
|
||||||
UCI::init(Options);
|
UCI::init(Options);
|
||||||
Tune::init();
|
Tune::init();
|
||||||
PSQT::init();
|
PSQT::init();
|
||||||
|
@ -46,6 +45,7 @@ int main(int argc, char* argv[]) {
|
||||||
Endgames::init();
|
Endgames::init();
|
||||||
Threads.set(size_t(Options["Threads"]));
|
Threads.set(size_t(Options["Threads"]));
|
||||||
Search::clear(); // After threads are up
|
Search::clear(); // After threads are up
|
||||||
|
Eval::init_NNUE();
|
||||||
|
|
||||||
UCI::loop(argc, argv);
|
UCI::loop(argc, argv);
|
||||||
|
|
||||||
|
|
|
@ -1,8 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
||||||
Copyright (C) 2004-2008 Tord Romstad (Glaurung author)
|
Copyright (C) 2004-2020 The Stockfish developers (see AUTHORS file)
|
||||||
Copyright (C) 2008-2015 Marco Costalba, Joona Kiiski, Tord Romstad
|
|
||||||
Copyright (C) 2015-2020 Marco Costalba, Joona Kiiski, Gary Linscott, Tord Romstad
|
|
||||||
|
|
||||||
Stockfish is free software: you can redistribute it and/or modify
|
Stockfish is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
@ -44,12 +42,12 @@ namespace {
|
||||||
constexpr int QuadraticTheirs[][PIECE_TYPE_NB] = {
|
constexpr int QuadraticTheirs[][PIECE_TYPE_NB] = {
|
||||||
// THEIR PIECES
|
// THEIR PIECES
|
||||||
// pair pawn knight bishop rook queen
|
// pair pawn knight bishop rook queen
|
||||||
{ 0 }, // Bishop pair
|
{ }, // Bishop pair
|
||||||
{ 36, 0 }, // Pawn
|
{ 36, }, // Pawn
|
||||||
{ 9, 63, 0 }, // Knight OUR PIECES
|
{ 9, 63, }, // Knight OUR PIECES
|
||||||
{ 59, 65, 42, 0 }, // Bishop
|
{ 59, 65, 42, }, // Bishop
|
||||||
{ 46, 39, 24, -24, 0 }, // Rook
|
{ 46, 39, 24, -24, }, // Rook
|
||||||
{ 97, 100, -42, 137, 268, 0 } // Queen
|
{ 97, 100, -42, 137, 268, } // Queen
|
||||||
};
|
};
|
||||||
|
|
||||||
// Endgame evaluation and scaling functions are accessed directly and not through
|
// Endgame evaluation and scaling functions are accessed directly and not through
|
||||||
|
@ -79,8 +77,10 @@ namespace {
|
||||||
&& pos.count<PAWN>(~us) >= 1;
|
&& pos.count<PAWN>(~us) >= 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/// imbalance() calculates the imbalance by comparing the piece count of each
|
/// imbalance() calculates the imbalance by comparing the piece count of each
|
||||||
/// piece type for both colors.
|
/// piece type for both colors.
|
||||||
|
|
||||||
template<Color Us>
|
template<Color Us>
|
||||||
int imbalance(const int pieceCount[][PIECE_TYPE_NB]) {
|
int imbalance(const int pieceCount[][PIECE_TYPE_NB]) {
|
||||||
|
|
||||||
|
@ -94,9 +94,9 @@ namespace {
|
||||||
if (!pieceCount[Us][pt1])
|
if (!pieceCount[Us][pt1])
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
int v = 0;
|
int v = QuadraticOurs[pt1][pt1] * pieceCount[Us][pt1];
|
||||||
|
|
||||||
for (int pt2 = NO_PIECE_TYPE; pt2 <= pt1; ++pt2)
|
for (int pt2 = NO_PIECE_TYPE; pt2 < pt1; ++pt2)
|
||||||
v += QuadraticOurs[pt1][pt2] * pieceCount[Us][pt2]
|
v += QuadraticOurs[pt1][pt2] * pieceCount[Us][pt2]
|
||||||
+ QuadraticTheirs[pt1][pt2] * pieceCount[Them][pt2];
|
+ QuadraticTheirs[pt1][pt2] * pieceCount[Them][pt2];
|
||||||
|
|
||||||
|
@ -110,6 +110,7 @@ namespace {
|
||||||
|
|
||||||
namespace Material {
|
namespace Material {
|
||||||
|
|
||||||
|
|
||||||
/// Material::probe() looks up the current position's material configuration in
|
/// Material::probe() looks up the current position's material configuration in
|
||||||
/// the material hash table. It returns a pointer to the Entry if the position
|
/// the material hash table. It returns a pointer to the Entry if the position
|
||||||
/// is found. Otherwise a new Entry is computed and stored there, so we don't
|
/// is found. Otherwise a new Entry is computed and stored there, so we don't
|
||||||
|
@ -129,7 +130,7 @@ Entry* probe(const Position& pos) {
|
||||||
|
|
||||||
Value npm_w = pos.non_pawn_material(WHITE);
|
Value npm_w = pos.non_pawn_material(WHITE);
|
||||||
Value npm_b = pos.non_pawn_material(BLACK);
|
Value npm_b = pos.non_pawn_material(BLACK);
|
||||||
Value npm = Utility::clamp(npm_w + npm_b, EndgameLimit, MidgameLimit);
|
Value npm = std::clamp(npm_w + npm_b, EndgameLimit, MidgameLimit);
|
||||||
|
|
||||||
// Map total non-pawn material into [PHASE_ENDGAME, PHASE_MIDGAME]
|
// Map total non-pawn material into [PHASE_ENDGAME, PHASE_MIDGAME]
|
||||||
e->gamePhase = Phase(((npm - EndgameLimit) * PHASE_MIDGAME) / (MidgameLimit - EndgameLimit));
|
e->gamePhase = Phase(((npm - EndgameLimit) * PHASE_MIDGAME) / (MidgameLimit - EndgameLimit));
|
||||||
|
|
|
@ -1,8 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
||||||
Copyright (C) 2004-2008 Tord Romstad (Glaurung author)
|
Copyright (C) 2004-2020 The Stockfish developers (see AUTHORS file)
|
||||||
Copyright (C) 2008-2015 Marco Costalba, Joona Kiiski, Tord Romstad
|
|
||||||
Copyright (C) 2015-2020 Marco Costalba, Joona Kiiski, Gary Linscott, Tord Romstad
|
|
||||||
|
|
||||||
Stockfish is free software: you can redistribute it and/or modify
|
Stockfish is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
@ -44,7 +42,7 @@ struct Entry {
|
||||||
bool specialized_eval_exists() const { return evaluationFunction != nullptr; }
|
bool specialized_eval_exists() const { return evaluationFunction != nullptr; }
|
||||||
Value evaluate(const Position& pos) const { return (*evaluationFunction)(pos); }
|
Value evaluate(const Position& pos) const { return (*evaluationFunction)(pos); }
|
||||||
|
|
||||||
// scale_factor takes a position and a color as input and returns a scale factor
|
// scale_factor() takes a position and a color as input and returns a scale factor
|
||||||
// for the given color. We have to provide the position in addition to the color
|
// for the given color. We have to provide the position in addition to the color
|
||||||
// because the scale factor may also be a function which should be applied to
|
// because the scale factor may also be a function which should be applied to
|
||||||
// the position. For instance, in KBP vs K endgames, the scaling function looks
|
// the position. For instance, in KBP vs K endgames, the scaling function looks
|
||||||
|
|
|
@ -1,8 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
||||||
Copyright (C) 2004-2008 Tord Romstad (Glaurung author)
|
Copyright (C) 2004-2020 The Stockfish developers (see AUTHORS file)
|
||||||
Copyright (C) 2008-2015 Marco Costalba, Joona Kiiski, Tord Romstad
|
|
||||||
Copyright (C) 2015-2020 Marco Costalba, Joona Kiiski, Gary Linscott, Tord Romstad
|
|
||||||
|
|
||||||
Stockfish is free software: you can redistribute it and/or modify
|
Stockfish is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
@ -46,12 +44,18 @@ typedef bool(*fun3_t)(HANDLE, CONST GROUP_AFFINITY*, PGROUP_AFFINITY);
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include <sstream>
|
#include <sstream>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
#include <cstdlib>
|
||||||
|
|
||||||
#if defined(__linux__) && !defined(__ANDROID__)
|
#if defined(__linux__) && !defined(__ANDROID__)
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <sys/mman.h>
|
#include <sys/mman.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if defined(__APPLE__) || defined(__ANDROID__) || defined(__OpenBSD__) || (defined(__GLIBCXX__) && !defined(_GLIBCXX_HAVE_ALIGNED_ALLOC) && !defined(_WIN32))
|
||||||
|
#define POSIXALIGNEDALLOC
|
||||||
|
#include <stdlib.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
#include "misc.h"
|
#include "misc.h"
|
||||||
#include "thread.h"
|
#include "thread.h"
|
||||||
|
|
||||||
|
@ -61,7 +65,7 @@ namespace {
|
||||||
|
|
||||||
/// Version number. If Version is left empty, then compile date in the format
|
/// Version number. If Version is left empty, then compile date in the format
|
||||||
/// DD-MM-YY and show in engine_info.
|
/// DD-MM-YY and show in engine_info.
|
||||||
const string Version = "";
|
const string Version = "12";
|
||||||
|
|
||||||
/// Our fancy logging facility. The trick here is to replace cin.rdbuf() and
|
/// Our fancy logging facility. The trick here is to replace cin.rdbuf() and
|
||||||
/// cout.rdbuf() with two Tie objects that tie cin and cout to a file stream. We
|
/// cout.rdbuf() with two Tie objects that tie cin and cout to a file stream. We
|
||||||
|
@ -128,6 +132,7 @@ public:
|
||||||
|
|
||||||
} // namespace
|
} // namespace
|
||||||
|
|
||||||
|
|
||||||
/// engine_info() returns the full name of the current Stockfish version. This
|
/// engine_info() returns the full name of the current Stockfish version. This
|
||||||
/// will be either "Stockfish <Tag> DD-MM-YY" (where DD-MM-YY is the date when
|
/// will be either "Stockfish <Tag> DD-MM-YY" (where DD-MM-YY is the date when
|
||||||
/// the program was compiled) or "Stockfish <Version>", depending on whether
|
/// the program was compiled) or "Stockfish <Version>", depending on whether
|
||||||
|
@ -147,10 +152,8 @@ const string engine_info(bool to_uci) {
|
||||||
ss << setw(2) << day << setw(2) << (1 + months.find(month) / 4) << year.substr(2);
|
ss << setw(2) << day << setw(2) << (1 + months.find(month) / 4) << year.substr(2);
|
||||||
}
|
}
|
||||||
|
|
||||||
ss << (Is64Bit ? " 64" : "")
|
ss << (to_uci ? "\nid author ": " by ")
|
||||||
<< (HasPext ? " BMI2" : (HasPopCnt ? " POPCNT" : ""))
|
<< "the Stockfish developers (see AUTHORS file)";
|
||||||
<< (to_uci ? "\nid author ": " by ")
|
|
||||||
<< "T. Romstad, M. Costalba, J. Kiiski, G. Linscott";
|
|
||||||
|
|
||||||
return ss.str();
|
return ss.str();
|
||||||
}
|
}
|
||||||
|
@ -215,7 +218,40 @@ const std::string compiler_info() {
|
||||||
compiler += " on unknown system";
|
compiler += " on unknown system";
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
compiler += "\n __VERSION__ macro expands to: ";
|
compiler += "\nCompilation settings include: ";
|
||||||
|
compiler += (Is64Bit ? " 64bit" : " 32bit");
|
||||||
|
#if defined(USE_VNNI)
|
||||||
|
compiler += " VNNI";
|
||||||
|
#endif
|
||||||
|
#if defined(USE_AVX512)
|
||||||
|
compiler += " AVX512";
|
||||||
|
#endif
|
||||||
|
compiler += (HasPext ? " BMI2" : "");
|
||||||
|
#if defined(USE_AVX2)
|
||||||
|
compiler += " AVX2";
|
||||||
|
#endif
|
||||||
|
#if defined(USE_SSE41)
|
||||||
|
compiler += " SSE41";
|
||||||
|
#endif
|
||||||
|
#if defined(USE_SSSE3)
|
||||||
|
compiler += " SSSE3";
|
||||||
|
#endif
|
||||||
|
#if defined(USE_SSE2)
|
||||||
|
compiler += " SSE2";
|
||||||
|
#endif
|
||||||
|
compiler += (HasPopCnt ? " POPCNT" : "");
|
||||||
|
#if defined(USE_MMX)
|
||||||
|
compiler += " MMX";
|
||||||
|
#endif
|
||||||
|
#if defined(USE_NEON)
|
||||||
|
compiler += " NEON";
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if !defined(NDEBUG)
|
||||||
|
compiler += " DEBUG";
|
||||||
|
#endif
|
||||||
|
|
||||||
|
compiler += "\n__VERSION__ macro expands to: ";
|
||||||
#ifdef __VERSION__
|
#ifdef __VERSION__
|
||||||
compiler += __VERSION__;
|
compiler += __VERSION__;
|
||||||
#else
|
#else
|
||||||
|
@ -294,9 +330,37 @@ void prefetch(void* addr) {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
/// aligned_ttmem_alloc will return suitably aligned memory, and if possible use large pages.
|
/// std_aligned_alloc() is our wrapper for systems where the c++17 implementation
|
||||||
/// The returned pointer is the aligned one, while the mem argument is the one that needs to be passed to free.
|
/// does not guarantee the availability of aligned_alloc(). Memory allocated with
|
||||||
/// With c++17 some of this functionality can be simplified.
|
/// std_aligned_alloc() must be freed with std_aligned_free().
|
||||||
|
|
||||||
|
void* std_aligned_alloc(size_t alignment, size_t size) {
|
||||||
|
|
||||||
|
#if defined(POSIXALIGNEDALLOC)
|
||||||
|
void *mem;
|
||||||
|
return posix_memalign(&mem, alignment, size) ? nullptr : mem;
|
||||||
|
#elif defined(_WIN32)
|
||||||
|
return _mm_malloc(size, alignment);
|
||||||
|
#else
|
||||||
|
return std::aligned_alloc(alignment, size);
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
void std_aligned_free(void* ptr) {
|
||||||
|
|
||||||
|
#if defined(POSIXALIGNEDALLOC)
|
||||||
|
free(ptr);
|
||||||
|
#elif defined(_WIN32)
|
||||||
|
_mm_free(ptr);
|
||||||
|
#else
|
||||||
|
free(ptr);
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
/// aligned_ttmem_alloc() will return suitably aligned memory, if possible using large pages.
|
||||||
|
/// The returned pointer is the aligned one, while the mem argument is the one that needs
|
||||||
|
/// to be passed to free. With c++17 some of this functionality could be simplified.
|
||||||
|
|
||||||
#if defined(__linux__) && !defined(__ANDROID__)
|
#if defined(__linux__) && !defined(__ANDROID__)
|
||||||
|
|
||||||
void* aligned_ttmem_alloc(size_t allocSize, void*& mem) {
|
void* aligned_ttmem_alloc(size_t allocSize, void*& mem) {
|
||||||
|
@ -305,7 +369,9 @@ void* aligned_ttmem_alloc(size_t allocSize, void*& mem) {
|
||||||
size_t size = ((allocSize + alignment - 1) / alignment) * alignment; // multiple of alignment
|
size_t size = ((allocSize + alignment - 1) / alignment) * alignment; // multiple of alignment
|
||||||
if (posix_memalign(&mem, alignment, size))
|
if (posix_memalign(&mem, alignment, size))
|
||||||
mem = nullptr;
|
mem = nullptr;
|
||||||
|
#if defined(MADV_HUGEPAGE)
|
||||||
madvise(mem, allocSize, MADV_HUGEPAGE);
|
madvise(mem, allocSize, MADV_HUGEPAGE);
|
||||||
|
#endif
|
||||||
return mem;
|
return mem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -336,17 +402,17 @@ static void* aligned_ttmem_alloc_large_pages(size_t allocSize) {
|
||||||
tp.Privileges[0].Attributes = SE_PRIVILEGE_ENABLED;
|
tp.Privileges[0].Attributes = SE_PRIVILEGE_ENABLED;
|
||||||
|
|
||||||
// Try to enable SeLockMemoryPrivilege. Note that even if AdjustTokenPrivileges() succeeds,
|
// Try to enable SeLockMemoryPrivilege. Note that even if AdjustTokenPrivileges() succeeds,
|
||||||
// we still need to query GetLastError() to ensure that the privileges were actually obtained...
|
// we still need to query GetLastError() to ensure that the privileges were actually obtained.
|
||||||
if (AdjustTokenPrivileges(
|
if (AdjustTokenPrivileges(
|
||||||
hProcessToken, FALSE, &tp, sizeof(TOKEN_PRIVILEGES), &prevTp, &prevTpLen) &&
|
hProcessToken, FALSE, &tp, sizeof(TOKEN_PRIVILEGES), &prevTp, &prevTpLen) &&
|
||||||
GetLastError() == ERROR_SUCCESS)
|
GetLastError() == ERROR_SUCCESS)
|
||||||
{
|
{
|
||||||
// round up size to full pages and allocate
|
// Round up size to full pages and allocate
|
||||||
allocSize = (allocSize + largePageSize - 1) & ~size_t(largePageSize - 1);
|
allocSize = (allocSize + largePageSize - 1) & ~size_t(largePageSize - 1);
|
||||||
mem = VirtualAlloc(
|
mem = VirtualAlloc(
|
||||||
NULL, allocSize, MEM_RESERVE | MEM_COMMIT | MEM_LARGE_PAGES, PAGE_READWRITE);
|
NULL, allocSize, MEM_RESERVE | MEM_COMMIT | MEM_LARGE_PAGES, PAGE_READWRITE);
|
||||||
|
|
||||||
// privilege no longer needed, restore previous state
|
// Privilege no longer needed, restore previous state
|
||||||
AdjustTokenPrivileges(hProcessToken, FALSE, &prevTp, 0, NULL, NULL);
|
AdjustTokenPrivileges(hProcessToken, FALSE, &prevTp, 0, NULL, NULL);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -360,7 +426,7 @@ void* aligned_ttmem_alloc(size_t allocSize, void*& mem) {
|
||||||
|
|
||||||
static bool firstCall = true;
|
static bool firstCall = true;
|
||||||
|
|
||||||
// try to allocate large pages
|
// Try to allocate large pages
|
||||||
mem = aligned_ttmem_alloc_large_pages(allocSize);
|
mem = aligned_ttmem_alloc_large_pages(allocSize);
|
||||||
|
|
||||||
// Suppress info strings on the first call. The first call occurs before 'uci'
|
// Suppress info strings on the first call. The first call occurs before 'uci'
|
||||||
|
@ -374,7 +440,7 @@ void* aligned_ttmem_alloc(size_t allocSize, void*& mem) {
|
||||||
}
|
}
|
||||||
firstCall = false;
|
firstCall = false;
|
||||||
|
|
||||||
// fall back to regular, page aligned, allocation if necessary
|
// Fall back to regular, page aligned, allocation if necessary
|
||||||
if (!mem)
|
if (!mem)
|
||||||
mem = VirtualAlloc(NULL, allocSize, MEM_RESERVE | MEM_COMMIT, PAGE_READWRITE);
|
mem = VirtualAlloc(NULL, allocSize, MEM_RESERVE | MEM_COMMIT, PAGE_READWRITE);
|
||||||
|
|
||||||
|
@ -394,7 +460,9 @@ void* aligned_ttmem_alloc(size_t allocSize, void*& mem) {
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/// aligned_ttmem_free will free the previously allocated ttmem
|
|
||||||
|
/// aligned_ttmem_free() will free the previously allocated ttmem
|
||||||
|
|
||||||
#if defined(_WIN64)
|
#if defined(_WIN64)
|
||||||
|
|
||||||
void aligned_ttmem_free(void* mem) {
|
void aligned_ttmem_free(void* mem) {
|
||||||
|
@ -522,3 +590,61 @@ void bindThisThread(size_t idx) {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
} // namespace WinProcGroup
|
} // namespace WinProcGroup
|
||||||
|
|
||||||
|
#ifdef _WIN32
|
||||||
|
#include <direct.h>
|
||||||
|
#define GETCWD _getcwd
|
||||||
|
#else
|
||||||
|
#include <unistd.h>
|
||||||
|
#define GETCWD getcwd
|
||||||
|
#endif
|
||||||
|
|
||||||
|
namespace CommandLine {
|
||||||
|
|
||||||
|
string argv0; // path+name of the executable binary, as given by argv[0]
|
||||||
|
string binaryDirectory; // path of the executable directory
|
||||||
|
string workingDirectory; // path of the working directory
|
||||||
|
string pathSeparator; // Separator for our current OS
|
||||||
|
|
||||||
|
void init(int argc, char* argv[]) {
|
||||||
|
(void)argc;
|
||||||
|
string separator;
|
||||||
|
|
||||||
|
// extract the path+name of the executable binary
|
||||||
|
argv0 = argv[0];
|
||||||
|
|
||||||
|
#ifdef _WIN32
|
||||||
|
pathSeparator = "\\";
|
||||||
|
#ifdef _MSC_VER
|
||||||
|
// Under windows argv[0] may not have the extension. Also _get_pgmptr() had
|
||||||
|
// issues in some windows 10 versions, so check returned values carefully.
|
||||||
|
char* pgmptr = nullptr;
|
||||||
|
if (!_get_pgmptr(&pgmptr) && pgmptr != nullptr && *pgmptr)
|
||||||
|
argv0 = pgmptr;
|
||||||
|
#endif
|
||||||
|
#else
|
||||||
|
pathSeparator = "/";
|
||||||
|
#endif
|
||||||
|
|
||||||
|
// extract the working directory
|
||||||
|
workingDirectory = "";
|
||||||
|
char buff[40000];
|
||||||
|
char* cwd = GETCWD(buff, 40000);
|
||||||
|
if (cwd)
|
||||||
|
workingDirectory = cwd;
|
||||||
|
|
||||||
|
// extract the binary directory path from argv0
|
||||||
|
binaryDirectory = argv0;
|
||||||
|
size_t pos = binaryDirectory.find_last_of("\\/");
|
||||||
|
if (pos == std::string::npos)
|
||||||
|
binaryDirectory = "." + pathSeparator;
|
||||||
|
else
|
||||||
|
binaryDirectory.resize(pos + 1);
|
||||||
|
|
||||||
|
// pattern replacement: "./" at the start of path is replaced by the working directory
|
||||||
|
if (binaryDirectory.find("." + pathSeparator) == 0)
|
||||||
|
binaryDirectory.replace(0, 1, workingDirectory);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
} // namespace CommandLine
|
||||||
|
|
|
@ -1,8 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
||||||
Copyright (C) 2004-2008 Tord Romstad (Glaurung author)
|
Copyright (C) 2004-2020 The Stockfish developers (see AUTHORS file)
|
||||||
Copyright (C) 2008-2015 Marco Costalba, Joona Kiiski, Tord Romstad
|
|
||||||
Copyright (C) 2015-2020 Marco Costalba, Joona Kiiski, Gary Linscott, Tord Romstad
|
|
||||||
|
|
||||||
Stockfish is free software: you can redistribute it and/or modify
|
Stockfish is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
@ -33,6 +31,8 @@ const std::string engine_info(bool to_uci = false);
|
||||||
const std::string compiler_info();
|
const std::string compiler_info();
|
||||||
void prefetch(void* addr);
|
void prefetch(void* addr);
|
||||||
void start_logger(const std::string& fname);
|
void start_logger(const std::string& fname);
|
||||||
|
void* std_aligned_alloc(size_t alignment, size_t size);
|
||||||
|
void std_aligned_free(void* ptr);
|
||||||
void* aligned_ttmem_alloc(size_t size, void*& mem);
|
void* aligned_ttmem_alloc(size_t size, void*& mem);
|
||||||
void aligned_ttmem_free(void* mem); // nop if mem == nullptr
|
void aligned_ttmem_free(void* mem); // nop if mem == nullptr
|
||||||
|
|
||||||
|
@ -42,9 +42,7 @@ void dbg_mean_of(int v);
|
||||||
void dbg_print();
|
void dbg_print();
|
||||||
|
|
||||||
typedef std::chrono::milliseconds::rep TimePoint; // A value in milliseconds
|
typedef std::chrono::milliseconds::rep TimePoint; // A value in milliseconds
|
||||||
|
|
||||||
static_assert(sizeof(TimePoint) == sizeof(int64_t), "TimePoint should be 64 bits");
|
static_assert(sizeof(TimePoint) == sizeof(int64_t), "TimePoint should be 64 bits");
|
||||||
|
|
||||||
inline TimePoint now() {
|
inline TimePoint now() {
|
||||||
return std::chrono::duration_cast<std::chrono::milliseconds>
|
return std::chrono::duration_cast<std::chrono::milliseconds>
|
||||||
(std::chrono::steady_clock::now().time_since_epoch()).count();
|
(std::chrono::steady_clock::now().time_since_epoch()).count();
|
||||||
|
@ -65,14 +63,6 @@ std::ostream& operator<<(std::ostream&, SyncCout);
|
||||||
#define sync_cout std::cout << IO_LOCK
|
#define sync_cout std::cout << IO_LOCK
|
||||||
#define sync_endl std::endl << IO_UNLOCK
|
#define sync_endl std::endl << IO_UNLOCK
|
||||||
|
|
||||||
namespace Utility {
|
|
||||||
|
|
||||||
/// Clamp a value between lo and hi. Available in c++17.
|
|
||||||
template<class T> constexpr const T& clamp(const T& v, const T& lo, const T& hi) {
|
|
||||||
return v < lo ? lo : v > hi ? hi : v;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
/// xorshift64star Pseudo-Random Number Generator
|
/// xorshift64star Pseudo-Random Number Generator
|
||||||
/// This class is based on original code written and dedicated
|
/// This class is based on original code written and dedicated
|
||||||
|
@ -134,4 +124,11 @@ namespace WinProcGroup {
|
||||||
void bindThisThread(size_t idx);
|
void bindThisThread(size_t idx);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
namespace CommandLine {
|
||||||
|
void init(int argc, char* argv[]);
|
||||||
|
|
||||||
|
extern std::string binaryDirectory; // path of the executable directory
|
||||||
|
extern std::string workingDirectory; // path of the working directory
|
||||||
|
}
|
||||||
|
|
||||||
#endif // #ifndef MISC_H_INCLUDED
|
#endif // #ifndef MISC_H_INCLUDED
|
||||||
|
|
|
@ -1,8 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
||||||
Copyright (C) 2004-2008 Tord Romstad (Glaurung author)
|
Copyright (C) 2004-2020 The Stockfish developers (see AUTHORS file)
|
||||||
Copyright (C) 2008-2015 Marco Costalba, Joona Kiiski, Tord Romstad
|
|
||||||
Copyright (C) 2015-2020 Marco Costalba, Joona Kiiski, Gary Linscott, Tord Romstad
|
|
||||||
|
|
||||||
Stockfish is free software: you can redistribute it and/or modify
|
Stockfish is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
@ -29,22 +27,20 @@ namespace {
|
||||||
ExtMove* make_promotions(ExtMove* moveList, Square to, Square ksq) {
|
ExtMove* make_promotions(ExtMove* moveList, Square to, Square ksq) {
|
||||||
|
|
||||||
if (Type == CAPTURES || Type == EVASIONS || Type == NON_EVASIONS)
|
if (Type == CAPTURES || Type == EVASIONS || Type == NON_EVASIONS)
|
||||||
|
{
|
||||||
*moveList++ = make<PROMOTION>(to - D, to, QUEEN);
|
*moveList++ = make<PROMOTION>(to - D, to, QUEEN);
|
||||||
|
if (attacks_bb<KNIGHT>(to) & ksq)
|
||||||
|
*moveList++ = make<PROMOTION>(to - D, to, KNIGHT);
|
||||||
|
}
|
||||||
|
|
||||||
if (Type == QUIETS || Type == EVASIONS || Type == NON_EVASIONS)
|
if (Type == QUIETS || Type == EVASIONS || Type == NON_EVASIONS)
|
||||||
{
|
{
|
||||||
*moveList++ = make<PROMOTION>(to - D, to, ROOK);
|
*moveList++ = make<PROMOTION>(to - D, to, ROOK);
|
||||||
*moveList++ = make<PROMOTION>(to - D, to, BISHOP);
|
*moveList++ = make<PROMOTION>(to - D, to, BISHOP);
|
||||||
*moveList++ = make<PROMOTION>(to - D, to, KNIGHT);
|
if (!(attacks_bb<KNIGHT>(to) & ksq))
|
||||||
|
*moveList++ = make<PROMOTION>(to - D, to, KNIGHT);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Knight promotion is the only promotion that can give a direct check
|
|
||||||
// that's not already included in the queen promotion.
|
|
||||||
if (Type == QUIET_CHECKS && (attacks_bb<KNIGHT>(to) & ksq))
|
|
||||||
*moveList++ = make<PROMOTION>(to - D, to, KNIGHT);
|
|
||||||
else
|
|
||||||
(void)ksq; // Silence a warning under MSVC
|
|
||||||
|
|
||||||
return moveList;
|
return moveList;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -252,7 +248,7 @@ namespace {
|
||||||
*moveList++ = make_move(ksq, pop_lsb(&b));
|
*moveList++ = make_move(ksq, pop_lsb(&b));
|
||||||
|
|
||||||
if ((Type != CAPTURES) && pos.can_castle(Us & ANY_CASTLING))
|
if ((Type != CAPTURES) && pos.can_castle(Us & ANY_CASTLING))
|
||||||
for(CastlingRights cr : { Us & KING_SIDE, Us & QUEEN_SIDE } )
|
for (CastlingRights cr : { Us & KING_SIDE, Us & QUEEN_SIDE } )
|
||||||
if (!pos.castling_impeded(cr) && pos.can_castle(cr))
|
if (!pos.castling_impeded(cr) && pos.can_castle(cr))
|
||||||
*moveList++ = make<CASTLING>(ksq, pos.castling_rook_square(cr));
|
*moveList++ = make<CASTLING>(ksq, pos.castling_rook_square(cr));
|
||||||
}
|
}
|
||||||
|
@ -263,8 +259,8 @@ namespace {
|
||||||
} // namespace
|
} // namespace
|
||||||
|
|
||||||
|
|
||||||
/// <CAPTURES> Generates all pseudo-legal captures and queen promotions
|
/// <CAPTURES> Generates all pseudo-legal captures plus queen and checking knight promotions
|
||||||
/// <QUIETS> Generates all pseudo-legal non-captures and underpromotions
|
/// <QUIETS> Generates all pseudo-legal non-captures and underpromotions(except checking knight)
|
||||||
/// <NON_EVASIONS> Generates all pseudo-legal captures and non-captures
|
/// <NON_EVASIONS> Generates all pseudo-legal captures and non-captures
|
||||||
///
|
///
|
||||||
/// Returns a pointer to the end of the move list.
|
/// Returns a pointer to the end of the move list.
|
||||||
|
@ -287,8 +283,8 @@ template ExtMove* generate<QUIETS>(const Position&, ExtMove*);
|
||||||
template ExtMove* generate<NON_EVASIONS>(const Position&, ExtMove*);
|
template ExtMove* generate<NON_EVASIONS>(const Position&, ExtMove*);
|
||||||
|
|
||||||
|
|
||||||
/// generate<QUIET_CHECKS> generates all pseudo-legal non-captures and knight
|
/// generate<QUIET_CHECKS> generates all pseudo-legal non-captures.
|
||||||
/// underpromotions that give check. Returns a pointer to the end of the move list.
|
/// Returns a pointer to the end of the move list.
|
||||||
template<>
|
template<>
|
||||||
ExtMove* generate<QUIET_CHECKS>(const Position& pos, ExtMove* moveList) {
|
ExtMove* generate<QUIET_CHECKS>(const Position& pos, ExtMove* moveList) {
|
||||||
|
|
||||||
|
|
|
@ -1,8 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
||||||
Copyright (C) 2004-2008 Tord Romstad (Glaurung author)
|
Copyright (C) 2004-2020 The Stockfish developers (see AUTHORS file)
|
||||||
Copyright (C) 2008-2015 Marco Costalba, Joona Kiiski, Tord Romstad
|
|
||||||
Copyright (C) 2015-2020 Marco Costalba, Joona Kiiski, Gary Linscott, Tord Romstad
|
|
||||||
|
|
||||||
Stockfish is free software: you can redistribute it and/or modify
|
Stockfish is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
|
|
@ -1,8 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
||||||
Copyright (C) 2004-2008 Tord Romstad (Glaurung author)
|
Copyright (C) 2004-2020 The Stockfish developers (see AUTHORS file)
|
||||||
Copyright (C) 2008-2015 Marco Costalba, Joona Kiiski, Tord Romstad
|
|
||||||
Copyright (C) 2015-2020 Marco Costalba, Joona Kiiski, Gary Linscott, Tord Romstad
|
|
||||||
|
|
||||||
Stockfish is free software: you can redistribute it and/or modify
|
Stockfish is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
@ -57,7 +55,7 @@ namespace {
|
||||||
|
|
||||||
/// MovePicker constructor for the main search
|
/// MovePicker constructor for the main search
|
||||||
MovePicker::MovePicker(const Position& p, Move ttm, Depth d, const ButterflyHistory* mh, const LowPlyHistory* lp,
|
MovePicker::MovePicker(const Position& p, Move ttm, Depth d, const ButterflyHistory* mh, const LowPlyHistory* lp,
|
||||||
const CapturePieceToHistory* cph, const PieceToHistory** ch, Move cm, Move* killers, int pl)
|
const CapturePieceToHistory* cph, const PieceToHistory** ch, Move cm, const Move* killers, int pl)
|
||||||
: pos(p), mainHistory(mh), lowPlyHistory(lp), captureHistory(cph), continuationHistory(ch),
|
: pos(p), mainHistory(mh), lowPlyHistory(lp), captureHistory(cph), continuationHistory(ch),
|
||||||
ttMove(ttm), refutations{{killers[0], 0}, {killers[1], 0}, {cm, 0}}, depth(d), ply(pl) {
|
ttMove(ttm), refutations{{killers[0], 0}, {killers[1], 0}, {cm, 0}}, depth(d), ply(pl) {
|
||||||
|
|
||||||
|
@ -184,7 +182,7 @@ top:
|
||||||
--endMoves;
|
--endMoves;
|
||||||
|
|
||||||
++stage;
|
++stage;
|
||||||
/* fallthrough */
|
[[fallthrough]];
|
||||||
|
|
||||||
case REFUTATION:
|
case REFUTATION:
|
||||||
if (select<Next>([&](){ return *cur != MOVE_NONE
|
if (select<Next>([&](){ return *cur != MOVE_NONE
|
||||||
|
@ -192,7 +190,7 @@ top:
|
||||||
&& pos.pseudo_legal(*cur); }))
|
&& pos.pseudo_legal(*cur); }))
|
||||||
return *(cur - 1);
|
return *(cur - 1);
|
||||||
++stage;
|
++stage;
|
||||||
/* fallthrough */
|
[[fallthrough]];
|
||||||
|
|
||||||
case QUIET_INIT:
|
case QUIET_INIT:
|
||||||
if (!skipQuiets)
|
if (!skipQuiets)
|
||||||
|
@ -205,7 +203,7 @@ top:
|
||||||
}
|
}
|
||||||
|
|
||||||
++stage;
|
++stage;
|
||||||
/* fallthrough */
|
[[fallthrough]];
|
||||||
|
|
||||||
case QUIET:
|
case QUIET:
|
||||||
if ( !skipQuiets
|
if ( !skipQuiets
|
||||||
|
@ -219,7 +217,7 @@ top:
|
||||||
endMoves = endBadCaptures;
|
endMoves = endBadCaptures;
|
||||||
|
|
||||||
++stage;
|
++stage;
|
||||||
/* fallthrough */
|
[[fallthrough]];
|
||||||
|
|
||||||
case BAD_CAPTURE:
|
case BAD_CAPTURE:
|
||||||
return select<Next>([](){ return true; });
|
return select<Next>([](){ return true; });
|
||||||
|
@ -230,7 +228,7 @@ top:
|
||||||
|
|
||||||
score<EVASIONS>();
|
score<EVASIONS>();
|
||||||
++stage;
|
++stage;
|
||||||
/* fallthrough */
|
[[fallthrough]];
|
||||||
|
|
||||||
case EVASION:
|
case EVASION:
|
||||||
return select<Best>([](){ return true; });
|
return select<Best>([](){ return true; });
|
||||||
|
@ -248,14 +246,14 @@ top:
|
||||||
return MOVE_NONE;
|
return MOVE_NONE;
|
||||||
|
|
||||||
++stage;
|
++stage;
|
||||||
/* fallthrough */
|
[[fallthrough]];
|
||||||
|
|
||||||
case QCHECK_INIT:
|
case QCHECK_INIT:
|
||||||
cur = moves;
|
cur = moves;
|
||||||
endMoves = generate<QUIET_CHECKS>(pos, cur);
|
endMoves = generate<QUIET_CHECKS>(pos, cur);
|
||||||
|
|
||||||
++stage;
|
++stage;
|
||||||
/* fallthrough */
|
[[fallthrough]];
|
||||||
|
|
||||||
case QCHECK:
|
case QCHECK:
|
||||||
return select<Next>([](){ return true; });
|
return select<Next>([](){ return true; });
|
||||||
|
|
|
@ -1,8 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
||||||
Copyright (C) 2004-2008 Tord Romstad (Glaurung author)
|
Copyright (C) 2004-2020 The Stockfish developers (see AUTHORS file)
|
||||||
Copyright (C) 2008-2015 Marco Costalba, Joona Kiiski, Tord Romstad
|
|
||||||
Copyright (C) 2015-2020 Marco Costalba, Joona Kiiski, Gary Linscott, Tord Romstad
|
|
||||||
|
|
||||||
Stockfish is free software: you can redistribute it and/or modify
|
Stockfish is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
@ -88,9 +86,9 @@ enum StatsType { NoCaptures, Captures };
|
||||||
/// the move's from and to squares, see www.chessprogramming.org/Butterfly_Boards
|
/// the move's from and to squares, see www.chessprogramming.org/Butterfly_Boards
|
||||||
typedef Stats<int16_t, 10692, COLOR_NB, int(SQUARE_NB) * int(SQUARE_NB)> ButterflyHistory;
|
typedef Stats<int16_t, 10692, COLOR_NB, int(SQUARE_NB) * int(SQUARE_NB)> ButterflyHistory;
|
||||||
|
|
||||||
/// LowPlyHistory at higher depths records successful quiet moves on plies 0 to 3
|
/// At higher depths LowPlyHistory records successful quiet moves near the root
|
||||||
/// and quiet moves which are/were in the PV (ttPv)
|
/// and quiet moves which are/were in the PV (ttPv). It is cleared with each new
|
||||||
/// It get cleared with each new search and get filled during iterative deepening
|
/// search and filled during iterative deepening.
|
||||||
constexpr int MAX_LPH = 4;
|
constexpr int MAX_LPH = 4;
|
||||||
typedef Stats<int16_t, 10692, MAX_LPH, int(SQUARE_NB) * int(SQUARE_NB)> LowPlyHistory;
|
typedef Stats<int16_t, 10692, MAX_LPH, int(SQUARE_NB) * int(SQUARE_NB)> LowPlyHistory;
|
||||||
|
|
||||||
|
@ -133,7 +131,7 @@ public:
|
||||||
const CapturePieceToHistory*,
|
const CapturePieceToHistory*,
|
||||||
const PieceToHistory**,
|
const PieceToHistory**,
|
||||||
Move,
|
Move,
|
||||||
Move*,
|
const Move*,
|
||||||
int);
|
int);
|
||||||
Move next_move(bool skipQuiets = false);
|
Move next_move(bool skipQuiets = false);
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,54 @@
|
||||||
|
/*
|
||||||
|
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
||||||
|
Copyright (C) 2004-2020 The Stockfish developers (see AUTHORS file)
|
||||||
|
|
||||||
|
Stockfish is free software: you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
|
||||||
|
Stockfish is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
// Definition of input features and network structure used in NNUE evaluation function
|
||||||
|
|
||||||
|
#ifndef NNUE_HALFKP_256X2_32_32_H_INCLUDED
|
||||||
|
#define NNUE_HALFKP_256X2_32_32_H_INCLUDED
|
||||||
|
|
||||||
|
#include "../features/feature_set.h"
|
||||||
|
#include "../features/half_kp.h"
|
||||||
|
|
||||||
|
#include "../layers/input_slice.h"
|
||||||
|
#include "../layers/affine_transform.h"
|
||||||
|
#include "../layers/clipped_relu.h"
|
||||||
|
|
||||||
|
namespace Eval::NNUE {
|
||||||
|
|
||||||
|
// Input features used in evaluation function
|
||||||
|
using RawFeatures = Features::FeatureSet<
|
||||||
|
Features::HalfKP<Features::Side::kFriend>>;
|
||||||
|
|
||||||
|
// Number of input feature dimensions after conversion
|
||||||
|
constexpr IndexType kTransformedFeatureDimensions = 256;
|
||||||
|
|
||||||
|
namespace Layers {
|
||||||
|
|
||||||
|
// Define network structure
|
||||||
|
using InputLayer = InputSlice<kTransformedFeatureDimensions * 2>;
|
||||||
|
using HiddenLayer1 = ClippedReLU<AffineTransform<InputLayer, 32>>;
|
||||||
|
using HiddenLayer2 = ClippedReLU<AffineTransform<HiddenLayer1, 32>>;
|
||||||
|
using OutputLayer = AffineTransform<HiddenLayer2, 1>;
|
||||||
|
|
||||||
|
} // namespace Layers
|
||||||
|
|
||||||
|
using Network = Layers::OutputLayer;
|
||||||
|
|
||||||
|
} // namespace Eval::NNUE
|
||||||
|
|
||||||
|
#endif // #ifndef NNUE_HALFKP_256X2_32_32_H_INCLUDED
|
168
DroidFishApp/src/main/cpp/stockfish/nnue/evaluate_nnue.cpp
Normal file
168
DroidFishApp/src/main/cpp/stockfish/nnue/evaluate_nnue.cpp
Normal file
|
@ -0,0 +1,168 @@
|
||||||
|
/*
|
||||||
|
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
||||||
|
Copyright (C) 2004-2020 The Stockfish developers (see AUTHORS file)
|
||||||
|
|
||||||
|
Stockfish is free software: you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
|
||||||
|
Stockfish is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
// Code for calculating NNUE evaluation function
|
||||||
|
|
||||||
|
#include <iostream>
|
||||||
|
#include <set>
|
||||||
|
|
||||||
|
#include "../evaluate.h"
|
||||||
|
#include "../position.h"
|
||||||
|
#include "../misc.h"
|
||||||
|
#include "../uci.h"
|
||||||
|
|
||||||
|
#include "evaluate_nnue.h"
|
||||||
|
|
||||||
|
namespace Eval::NNUE {
|
||||||
|
|
||||||
|
uint32_t kpp_board_index[PIECE_NB][COLOR_NB] = {
|
||||||
|
// convention: W - us, B - them
|
||||||
|
// viewed from other side, W and B are reversed
|
||||||
|
{ PS_NONE, PS_NONE },
|
||||||
|
{ PS_W_PAWN, PS_B_PAWN },
|
||||||
|
{ PS_W_KNIGHT, PS_B_KNIGHT },
|
||||||
|
{ PS_W_BISHOP, PS_B_BISHOP },
|
||||||
|
{ PS_W_ROOK, PS_B_ROOK },
|
||||||
|
{ PS_W_QUEEN, PS_B_QUEEN },
|
||||||
|
{ PS_W_KING, PS_B_KING },
|
||||||
|
{ PS_NONE, PS_NONE },
|
||||||
|
{ PS_NONE, PS_NONE },
|
||||||
|
{ PS_B_PAWN, PS_W_PAWN },
|
||||||
|
{ PS_B_KNIGHT, PS_W_KNIGHT },
|
||||||
|
{ PS_B_BISHOP, PS_W_BISHOP },
|
||||||
|
{ PS_B_ROOK, PS_W_ROOK },
|
||||||
|
{ PS_B_QUEEN, PS_W_QUEEN },
|
||||||
|
{ PS_B_KING, PS_W_KING },
|
||||||
|
{ PS_NONE, PS_NONE }
|
||||||
|
};
|
||||||
|
|
||||||
|
// Input feature converter
|
||||||
|
AlignedPtr<FeatureTransformer> feature_transformer;
|
||||||
|
|
||||||
|
// Evaluation function
|
||||||
|
AlignedPtr<Network> network;
|
||||||
|
|
||||||
|
// Evaluation function file name
|
||||||
|
std::string fileName;
|
||||||
|
|
||||||
|
namespace Detail {
|
||||||
|
|
||||||
|
// Initialize the evaluation function parameters
|
||||||
|
template <typename T>
|
||||||
|
void Initialize(AlignedPtr<T>& pointer) {
|
||||||
|
|
||||||
|
pointer.reset(reinterpret_cast<T*>(std_aligned_alloc(alignof(T), sizeof(T))));
|
||||||
|
std::memset(pointer.get(), 0, sizeof(T));
|
||||||
|
}
|
||||||
|
|
||||||
|
// Read evaluation function parameters
|
||||||
|
template <typename T>
|
||||||
|
bool ReadParameters(std::istream& stream, const AlignedPtr<T>& pointer) {
|
||||||
|
|
||||||
|
std::uint32_t header;
|
||||||
|
header = read_little_endian<std::uint32_t>(stream);
|
||||||
|
if (!stream || header != T::GetHashValue()) return false;
|
||||||
|
return pointer->ReadParameters(stream);
|
||||||
|
}
|
||||||
|
|
||||||
|
} // namespace Detail
|
||||||
|
|
||||||
|
// Initialize the evaluation function parameters
|
||||||
|
void Initialize() {
|
||||||
|
|
||||||
|
Detail::Initialize(feature_transformer);
|
||||||
|
Detail::Initialize(network);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Read network header
|
||||||
|
bool ReadHeader(std::istream& stream, std::uint32_t* hash_value, std::string* architecture)
|
||||||
|
{
|
||||||
|
std::uint32_t version, size;
|
||||||
|
|
||||||
|
version = read_little_endian<std::uint32_t>(stream);
|
||||||
|
*hash_value = read_little_endian<std::uint32_t>(stream);
|
||||||
|
size = read_little_endian<std::uint32_t>(stream);
|
||||||
|
if (!stream || version != kVersion) return false;
|
||||||
|
architecture->resize(size);
|
||||||
|
stream.read(&(*architecture)[0], size);
|
||||||
|
return !stream.fail();
|
||||||
|
}
|
||||||
|
|
||||||
|
// Read network parameters
|
||||||
|
bool ReadParameters(std::istream& stream) {
|
||||||
|
|
||||||
|
std::uint32_t hash_value;
|
||||||
|
std::string architecture;
|
||||||
|
if (!ReadHeader(stream, &hash_value, &architecture)) return false;
|
||||||
|
if (hash_value != kHashValue) return false;
|
||||||
|
if (!Detail::ReadParameters(stream, feature_transformer)) return false;
|
||||||
|
if (!Detail::ReadParameters(stream, network)) return false;
|
||||||
|
return stream && stream.peek() == std::ios::traits_type::eof();
|
||||||
|
}
|
||||||
|
|
||||||
|
// Proceed with the difference calculation if possible
|
||||||
|
static void UpdateAccumulatorIfPossible(const Position& pos) {
|
||||||
|
|
||||||
|
feature_transformer->UpdateAccumulatorIfPossible(pos);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Calculate the evaluation value
|
||||||
|
static Value ComputeScore(const Position& pos, bool refresh) {
|
||||||
|
|
||||||
|
auto& accumulator = pos.state()->accumulator;
|
||||||
|
if (!refresh && accumulator.computed_score) {
|
||||||
|
return accumulator.score;
|
||||||
|
}
|
||||||
|
|
||||||
|
alignas(kCacheLineSize) TransformedFeatureType
|
||||||
|
transformed_features[FeatureTransformer::kBufferSize];
|
||||||
|
feature_transformer->Transform(pos, transformed_features, refresh);
|
||||||
|
alignas(kCacheLineSize) char buffer[Network::kBufferSize];
|
||||||
|
const auto output = network->Propagate(transformed_features, buffer);
|
||||||
|
|
||||||
|
auto score = static_cast<Value>(output[0] / FV_SCALE);
|
||||||
|
|
||||||
|
accumulator.score = score;
|
||||||
|
accumulator.computed_score = true;
|
||||||
|
return accumulator.score;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Load eval, from a file stream or a memory stream
|
||||||
|
bool load_eval(std::string streamName, std::istream& stream) {
|
||||||
|
|
||||||
|
Initialize();
|
||||||
|
fileName = streamName;
|
||||||
|
return ReadParameters(stream);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Evaluation function. Perform differential calculation.
|
||||||
|
Value evaluate(const Position& pos) {
|
||||||
|
return ComputeScore(pos, false);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Evaluation function. Perform full calculation.
|
||||||
|
Value compute_eval(const Position& pos) {
|
||||||
|
return ComputeScore(pos, true);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Proceed with the difference calculation if possible
|
||||||
|
void update_eval(const Position& pos) {
|
||||||
|
UpdateAccumulatorIfPossible(pos);
|
||||||
|
}
|
||||||
|
|
||||||
|
} // namespace Eval::NNUE
|
48
DroidFishApp/src/main/cpp/stockfish/nnue/evaluate_nnue.h
Normal file
48
DroidFishApp/src/main/cpp/stockfish/nnue/evaluate_nnue.h
Normal file
|
@ -0,0 +1,48 @@
|
||||||
|
/*
|
||||||
|
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
||||||
|
Copyright (C) 2004-2020 The Stockfish developers (see AUTHORS file)
|
||||||
|
|
||||||
|
Stockfish is free software: you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
|
||||||
|
Stockfish is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
// header used in NNUE evaluation function
|
||||||
|
|
||||||
|
#ifndef NNUE_EVALUATE_NNUE_H_INCLUDED
|
||||||
|
#define NNUE_EVALUATE_NNUE_H_INCLUDED
|
||||||
|
|
||||||
|
#include "nnue_feature_transformer.h"
|
||||||
|
|
||||||
|
#include <memory>
|
||||||
|
|
||||||
|
namespace Eval::NNUE {
|
||||||
|
|
||||||
|
// Hash value of evaluation function structure
|
||||||
|
constexpr std::uint32_t kHashValue =
|
||||||
|
FeatureTransformer::GetHashValue() ^ Network::GetHashValue();
|
||||||
|
|
||||||
|
// Deleter for automating release of memory area
|
||||||
|
template <typename T>
|
||||||
|
struct AlignedDeleter {
|
||||||
|
void operator()(T* ptr) const {
|
||||||
|
ptr->~T();
|
||||||
|
std_aligned_free(ptr);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
template <typename T>
|
||||||
|
using AlignedPtr = std::unique_ptr<T, AlignedDeleter<T>>;
|
||||||
|
|
||||||
|
} // namespace Eval::NNUE
|
||||||
|
|
||||||
|
#endif // #ifndef NNUE_EVALUATE_NNUE_H_INCLUDED
|
134
DroidFishApp/src/main/cpp/stockfish/nnue/features/feature_set.h
Normal file
134
DroidFishApp/src/main/cpp/stockfish/nnue/features/feature_set.h
Normal file
|
@ -0,0 +1,134 @@
|
||||||
|
/*
|
||||||
|
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
||||||
|
Copyright (C) 2004-2020 The Stockfish developers (see AUTHORS file)
|
||||||
|
|
||||||
|
Stockfish is free software: you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
|
||||||
|
Stockfish is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
// A class template that represents the input feature set of the NNUE evaluation function
|
||||||
|
|
||||||
|
#ifndef NNUE_FEATURE_SET_H_INCLUDED
|
||||||
|
#define NNUE_FEATURE_SET_H_INCLUDED
|
||||||
|
|
||||||
|
#include "features_common.h"
|
||||||
|
#include <array>
|
||||||
|
|
||||||
|
namespace Eval::NNUE::Features {
|
||||||
|
|
||||||
|
// Class template that represents a list of values
|
||||||
|
template <typename T, T... Values>
|
||||||
|
struct CompileTimeList;
|
||||||
|
|
||||||
|
template <typename T, T First, T... Remaining>
|
||||||
|
struct CompileTimeList<T, First, Remaining...> {
|
||||||
|
static constexpr bool Contains(T value) {
|
||||||
|
return value == First || CompileTimeList<T, Remaining...>::Contains(value);
|
||||||
|
}
|
||||||
|
static constexpr std::array<T, sizeof...(Remaining) + 1>
|
||||||
|
kValues = {{First, Remaining...}};
|
||||||
|
};
|
||||||
|
|
||||||
|
// Base class of feature set
|
||||||
|
template <typename Derived>
|
||||||
|
class FeatureSetBase {
|
||||||
|
|
||||||
|
public:
|
||||||
|
// Get a list of indices for active features
|
||||||
|
template <typename IndexListType>
|
||||||
|
static void AppendActiveIndices(
|
||||||
|
const Position& pos, TriggerEvent trigger, IndexListType active[2]) {
|
||||||
|
|
||||||
|
for (Color perspective : { WHITE, BLACK }) {
|
||||||
|
Derived::CollectActiveIndices(
|
||||||
|
pos, trigger, perspective, &active[perspective]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Get a list of indices for recently changed features
|
||||||
|
template <typename PositionType, typename IndexListType>
|
||||||
|
static void AppendChangedIndices(
|
||||||
|
const PositionType& pos, TriggerEvent trigger,
|
||||||
|
IndexListType removed[2], IndexListType added[2], bool reset[2]) {
|
||||||
|
|
||||||
|
const auto& dp = pos.state()->dirtyPiece;
|
||||||
|
if (dp.dirty_num == 0) return;
|
||||||
|
|
||||||
|
for (Color perspective : { WHITE, BLACK }) {
|
||||||
|
reset[perspective] = false;
|
||||||
|
switch (trigger) {
|
||||||
|
case TriggerEvent::kFriendKingMoved:
|
||||||
|
reset[perspective] = dp.piece[0] == make_piece(perspective, KING);
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
assert(false);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
if (reset[perspective]) {
|
||||||
|
Derived::CollectActiveIndices(
|
||||||
|
pos, trigger, perspective, &added[perspective]);
|
||||||
|
} else {
|
||||||
|
Derived::CollectChangedIndices(
|
||||||
|
pos, trigger, perspective,
|
||||||
|
&removed[perspective], &added[perspective]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
// Class template that represents the feature set
|
||||||
|
template <typename FeatureType>
|
||||||
|
class FeatureSet<FeatureType> : public FeatureSetBase<FeatureSet<FeatureType>> {
|
||||||
|
|
||||||
|
public:
|
||||||
|
// Hash value embedded in the evaluation file
|
||||||
|
static constexpr std::uint32_t kHashValue = FeatureType::kHashValue;
|
||||||
|
// Number of feature dimensions
|
||||||
|
static constexpr IndexType kDimensions = FeatureType::kDimensions;
|
||||||
|
// Maximum number of simultaneously active features
|
||||||
|
static constexpr IndexType kMaxActiveDimensions =
|
||||||
|
FeatureType::kMaxActiveDimensions;
|
||||||
|
// Trigger for full calculation instead of difference calculation
|
||||||
|
using SortedTriggerSet =
|
||||||
|
CompileTimeList<TriggerEvent, FeatureType::kRefreshTrigger>;
|
||||||
|
static constexpr auto kRefreshTriggers = SortedTriggerSet::kValues;
|
||||||
|
|
||||||
|
private:
|
||||||
|
// Get a list of indices for active features
|
||||||
|
static void CollectActiveIndices(
|
||||||
|
const Position& pos, const TriggerEvent trigger, const Color perspective,
|
||||||
|
IndexList* const active) {
|
||||||
|
if (FeatureType::kRefreshTrigger == trigger) {
|
||||||
|
FeatureType::AppendActiveIndices(pos, perspective, active);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Get a list of indices for recently changed features
|
||||||
|
static void CollectChangedIndices(
|
||||||
|
const Position& pos, const TriggerEvent trigger, const Color perspective,
|
||||||
|
IndexList* const removed, IndexList* const added) {
|
||||||
|
|
||||||
|
if (FeatureType::kRefreshTrigger == trigger) {
|
||||||
|
FeatureType::AppendChangedIndices(pos, perspective, removed, added);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Make the base class and the class template that recursively uses itself a friend
|
||||||
|
friend class FeatureSetBase<FeatureSet>;
|
||||||
|
template <typename... FeatureTypes>
|
||||||
|
friend class FeatureSet;
|
||||||
|
};
|
||||||
|
|
||||||
|
} // namespace Eval::NNUE::Features
|
||||||
|
|
||||||
|
#endif // #ifndef NNUE_FEATURE_SET_H_INCLUDED
|
|
@ -0,0 +1,45 @@
|
||||||
|
/*
|
||||||
|
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
||||||
|
Copyright (C) 2004-2020 The Stockfish developers (see AUTHORS file)
|
||||||
|
|
||||||
|
Stockfish is free software: you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
|
||||||
|
Stockfish is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
//Common header of input features of NNUE evaluation function
|
||||||
|
|
||||||
|
#ifndef NNUE_FEATURES_COMMON_H_INCLUDED
|
||||||
|
#define NNUE_FEATURES_COMMON_H_INCLUDED
|
||||||
|
|
||||||
|
#include "../../evaluate.h"
|
||||||
|
#include "../nnue_common.h"
|
||||||
|
|
||||||
|
namespace Eval::NNUE::Features {
|
||||||
|
|
||||||
|
class IndexList;
|
||||||
|
|
||||||
|
template <typename... FeatureTypes>
|
||||||
|
class FeatureSet;
|
||||||
|
|
||||||
|
// Trigger to perform full calculations instead of difference only
|
||||||
|
enum class TriggerEvent {
|
||||||
|
kFriendKingMoved // calculate full evaluation when own king moves
|
||||||
|
};
|
||||||
|
|
||||||
|
enum class Side {
|
||||||
|
kFriend // side to move
|
||||||
|
};
|
||||||
|
|
||||||
|
} // namespace Eval::NNUE::Features
|
||||||
|
|
||||||
|
#endif // #ifndef NNUE_FEATURES_COMMON_H_INCLUDED
|
|
@ -0,0 +1,72 @@
|
||||||
|
/*
|
||||||
|
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
||||||
|
Copyright (C) 2004-2020 The Stockfish developers (see AUTHORS file)
|
||||||
|
|
||||||
|
Stockfish is free software: you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
|
||||||
|
Stockfish is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
//Definition of input features HalfKP of NNUE evaluation function
|
||||||
|
|
||||||
|
#include "half_kp.h"
|
||||||
|
#include "index_list.h"
|
||||||
|
|
||||||
|
namespace Eval::NNUE::Features {
|
||||||
|
|
||||||
|
// Orient a square according to perspective (rotates by 180 for black)
|
||||||
|
inline Square orient(Color perspective, Square s) {
|
||||||
|
return Square(int(s) ^ (bool(perspective) * 63));
|
||||||
|
}
|
||||||
|
|
||||||
|
// Find the index of the feature quantity from the king position and PieceSquare
|
||||||
|
template <Side AssociatedKing>
|
||||||
|
inline IndexType HalfKP<AssociatedKing>::MakeIndex(
|
||||||
|
Color perspective, Square s, Piece pc, Square ksq) {
|
||||||
|
|
||||||
|
return IndexType(orient(perspective, s) + kpp_board_index[pc][perspective] + PS_END * ksq);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Get a list of indices for active features
|
||||||
|
template <Side AssociatedKing>
|
||||||
|
void HalfKP<AssociatedKing>::AppendActiveIndices(
|
||||||
|
const Position& pos, Color perspective, IndexList* active) {
|
||||||
|
|
||||||
|
Square ksq = orient(perspective, pos.square<KING>(perspective));
|
||||||
|
Bitboard bb = pos.pieces() & ~pos.pieces(KING);
|
||||||
|
while (bb) {
|
||||||
|
Square s = pop_lsb(&bb);
|
||||||
|
active->push_back(MakeIndex(perspective, s, pos.piece_on(s), ksq));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Get a list of indices for recently changed features
|
||||||
|
template <Side AssociatedKing>
|
||||||
|
void HalfKP<AssociatedKing>::AppendChangedIndices(
|
||||||
|
const Position& pos, Color perspective,
|
||||||
|
IndexList* removed, IndexList* added) {
|
||||||
|
|
||||||
|
Square ksq = orient(perspective, pos.square<KING>(perspective));
|
||||||
|
const auto& dp = pos.state()->dirtyPiece;
|
||||||
|
for (int i = 0; i < dp.dirty_num; ++i) {
|
||||||
|
Piece pc = dp.piece[i];
|
||||||
|
if (type_of(pc) == KING) continue;
|
||||||
|
if (dp.from[i] != SQ_NONE)
|
||||||
|
removed->push_back(MakeIndex(perspective, dp.from[i], pc, ksq));
|
||||||
|
if (dp.to[i] != SQ_NONE)
|
||||||
|
added->push_back(MakeIndex(perspective, dp.to[i], pc, ksq));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
template class HalfKP<Side::kFriend>;
|
||||||
|
|
||||||
|
} // namespace Eval::NNUE::Features
|
63
DroidFishApp/src/main/cpp/stockfish/nnue/features/half_kp.h
Normal file
63
DroidFishApp/src/main/cpp/stockfish/nnue/features/half_kp.h
Normal file
|
@ -0,0 +1,63 @@
|
||||||
|
/*
|
||||||
|
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
||||||
|
Copyright (C) 2004-2020 The Stockfish developers (see AUTHORS file)
|
||||||
|
|
||||||
|
Stockfish is free software: you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
|
||||||
|
Stockfish is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
//Definition of input features HalfKP of NNUE evaluation function
|
||||||
|
|
||||||
|
#ifndef NNUE_FEATURES_HALF_KP_H_INCLUDED
|
||||||
|
#define NNUE_FEATURES_HALF_KP_H_INCLUDED
|
||||||
|
|
||||||
|
#include "../../evaluate.h"
|
||||||
|
#include "features_common.h"
|
||||||
|
|
||||||
|
namespace Eval::NNUE::Features {
|
||||||
|
|
||||||
|
// Feature HalfKP: Combination of the position of own king
|
||||||
|
// and the position of pieces other than kings
|
||||||
|
template <Side AssociatedKing>
|
||||||
|
class HalfKP {
|
||||||
|
|
||||||
|
public:
|
||||||
|
// Feature name
|
||||||
|
static constexpr const char* kName = "HalfKP(Friend)";
|
||||||
|
// Hash value embedded in the evaluation file
|
||||||
|
static constexpr std::uint32_t kHashValue =
|
||||||
|
0x5D69D5B9u ^ (AssociatedKing == Side::kFriend);
|
||||||
|
// Number of feature dimensions
|
||||||
|
static constexpr IndexType kDimensions =
|
||||||
|
static_cast<IndexType>(SQUARE_NB) * static_cast<IndexType>(PS_END);
|
||||||
|
// Maximum number of simultaneously active features
|
||||||
|
static constexpr IndexType kMaxActiveDimensions = 30; // Kings don't count
|
||||||
|
// Trigger for full calculation instead of difference calculation
|
||||||
|
static constexpr TriggerEvent kRefreshTrigger = TriggerEvent::kFriendKingMoved;
|
||||||
|
|
||||||
|
// Get a list of indices for active features
|
||||||
|
static void AppendActiveIndices(const Position& pos, Color perspective,
|
||||||
|
IndexList* active);
|
||||||
|
|
||||||
|
// Get a list of indices for recently changed features
|
||||||
|
static void AppendChangedIndices(const Position& pos, Color perspective,
|
||||||
|
IndexList* removed, IndexList* added);
|
||||||
|
|
||||||
|
private:
|
||||||
|
// Index of a feature for a given king position and another piece on some square
|
||||||
|
static IndexType MakeIndex(Color perspective, Square s, Piece pc, Square sq_k);
|
||||||
|
};
|
||||||
|
|
||||||
|
} // namespace Eval::NNUE::Features
|
||||||
|
|
||||||
|
#endif // #ifndef NNUE_FEATURES_HALF_KP_H_INCLUDED
|
|
@ -0,0 +1,64 @@
|
||||||
|
/*
|
||||||
|
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
||||||
|
Copyright (C) 2004-2020 The Stockfish developers (see AUTHORS file)
|
||||||
|
|
||||||
|
Stockfish is free software: you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
|
||||||
|
Stockfish is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
// Definition of index list of input features
|
||||||
|
|
||||||
|
#ifndef NNUE_FEATURES_INDEX_LIST_H_INCLUDED
|
||||||
|
#define NNUE_FEATURES_INDEX_LIST_H_INCLUDED
|
||||||
|
|
||||||
|
#include "../../position.h"
|
||||||
|
#include "../nnue_architecture.h"
|
||||||
|
|
||||||
|
namespace Eval::NNUE::Features {
|
||||||
|
|
||||||
|
// Class template used for feature index list
|
||||||
|
template <typename T, std::size_t MaxSize>
|
||||||
|
class ValueList {
|
||||||
|
|
||||||
|
public:
|
||||||
|
std::size_t size() const { return size_; }
|
||||||
|
void resize(std::size_t size) { size_ = size; }
|
||||||
|
void push_back(const T& value) { values_[size_++] = value; }
|
||||||
|
T& operator[](std::size_t index) { return values_[index]; }
|
||||||
|
T* begin() { return values_; }
|
||||||
|
T* end() { return values_ + size_; }
|
||||||
|
const T& operator[](std::size_t index) const { return values_[index]; }
|
||||||
|
const T* begin() const { return values_; }
|
||||||
|
const T* end() const { return values_ + size_; }
|
||||||
|
|
||||||
|
void swap(ValueList& other) {
|
||||||
|
const std::size_t max_size = std::max(size_, other.size_);
|
||||||
|
for (std::size_t i = 0; i < max_size; ++i) {
|
||||||
|
std::swap(values_[i], other.values_[i]);
|
||||||
|
}
|
||||||
|
std::swap(size_, other.size_);
|
||||||
|
}
|
||||||
|
|
||||||
|
private:
|
||||||
|
T values_[MaxSize];
|
||||||
|
std::size_t size_ = 0;
|
||||||
|
};
|
||||||
|
|
||||||
|
//Type of feature index list
|
||||||
|
class IndexList
|
||||||
|
: public ValueList<IndexType, RawFeatures::kMaxActiveDimensions> {
|
||||||
|
};
|
||||||
|
|
||||||
|
} // namespace Eval::NNUE::Features
|
||||||
|
|
||||||
|
#endif // NNUE_FEATURES_INDEX_LIST_H_INCLUDED
|
|
@ -0,0 +1,266 @@
|
||||||
|
/*
|
||||||
|
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
||||||
|
Copyright (C) 2004-2020 The Stockfish developers (see AUTHORS file)
|
||||||
|
|
||||||
|
Stockfish is free software: you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
|
||||||
|
Stockfish is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
// Definition of layer AffineTransform of NNUE evaluation function
|
||||||
|
|
||||||
|
#ifndef NNUE_LAYERS_AFFINE_TRANSFORM_H_INCLUDED
|
||||||
|
#define NNUE_LAYERS_AFFINE_TRANSFORM_H_INCLUDED
|
||||||
|
|
||||||
|
#include <iostream>
|
||||||
|
#include "../nnue_common.h"
|
||||||
|
|
||||||
|
namespace Eval::NNUE::Layers {
|
||||||
|
|
||||||
|
// Affine transformation layer
|
||||||
|
template <typename PreviousLayer, IndexType OutputDimensions>
|
||||||
|
class AffineTransform {
|
||||||
|
public:
|
||||||
|
// Input/output type
|
||||||
|
using InputType = typename PreviousLayer::OutputType;
|
||||||
|
using OutputType = std::int32_t;
|
||||||
|
static_assert(std::is_same<InputType, std::uint8_t>::value, "");
|
||||||
|
|
||||||
|
// Number of input/output dimensions
|
||||||
|
static constexpr IndexType kInputDimensions =
|
||||||
|
PreviousLayer::kOutputDimensions;
|
||||||
|
static constexpr IndexType kOutputDimensions = OutputDimensions;
|
||||||
|
static constexpr IndexType kPaddedInputDimensions =
|
||||||
|
CeilToMultiple<IndexType>(kInputDimensions, kMaxSimdWidth);
|
||||||
|
|
||||||
|
// Size of forward propagation buffer used in this layer
|
||||||
|
static constexpr std::size_t kSelfBufferSize =
|
||||||
|
CeilToMultiple(kOutputDimensions * sizeof(OutputType), kCacheLineSize);
|
||||||
|
|
||||||
|
// Size of the forward propagation buffer used from the input layer to this layer
|
||||||
|
static constexpr std::size_t kBufferSize =
|
||||||
|
PreviousLayer::kBufferSize + kSelfBufferSize;
|
||||||
|
|
||||||
|
// Hash value embedded in the evaluation file
|
||||||
|
static constexpr std::uint32_t GetHashValue() {
|
||||||
|
std::uint32_t hash_value = 0xCC03DAE4u;
|
||||||
|
hash_value += kOutputDimensions;
|
||||||
|
hash_value ^= PreviousLayer::GetHashValue() >> 1;
|
||||||
|
hash_value ^= PreviousLayer::GetHashValue() << 31;
|
||||||
|
return hash_value;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Read network parameters
|
||||||
|
bool ReadParameters(std::istream& stream) {
|
||||||
|
if (!previous_layer_.ReadParameters(stream)) return false;
|
||||||
|
for (std::size_t i = 0; i < kOutputDimensions; ++i)
|
||||||
|
biases_[i] = read_little_endian<BiasType>(stream);
|
||||||
|
for (std::size_t i = 0; i < kOutputDimensions * kPaddedInputDimensions; ++i)
|
||||||
|
weights_[i] = read_little_endian<WeightType>(stream);
|
||||||
|
return !stream.fail();
|
||||||
|
}
|
||||||
|
|
||||||
|
// Forward propagation
|
||||||
|
const OutputType* Propagate(
|
||||||
|
const TransformedFeatureType* transformed_features, char* buffer) const {
|
||||||
|
const auto input = previous_layer_.Propagate(
|
||||||
|
transformed_features, buffer + kSelfBufferSize);
|
||||||
|
const auto output = reinterpret_cast<OutputType*>(buffer);
|
||||||
|
|
||||||
|
#if defined(USE_AVX512)
|
||||||
|
constexpr IndexType kNumChunks = kPaddedInputDimensions / (kSimdWidth * 2);
|
||||||
|
const auto input_vector = reinterpret_cast<const __m512i*>(input);
|
||||||
|
#if !defined(USE_VNNI)
|
||||||
|
const __m512i kOnes = _mm512_set1_epi16(1);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#elif defined(USE_AVX2)
|
||||||
|
constexpr IndexType kNumChunks = kPaddedInputDimensions / kSimdWidth;
|
||||||
|
const auto input_vector = reinterpret_cast<const __m256i*>(input);
|
||||||
|
#if !defined(USE_VNNI)
|
||||||
|
const __m256i kOnes = _mm256_set1_epi16(1);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#elif defined(USE_SSE2)
|
||||||
|
constexpr IndexType kNumChunks = kPaddedInputDimensions / kSimdWidth;
|
||||||
|
#ifndef USE_SSSE3
|
||||||
|
const __m128i kZeros = _mm_setzero_si128();
|
||||||
|
#else
|
||||||
|
const __m128i kOnes = _mm_set1_epi16(1);
|
||||||
|
#endif
|
||||||
|
const auto input_vector = reinterpret_cast<const __m128i*>(input);
|
||||||
|
|
||||||
|
#elif defined(USE_MMX)
|
||||||
|
constexpr IndexType kNumChunks = kPaddedInputDimensions / kSimdWidth;
|
||||||
|
const __m64 kZeros = _mm_setzero_si64();
|
||||||
|
const auto input_vector = reinterpret_cast<const __m64*>(input);
|
||||||
|
|
||||||
|
#elif defined(USE_NEON)
|
||||||
|
constexpr IndexType kNumChunks = kPaddedInputDimensions / kSimdWidth;
|
||||||
|
const auto input_vector = reinterpret_cast<const int8x8_t*>(input);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
for (IndexType i = 0; i < kOutputDimensions; ++i) {
|
||||||
|
const IndexType offset = i * kPaddedInputDimensions;
|
||||||
|
|
||||||
|
#if defined(USE_AVX512)
|
||||||
|
__m512i sum = _mm512_setzero_si512();
|
||||||
|
const auto row = reinterpret_cast<const __m512i*>(&weights_[offset]);
|
||||||
|
for (IndexType j = 0; j < kNumChunks; ++j) {
|
||||||
|
#if defined(USE_VNNI)
|
||||||
|
sum = _mm512_dpbusd_epi32(sum, _mm512_loadA_si512(&input_vector[j]), _mm512_load_si512(&row[j]));
|
||||||
|
#else
|
||||||
|
__m512i product = _mm512_maddubs_epi16(_mm512_loadA_si512(&input_vector[j]), _mm512_load_si512(&row[j]));
|
||||||
|
product = _mm512_madd_epi16(product, kOnes);
|
||||||
|
sum = _mm512_add_epi32(sum, product);
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
// Note: Changing kMaxSimdWidth from 32 to 64 breaks loading existing networks.
|
||||||
|
// As a result kPaddedInputDimensions may not be an even multiple of 64(512bit)
|
||||||
|
// and we have to do one more 256bit chunk.
|
||||||
|
if (kPaddedInputDimensions != kNumChunks * kSimdWidth * 2)
|
||||||
|
{
|
||||||
|
const auto iv256 = reinterpret_cast<const __m256i*>(&input_vector[kNumChunks]);
|
||||||
|
const auto row256 = reinterpret_cast<const __m256i*>(&row[kNumChunks]);
|
||||||
|
#if defined(USE_VNNI)
|
||||||
|
__m256i product256 = _mm256_dpbusd_epi32(
|
||||||
|
_mm512_castsi512_si256(sum), _mm256_loadA_si256(&iv256[0]), _mm256_load_si256(&row256[0]));
|
||||||
|
sum = _mm512_inserti32x8(sum, product256, 0);
|
||||||
|
#else
|
||||||
|
__m256i product256 = _mm256_maddubs_epi16(_mm256_loadA_si256(&iv256[0]), _mm256_load_si256(&row256[0]));
|
||||||
|
sum = _mm512_add_epi32(sum, _mm512_cvtepi16_epi32(product256));
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
output[i] = _mm512_reduce_add_epi32(sum) + biases_[i];
|
||||||
|
|
||||||
|
#elif defined(USE_AVX2)
|
||||||
|
__m256i sum = _mm256_setzero_si256();
|
||||||
|
const auto row = reinterpret_cast<const __m256i*>(&weights_[offset]);
|
||||||
|
for (IndexType j = 0; j < kNumChunks; ++j) {
|
||||||
|
#if defined(USE_VNNI)
|
||||||
|
sum = _mm256_dpbusd_epi32(sum, _mm256_loadA_si256(&input_vector[j]), _mm256_load_si256(&row[j]));
|
||||||
|
#else
|
||||||
|
__m256i product = _mm256_maddubs_epi16(_mm256_loadA_si256(&input_vector[j]), _mm256_load_si256(&row[j]));
|
||||||
|
product = _mm256_madd_epi16(product, kOnes);
|
||||||
|
sum = _mm256_add_epi32(sum, product);
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
__m128i sum128 = _mm_add_epi32(_mm256_castsi256_si128(sum), _mm256_extracti128_si256(sum, 1));
|
||||||
|
sum128 = _mm_add_epi32(sum128, _mm_shuffle_epi32(sum128, _MM_PERM_BADC));
|
||||||
|
sum128 = _mm_add_epi32(sum128, _mm_shuffle_epi32(sum128, _MM_PERM_CDAB));
|
||||||
|
output[i] = _mm_cvtsi128_si32(sum128) + biases_[i];
|
||||||
|
|
||||||
|
#elif defined(USE_SSSE3)
|
||||||
|
__m128i sum = _mm_setzero_si128();
|
||||||
|
const auto row = reinterpret_cast<const __m128i*>(&weights_[offset]);
|
||||||
|
for (int j = 0; j < (int)kNumChunks - 1; j += 2) {
|
||||||
|
__m128i product0 = _mm_maddubs_epi16(_mm_load_si128(&input_vector[j]), _mm_load_si128(&row[j]));
|
||||||
|
product0 = _mm_madd_epi16(product0, kOnes);
|
||||||
|
sum = _mm_add_epi32(sum, product0);
|
||||||
|
__m128i product1 = _mm_maddubs_epi16(_mm_load_si128(&input_vector[j+1]), _mm_load_si128(&row[j+1]));
|
||||||
|
product1 = _mm_madd_epi16(product1, kOnes);
|
||||||
|
sum = _mm_add_epi32(sum, product1);
|
||||||
|
}
|
||||||
|
if (kNumChunks & 0x1) {
|
||||||
|
__m128i product = _mm_maddubs_epi16(_mm_load_si128(&input_vector[kNumChunks-1]), _mm_load_si128(&row[kNumChunks-1]));
|
||||||
|
product = _mm_madd_epi16(product, kOnes);
|
||||||
|
sum = _mm_add_epi32(sum, product);
|
||||||
|
}
|
||||||
|
sum = _mm_add_epi32(sum, _mm_shuffle_epi32(sum, 0x4E)); //_MM_PERM_BADC
|
||||||
|
sum = _mm_add_epi32(sum, _mm_shuffle_epi32(sum, 0xB1)); //_MM_PERM_CDAB
|
||||||
|
output[i] = _mm_cvtsi128_si32(sum) + biases_[i];
|
||||||
|
|
||||||
|
#elif defined(USE_SSE2)
|
||||||
|
__m128i sum_lo = _mm_cvtsi32_si128(biases_[i]);
|
||||||
|
__m128i sum_hi = kZeros;
|
||||||
|
const auto row = reinterpret_cast<const __m128i*>(&weights_[offset]);
|
||||||
|
for (IndexType j = 0; j < kNumChunks; ++j) {
|
||||||
|
__m128i row_j = _mm_load_si128(&row[j]);
|
||||||
|
__m128i input_j = _mm_load_si128(&input_vector[j]);
|
||||||
|
__m128i row_signs = _mm_cmpgt_epi8(kZeros, row_j);
|
||||||
|
__m128i extended_row_lo = _mm_unpacklo_epi8(row_j, row_signs);
|
||||||
|
__m128i extended_row_hi = _mm_unpackhi_epi8(row_j, row_signs);
|
||||||
|
__m128i extended_input_lo = _mm_unpacklo_epi8(input_j, kZeros);
|
||||||
|
__m128i extended_input_hi = _mm_unpackhi_epi8(input_j, kZeros);
|
||||||
|
__m128i product_lo = _mm_madd_epi16(extended_row_lo, extended_input_lo);
|
||||||
|
__m128i product_hi = _mm_madd_epi16(extended_row_hi, extended_input_hi);
|
||||||
|
sum_lo = _mm_add_epi32(sum_lo, product_lo);
|
||||||
|
sum_hi = _mm_add_epi32(sum_hi, product_hi);
|
||||||
|
}
|
||||||
|
__m128i sum = _mm_add_epi32(sum_lo, sum_hi);
|
||||||
|
__m128i sum_high_64 = _mm_shuffle_epi32(sum, _MM_SHUFFLE(1, 0, 3, 2));
|
||||||
|
sum = _mm_add_epi32(sum, sum_high_64);
|
||||||
|
__m128i sum_second_32 = _mm_shufflelo_epi16(sum, _MM_SHUFFLE(1, 0, 3, 2));
|
||||||
|
sum = _mm_add_epi32(sum, sum_second_32);
|
||||||
|
output[i] = _mm_cvtsi128_si32(sum);
|
||||||
|
|
||||||
|
#elif defined(USE_MMX)
|
||||||
|
__m64 sum_lo = _mm_cvtsi32_si64(biases_[i]);
|
||||||
|
__m64 sum_hi = kZeros;
|
||||||
|
const auto row = reinterpret_cast<const __m64*>(&weights_[offset]);
|
||||||
|
for (IndexType j = 0; j < kNumChunks; ++j) {
|
||||||
|
__m64 row_j = row[j];
|
||||||
|
__m64 input_j = input_vector[j];
|
||||||
|
__m64 row_signs = _mm_cmpgt_pi8(kZeros, row_j);
|
||||||
|
__m64 extended_row_lo = _mm_unpacklo_pi8(row_j, row_signs);
|
||||||
|
__m64 extended_row_hi = _mm_unpackhi_pi8(row_j, row_signs);
|
||||||
|
__m64 extended_input_lo = _mm_unpacklo_pi8(input_j, kZeros);
|
||||||
|
__m64 extended_input_hi = _mm_unpackhi_pi8(input_j, kZeros);
|
||||||
|
__m64 product_lo = _mm_madd_pi16(extended_row_lo, extended_input_lo);
|
||||||
|
__m64 product_hi = _mm_madd_pi16(extended_row_hi, extended_input_hi);
|
||||||
|
sum_lo = _mm_add_pi32(sum_lo, product_lo);
|
||||||
|
sum_hi = _mm_add_pi32(sum_hi, product_hi);
|
||||||
|
}
|
||||||
|
__m64 sum = _mm_add_pi32(sum_lo, sum_hi);
|
||||||
|
sum = _mm_add_pi32(sum, _mm_unpackhi_pi32(sum, sum));
|
||||||
|
output[i] = _mm_cvtsi64_si32(sum);
|
||||||
|
|
||||||
|
#elif defined(USE_NEON)
|
||||||
|
int32x4_t sum = {biases_[i]};
|
||||||
|
const auto row = reinterpret_cast<const int8x8_t*>(&weights_[offset]);
|
||||||
|
for (IndexType j = 0; j < kNumChunks; ++j) {
|
||||||
|
int16x8_t product = vmull_s8(input_vector[j * 2], row[j * 2]);
|
||||||
|
product = vmlal_s8(product, input_vector[j * 2 + 1], row[j * 2 + 1]);
|
||||||
|
sum = vpadalq_s16(sum, product);
|
||||||
|
}
|
||||||
|
output[i] = sum[0] + sum[1] + sum[2] + sum[3];
|
||||||
|
|
||||||
|
#else
|
||||||
|
OutputType sum = biases_[i];
|
||||||
|
for (IndexType j = 0; j < kInputDimensions; ++j) {
|
||||||
|
sum += weights_[offset + j] * input[j];
|
||||||
|
}
|
||||||
|
output[i] = sum;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
}
|
||||||
|
#if defined(USE_MMX)
|
||||||
|
_mm_empty();
|
||||||
|
#endif
|
||||||
|
return output;
|
||||||
|
}
|
||||||
|
|
||||||
|
private:
|
||||||
|
using BiasType = OutputType;
|
||||||
|
using WeightType = std::int8_t;
|
||||||
|
|
||||||
|
PreviousLayer previous_layer_;
|
||||||
|
|
||||||
|
alignas(kCacheLineSize) BiasType biases_[kOutputDimensions];
|
||||||
|
alignas(kCacheLineSize)
|
||||||
|
WeightType weights_[kOutputDimensions * kPaddedInputDimensions];
|
||||||
|
};
|
||||||
|
|
||||||
|
} // namespace Eval::NNUE::Layers
|
||||||
|
|
||||||
|
#endif // #ifndef NNUE_LAYERS_AFFINE_TRANSFORM_H_INCLUDED
|
166
DroidFishApp/src/main/cpp/stockfish/nnue/layers/clipped_relu.h
Normal file
166
DroidFishApp/src/main/cpp/stockfish/nnue/layers/clipped_relu.h
Normal file
|
@ -0,0 +1,166 @@
|
||||||
|
/*
|
||||||
|
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
||||||
|
Copyright (C) 2004-2020 The Stockfish developers (see AUTHORS file)
|
||||||
|
|
||||||
|
Stockfish is free software: you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
|
||||||
|
Stockfish is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
// Definition of layer ClippedReLU of NNUE evaluation function
|
||||||
|
|
||||||
|
#ifndef NNUE_LAYERS_CLIPPED_RELU_H_INCLUDED
|
||||||
|
#define NNUE_LAYERS_CLIPPED_RELU_H_INCLUDED
|
||||||
|
|
||||||
|
#include "../nnue_common.h"
|
||||||
|
|
||||||
|
namespace Eval::NNUE::Layers {
|
||||||
|
|
||||||
|
// Clipped ReLU
|
||||||
|
template <typename PreviousLayer>
|
||||||
|
class ClippedReLU {
|
||||||
|
public:
|
||||||
|
// Input/output type
|
||||||
|
using InputType = typename PreviousLayer::OutputType;
|
||||||
|
using OutputType = std::uint8_t;
|
||||||
|
static_assert(std::is_same<InputType, std::int32_t>::value, "");
|
||||||
|
|
||||||
|
// Number of input/output dimensions
|
||||||
|
static constexpr IndexType kInputDimensions =
|
||||||
|
PreviousLayer::kOutputDimensions;
|
||||||
|
static constexpr IndexType kOutputDimensions = kInputDimensions;
|
||||||
|
|
||||||
|
// Size of forward propagation buffer used in this layer
|
||||||
|
static constexpr std::size_t kSelfBufferSize =
|
||||||
|
CeilToMultiple(kOutputDimensions * sizeof(OutputType), kCacheLineSize);
|
||||||
|
|
||||||
|
// Size of the forward propagation buffer used from the input layer to this layer
|
||||||
|
static constexpr std::size_t kBufferSize =
|
||||||
|
PreviousLayer::kBufferSize + kSelfBufferSize;
|
||||||
|
|
||||||
|
// Hash value embedded in the evaluation file
|
||||||
|
static constexpr std::uint32_t GetHashValue() {
|
||||||
|
std::uint32_t hash_value = 0x538D24C7u;
|
||||||
|
hash_value += PreviousLayer::GetHashValue();
|
||||||
|
return hash_value;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Read network parameters
|
||||||
|
bool ReadParameters(std::istream& stream) {
|
||||||
|
return previous_layer_.ReadParameters(stream);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Forward propagation
|
||||||
|
const OutputType* Propagate(
|
||||||
|
const TransformedFeatureType* transformed_features, char* buffer) const {
|
||||||
|
const auto input = previous_layer_.Propagate(
|
||||||
|
transformed_features, buffer + kSelfBufferSize);
|
||||||
|
const auto output = reinterpret_cast<OutputType*>(buffer);
|
||||||
|
|
||||||
|
#if defined(USE_AVX2)
|
||||||
|
constexpr IndexType kNumChunks = kInputDimensions / kSimdWidth;
|
||||||
|
const __m256i kZero = _mm256_setzero_si256();
|
||||||
|
const __m256i kOffsets = _mm256_set_epi32(7, 3, 6, 2, 5, 1, 4, 0);
|
||||||
|
const auto in = reinterpret_cast<const __m256i*>(input);
|
||||||
|
const auto out = reinterpret_cast<__m256i*>(output);
|
||||||
|
for (IndexType i = 0; i < kNumChunks; ++i) {
|
||||||
|
const __m256i words0 = _mm256_srai_epi16(_mm256_packs_epi32(
|
||||||
|
_mm256_loadA_si256(&in[i * 4 + 0]),
|
||||||
|
_mm256_loadA_si256(&in[i * 4 + 1])), kWeightScaleBits);
|
||||||
|
const __m256i words1 = _mm256_srai_epi16(_mm256_packs_epi32(
|
||||||
|
_mm256_loadA_si256(&in[i * 4 + 2]),
|
||||||
|
_mm256_loadA_si256(&in[i * 4 + 3])), kWeightScaleBits);
|
||||||
|
_mm256_storeA_si256(&out[i], _mm256_permutevar8x32_epi32(_mm256_max_epi8(
|
||||||
|
_mm256_packs_epi16(words0, words1), kZero), kOffsets));
|
||||||
|
}
|
||||||
|
constexpr IndexType kStart = kNumChunks * kSimdWidth;
|
||||||
|
|
||||||
|
#elif defined(USE_SSE2)
|
||||||
|
constexpr IndexType kNumChunks = kInputDimensions / kSimdWidth;
|
||||||
|
|
||||||
|
#ifdef USE_SSE41
|
||||||
|
const __m128i kZero = _mm_setzero_si128();
|
||||||
|
#else
|
||||||
|
const __m128i k0x80s = _mm_set1_epi8(-128);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
const auto in = reinterpret_cast<const __m128i*>(input);
|
||||||
|
const auto out = reinterpret_cast<__m128i*>(output);
|
||||||
|
for (IndexType i = 0; i < kNumChunks; ++i) {
|
||||||
|
const __m128i words0 = _mm_srai_epi16(_mm_packs_epi32(
|
||||||
|
_mm_load_si128(&in[i * 4 + 0]),
|
||||||
|
_mm_load_si128(&in[i * 4 + 1])), kWeightScaleBits);
|
||||||
|
const __m128i words1 = _mm_srai_epi16(_mm_packs_epi32(
|
||||||
|
_mm_load_si128(&in[i * 4 + 2]),
|
||||||
|
_mm_load_si128(&in[i * 4 + 3])), kWeightScaleBits);
|
||||||
|
const __m128i packedbytes = _mm_packs_epi16(words0, words1);
|
||||||
|
_mm_store_si128(&out[i],
|
||||||
|
|
||||||
|
#ifdef USE_SSE41
|
||||||
|
_mm_max_epi8(packedbytes, kZero)
|
||||||
|
#else
|
||||||
|
_mm_subs_epi8(_mm_adds_epi8(packedbytes, k0x80s), k0x80s)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
);
|
||||||
|
}
|
||||||
|
constexpr IndexType kStart = kNumChunks * kSimdWidth;
|
||||||
|
|
||||||
|
#elif defined(USE_MMX)
|
||||||
|
constexpr IndexType kNumChunks = kInputDimensions / kSimdWidth;
|
||||||
|
const __m64 k0x80s = _mm_set1_pi8(-128);
|
||||||
|
const auto in = reinterpret_cast<const __m64*>(input);
|
||||||
|
const auto out = reinterpret_cast<__m64*>(output);
|
||||||
|
for (IndexType i = 0; i < kNumChunks; ++i) {
|
||||||
|
const __m64 words0 = _mm_srai_pi16(
|
||||||
|
_mm_packs_pi32(in[i * 4 + 0], in[i * 4 + 1]),
|
||||||
|
kWeightScaleBits);
|
||||||
|
const __m64 words1 = _mm_srai_pi16(
|
||||||
|
_mm_packs_pi32(in[i * 4 + 2], in[i * 4 + 3]),
|
||||||
|
kWeightScaleBits);
|
||||||
|
const __m64 packedbytes = _mm_packs_pi16(words0, words1);
|
||||||
|
out[i] = _mm_subs_pi8(_mm_adds_pi8(packedbytes, k0x80s), k0x80s);
|
||||||
|
}
|
||||||
|
_mm_empty();
|
||||||
|
constexpr IndexType kStart = kNumChunks * kSimdWidth;
|
||||||
|
|
||||||
|
#elif defined(USE_NEON)
|
||||||
|
constexpr IndexType kNumChunks = kInputDimensions / (kSimdWidth / 2);
|
||||||
|
const int8x8_t kZero = {0};
|
||||||
|
const auto in = reinterpret_cast<const int32x4_t*>(input);
|
||||||
|
const auto out = reinterpret_cast<int8x8_t*>(output);
|
||||||
|
for (IndexType i = 0; i < kNumChunks; ++i) {
|
||||||
|
int16x8_t shifted;
|
||||||
|
const auto pack = reinterpret_cast<int16x4_t*>(&shifted);
|
||||||
|
pack[0] = vqshrn_n_s32(in[i * 2 + 0], kWeightScaleBits);
|
||||||
|
pack[1] = vqshrn_n_s32(in[i * 2 + 1], kWeightScaleBits);
|
||||||
|
out[i] = vmax_s8(vqmovn_s16(shifted), kZero);
|
||||||
|
}
|
||||||
|
constexpr IndexType kStart = kNumChunks * (kSimdWidth / 2);
|
||||||
|
#else
|
||||||
|
constexpr IndexType kStart = 0;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
for (IndexType i = kStart; i < kInputDimensions; ++i) {
|
||||||
|
output[i] = static_cast<OutputType>(
|
||||||
|
std::max(0, std::min(127, input[i] >> kWeightScaleBits)));
|
||||||
|
}
|
||||||
|
return output;
|
||||||
|
}
|
||||||
|
|
||||||
|
private:
|
||||||
|
PreviousLayer previous_layer_;
|
||||||
|
};
|
||||||
|
|
||||||
|
} // namespace Eval::NNUE::Layers
|
||||||
|
|
||||||
|
#endif // NNUE_LAYERS_CLIPPED_RELU_H_INCLUDED
|
|
@ -0,0 +1,68 @@
|
||||||
|
/*
|
||||||
|
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
||||||
|
Copyright (C) 2004-2020 The Stockfish developers (see AUTHORS file)
|
||||||
|
|
||||||
|
Stockfish is free software: you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
|
||||||
|
Stockfish is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
// NNUE evaluation function layer InputSlice definition
|
||||||
|
|
||||||
|
#ifndef NNUE_LAYERS_INPUT_SLICE_H_INCLUDED
|
||||||
|
#define NNUE_LAYERS_INPUT_SLICE_H_INCLUDED
|
||||||
|
|
||||||
|
#include "../nnue_common.h"
|
||||||
|
|
||||||
|
namespace Eval::NNUE::Layers {
|
||||||
|
|
||||||
|
// Input layer
|
||||||
|
template <IndexType OutputDimensions, IndexType Offset = 0>
|
||||||
|
class InputSlice {
|
||||||
|
public:
|
||||||
|
// Need to maintain alignment
|
||||||
|
static_assert(Offset % kMaxSimdWidth == 0, "");
|
||||||
|
|
||||||
|
// Output type
|
||||||
|
using OutputType = TransformedFeatureType;
|
||||||
|
|
||||||
|
// Output dimensionality
|
||||||
|
static constexpr IndexType kOutputDimensions = OutputDimensions;
|
||||||
|
|
||||||
|
// Size of forward propagation buffer used from the input layer to this layer
|
||||||
|
static constexpr std::size_t kBufferSize = 0;
|
||||||
|
|
||||||
|
// Hash value embedded in the evaluation file
|
||||||
|
static constexpr std::uint32_t GetHashValue() {
|
||||||
|
std::uint32_t hash_value = 0xEC42E90Du;
|
||||||
|
hash_value ^= kOutputDimensions ^ (Offset << 10);
|
||||||
|
return hash_value;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Read network parameters
|
||||||
|
bool ReadParameters(std::istream& /*stream*/) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Forward propagation
|
||||||
|
const OutputType* Propagate(
|
||||||
|
const TransformedFeatureType* transformed_features,
|
||||||
|
char* /*buffer*/) const {
|
||||||
|
return transformed_features + Offset;
|
||||||
|
}
|
||||||
|
|
||||||
|
private:
|
||||||
|
};
|
||||||
|
|
||||||
|
} // namespace Layers
|
||||||
|
|
||||||
|
#endif // #ifndef NNUE_LAYERS_INPUT_SLICE_H_INCLUDED
|
39
DroidFishApp/src/main/cpp/stockfish/nnue/nnue_accumulator.h
Normal file
39
DroidFishApp/src/main/cpp/stockfish/nnue/nnue_accumulator.h
Normal file
|
@ -0,0 +1,39 @@
|
||||||
|
/*
|
||||||
|
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
||||||
|
Copyright (C) 2004-2020 The Stockfish developers (see AUTHORS file)
|
||||||
|
|
||||||
|
Stockfish is free software: you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
|
||||||
|
Stockfish is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
// Class for difference calculation of NNUE evaluation function
|
||||||
|
|
||||||
|
#ifndef NNUE_ACCUMULATOR_H_INCLUDED
|
||||||
|
#define NNUE_ACCUMULATOR_H_INCLUDED
|
||||||
|
|
||||||
|
#include "nnue_architecture.h"
|
||||||
|
|
||||||
|
namespace Eval::NNUE {
|
||||||
|
|
||||||
|
// Class that holds the result of affine transformation of input features
|
||||||
|
struct alignas(kCacheLineSize) Accumulator {
|
||||||
|
std::int16_t
|
||||||
|
accumulation[2][kRefreshTriggers.size()][kTransformedFeatureDimensions];
|
||||||
|
Value score;
|
||||||
|
bool computed_accumulation;
|
||||||
|
bool computed_score;
|
||||||
|
};
|
||||||
|
|
||||||
|
} // namespace Eval::NNUE
|
||||||
|
|
||||||
|
#endif // NNUE_ACCUMULATOR_H_INCLUDED
|
38
DroidFishApp/src/main/cpp/stockfish/nnue/nnue_architecture.h
Normal file
38
DroidFishApp/src/main/cpp/stockfish/nnue/nnue_architecture.h
Normal file
|
@ -0,0 +1,38 @@
|
||||||
|
/*
|
||||||
|
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
||||||
|
Copyright (C) 2004-2020 The Stockfish developers (see AUTHORS file)
|
||||||
|
|
||||||
|
Stockfish is free software: you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
|
||||||
|
Stockfish is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
// Input features and network structure used in NNUE evaluation function
|
||||||
|
|
||||||
|
#ifndef NNUE_ARCHITECTURE_H_INCLUDED
|
||||||
|
#define NNUE_ARCHITECTURE_H_INCLUDED
|
||||||
|
|
||||||
|
// Defines the network structure
|
||||||
|
#include "architectures/halfkp_256x2-32-32.h"
|
||||||
|
|
||||||
|
namespace Eval::NNUE {
|
||||||
|
|
||||||
|
static_assert(kTransformedFeatureDimensions % kMaxSimdWidth == 0, "");
|
||||||
|
static_assert(Network::kOutputDimensions == 1, "");
|
||||||
|
static_assert(std::is_same<Network::OutputType, std::int32_t>::value, "");
|
||||||
|
|
||||||
|
// Trigger for full calculation instead of difference calculation
|
||||||
|
constexpr auto kRefreshTriggers = RawFeatures::kRefreshTriggers;
|
||||||
|
|
||||||
|
} // namespace Eval::NNUE
|
||||||
|
|
||||||
|
#endif // #ifndef NNUE_ARCHITECTURE_H_INCLUDED
|
148
DroidFishApp/src/main/cpp/stockfish/nnue/nnue_common.h
Normal file
148
DroidFishApp/src/main/cpp/stockfish/nnue/nnue_common.h
Normal file
|
@ -0,0 +1,148 @@
|
||||||
|
/*
|
||||||
|
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
||||||
|
Copyright (C) 2004-2020 The Stockfish developers (see AUTHORS file)
|
||||||
|
|
||||||
|
Stockfish is free software: you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
|
||||||
|
Stockfish is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
// Constants used in NNUE evaluation function
|
||||||
|
|
||||||
|
#ifndef NNUE_COMMON_H_INCLUDED
|
||||||
|
#define NNUE_COMMON_H_INCLUDED
|
||||||
|
|
||||||
|
#include <cstring>
|
||||||
|
#include <iostream>
|
||||||
|
|
||||||
|
#if defined(USE_AVX2)
|
||||||
|
#include <immintrin.h>
|
||||||
|
|
||||||
|
#elif defined(USE_SSE41)
|
||||||
|
#include <smmintrin.h>
|
||||||
|
|
||||||
|
#elif defined(USE_SSSE3)
|
||||||
|
#include <tmmintrin.h>
|
||||||
|
|
||||||
|
#elif defined(USE_SSE2)
|
||||||
|
#include <emmintrin.h>
|
||||||
|
|
||||||
|
#elif defined(USE_MMX)
|
||||||
|
#include <mmintrin.h>
|
||||||
|
|
||||||
|
#elif defined(USE_NEON)
|
||||||
|
#include <arm_neon.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
|
// HACK: Use _mm256_loadu_si256() instead of _mm256_load_si256. Otherwise a binary
|
||||||
|
// compiled with older g++ crashes because the output memory is not aligned
|
||||||
|
// even though alignas is specified.
|
||||||
|
#if defined(USE_AVX2)
|
||||||
|
#if defined(__GNUC__ ) && (__GNUC__ < 9) && defined(_WIN32) && !defined(__clang__)
|
||||||
|
#define _mm256_loadA_si256 _mm256_loadu_si256
|
||||||
|
#define _mm256_storeA_si256 _mm256_storeu_si256
|
||||||
|
#else
|
||||||
|
#define _mm256_loadA_si256 _mm256_load_si256
|
||||||
|
#define _mm256_storeA_si256 _mm256_store_si256
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(USE_AVX512)
|
||||||
|
#if defined(__GNUC__ ) && (__GNUC__ < 9) && defined(_WIN32) && !defined(__clang__)
|
||||||
|
#define _mm512_loadA_si512 _mm512_loadu_si512
|
||||||
|
#define _mm512_storeA_si512 _mm512_storeu_si512
|
||||||
|
#else
|
||||||
|
#define _mm512_loadA_si512 _mm512_load_si512
|
||||||
|
#define _mm512_storeA_si512 _mm512_store_si512
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
|
namespace Eval::NNUE {
|
||||||
|
|
||||||
|
// Version of the evaluation file
|
||||||
|
constexpr std::uint32_t kVersion = 0x7AF32F16u;
|
||||||
|
|
||||||
|
// Constant used in evaluation value calculation
|
||||||
|
constexpr int FV_SCALE = 16;
|
||||||
|
constexpr int kWeightScaleBits = 6;
|
||||||
|
|
||||||
|
// Size of cache line (in bytes)
|
||||||
|
constexpr std::size_t kCacheLineSize = 64;
|
||||||
|
|
||||||
|
// SIMD width (in bytes)
|
||||||
|
#if defined(USE_AVX2)
|
||||||
|
constexpr std::size_t kSimdWidth = 32;
|
||||||
|
|
||||||
|
#elif defined(USE_SSE2)
|
||||||
|
constexpr std::size_t kSimdWidth = 16;
|
||||||
|
|
||||||
|
#elif defined(USE_MMX)
|
||||||
|
constexpr std::size_t kSimdWidth = 8;
|
||||||
|
|
||||||
|
#elif defined(USE_NEON)
|
||||||
|
constexpr std::size_t kSimdWidth = 16;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
constexpr std::size_t kMaxSimdWidth = 32;
|
||||||
|
|
||||||
|
// unique number for each piece type on each square
|
||||||
|
enum {
|
||||||
|
PS_NONE = 0,
|
||||||
|
PS_W_PAWN = 1,
|
||||||
|
PS_B_PAWN = 1 * SQUARE_NB + 1,
|
||||||
|
PS_W_KNIGHT = 2 * SQUARE_NB + 1,
|
||||||
|
PS_B_KNIGHT = 3 * SQUARE_NB + 1,
|
||||||
|
PS_W_BISHOP = 4 * SQUARE_NB + 1,
|
||||||
|
PS_B_BISHOP = 5 * SQUARE_NB + 1,
|
||||||
|
PS_W_ROOK = 6 * SQUARE_NB + 1,
|
||||||
|
PS_B_ROOK = 7 * SQUARE_NB + 1,
|
||||||
|
PS_W_QUEEN = 8 * SQUARE_NB + 1,
|
||||||
|
PS_B_QUEEN = 9 * SQUARE_NB + 1,
|
||||||
|
PS_W_KING = 10 * SQUARE_NB + 1,
|
||||||
|
PS_END = PS_W_KING, // pieces without kings (pawns included)
|
||||||
|
PS_B_KING = 11 * SQUARE_NB + 1,
|
||||||
|
PS_END2 = 12 * SQUARE_NB + 1
|
||||||
|
};
|
||||||
|
|
||||||
|
extern uint32_t kpp_board_index[PIECE_NB][COLOR_NB];
|
||||||
|
|
||||||
|
// Type of input feature after conversion
|
||||||
|
using TransformedFeatureType = std::uint8_t;
|
||||||
|
using IndexType = std::uint32_t;
|
||||||
|
|
||||||
|
// Round n up to be a multiple of base
|
||||||
|
template <typename IntType>
|
||||||
|
constexpr IntType CeilToMultiple(IntType n, IntType base) {
|
||||||
|
return (n + base - 1) / base * base;
|
||||||
|
}
|
||||||
|
|
||||||
|
// read_little_endian() is our utility to read an integer (signed or unsigned, any size)
|
||||||
|
// from a stream in little-endian order. We swap the byte order after the read if
|
||||||
|
// necessary to return a result with the byte ordering of the compiling machine.
|
||||||
|
template <typename IntType>
|
||||||
|
inline IntType read_little_endian(std::istream& stream) {
|
||||||
|
|
||||||
|
IntType result;
|
||||||
|
std::uint8_t u[sizeof(IntType)];
|
||||||
|
typename std::make_unsigned<IntType>::type v = 0;
|
||||||
|
|
||||||
|
stream.read(reinterpret_cast<char*>(u), sizeof(IntType));
|
||||||
|
for (std::size_t i = 0; i < sizeof(IntType); ++i)
|
||||||
|
v = (v << 8) | u[sizeof(IntType) - i - 1];
|
||||||
|
|
||||||
|
std::memcpy(&result, &v, sizeof(IntType));
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
} // namespace Eval::NNUE
|
||||||
|
|
||||||
|
#endif // #ifndef NNUE_COMMON_H_INCLUDED
|
|
@ -0,0 +1,378 @@
|
||||||
|
/*
|
||||||
|
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
||||||
|
Copyright (C) 2004-2020 The Stockfish developers (see AUTHORS file)
|
||||||
|
|
||||||
|
Stockfish is free software: you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
|
||||||
|
Stockfish is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
// A class that converts the input features of the NNUE evaluation function
|
||||||
|
|
||||||
|
#ifndef NNUE_FEATURE_TRANSFORMER_H_INCLUDED
|
||||||
|
#define NNUE_FEATURE_TRANSFORMER_H_INCLUDED
|
||||||
|
|
||||||
|
#include "nnue_common.h"
|
||||||
|
#include "nnue_architecture.h"
|
||||||
|
#include "features/index_list.h"
|
||||||
|
|
||||||
|
#include <cstring> // std::memset()
|
||||||
|
|
||||||
|
namespace Eval::NNUE {
|
||||||
|
|
||||||
|
// Input feature converter
|
||||||
|
class FeatureTransformer {
|
||||||
|
|
||||||
|
private:
|
||||||
|
// Number of output dimensions for one side
|
||||||
|
static constexpr IndexType kHalfDimensions = kTransformedFeatureDimensions;
|
||||||
|
|
||||||
|
public:
|
||||||
|
// Output type
|
||||||
|
using OutputType = TransformedFeatureType;
|
||||||
|
|
||||||
|
// Number of input/output dimensions
|
||||||
|
static constexpr IndexType kInputDimensions = RawFeatures::kDimensions;
|
||||||
|
static constexpr IndexType kOutputDimensions = kHalfDimensions * 2;
|
||||||
|
|
||||||
|
// Size of forward propagation buffer
|
||||||
|
static constexpr std::size_t kBufferSize =
|
||||||
|
kOutputDimensions * sizeof(OutputType);
|
||||||
|
|
||||||
|
// Hash value embedded in the evaluation file
|
||||||
|
static constexpr std::uint32_t GetHashValue() {
|
||||||
|
return RawFeatures::kHashValue ^ kOutputDimensions;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Read network parameters
|
||||||
|
bool ReadParameters(std::istream& stream) {
|
||||||
|
for (std::size_t i = 0; i < kHalfDimensions; ++i)
|
||||||
|
biases_[i] = read_little_endian<BiasType>(stream);
|
||||||
|
for (std::size_t i = 0; i < kHalfDimensions * kInputDimensions; ++i)
|
||||||
|
weights_[i] = read_little_endian<WeightType>(stream);
|
||||||
|
return !stream.fail();
|
||||||
|
}
|
||||||
|
|
||||||
|
// Proceed with the difference calculation if possible
|
||||||
|
bool UpdateAccumulatorIfPossible(const Position& pos) const {
|
||||||
|
const auto now = pos.state();
|
||||||
|
if (now->accumulator.computed_accumulation) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
const auto prev = now->previous;
|
||||||
|
if (prev && prev->accumulator.computed_accumulation) {
|
||||||
|
UpdateAccumulator(pos);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Convert input features
|
||||||
|
void Transform(const Position& pos, OutputType* output, bool refresh) const {
|
||||||
|
if (refresh || !UpdateAccumulatorIfPossible(pos)) {
|
||||||
|
RefreshAccumulator(pos);
|
||||||
|
}
|
||||||
|
const auto& accumulation = pos.state()->accumulator.accumulation;
|
||||||
|
|
||||||
|
#if defined(USE_AVX2)
|
||||||
|
constexpr IndexType kNumChunks = kHalfDimensions / kSimdWidth;
|
||||||
|
constexpr int kControl = 0b11011000;
|
||||||
|
const __m256i kZero = _mm256_setzero_si256();
|
||||||
|
|
||||||
|
#elif defined(USE_SSE2)
|
||||||
|
constexpr IndexType kNumChunks = kHalfDimensions / kSimdWidth;
|
||||||
|
|
||||||
|
#ifdef USE_SSE41
|
||||||
|
const __m128i kZero = _mm_setzero_si128();
|
||||||
|
#else
|
||||||
|
const __m128i k0x80s = _mm_set1_epi8(-128);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#elif defined(USE_MMX)
|
||||||
|
constexpr IndexType kNumChunks = kHalfDimensions / kSimdWidth;
|
||||||
|
const __m64 k0x80s = _mm_set1_pi8(-128);
|
||||||
|
|
||||||
|
#elif defined(USE_NEON)
|
||||||
|
constexpr IndexType kNumChunks = kHalfDimensions / (kSimdWidth / 2);
|
||||||
|
const int8x8_t kZero = {0};
|
||||||
|
#endif
|
||||||
|
|
||||||
|
const Color perspectives[2] = {pos.side_to_move(), ~pos.side_to_move()};
|
||||||
|
for (IndexType p = 0; p < 2; ++p) {
|
||||||
|
const IndexType offset = kHalfDimensions * p;
|
||||||
|
|
||||||
|
#if defined(USE_AVX2)
|
||||||
|
auto out = reinterpret_cast<__m256i*>(&output[offset]);
|
||||||
|
for (IndexType j = 0; j < kNumChunks; ++j) {
|
||||||
|
__m256i sum0 = _mm256_loadA_si256(
|
||||||
|
&reinterpret_cast<const __m256i*>(accumulation[perspectives[p]][0])[j * 2 + 0]);
|
||||||
|
__m256i sum1 = _mm256_loadA_si256(
|
||||||
|
&reinterpret_cast<const __m256i*>(accumulation[perspectives[p]][0])[j * 2 + 1]);
|
||||||
|
_mm256_storeA_si256(&out[j], _mm256_permute4x64_epi64(_mm256_max_epi8(
|
||||||
|
_mm256_packs_epi16(sum0, sum1), kZero), kControl));
|
||||||
|
}
|
||||||
|
|
||||||
|
#elif defined(USE_SSE2)
|
||||||
|
auto out = reinterpret_cast<__m128i*>(&output[offset]);
|
||||||
|
for (IndexType j = 0; j < kNumChunks; ++j) {
|
||||||
|
__m128i sum0 = _mm_load_si128(&reinterpret_cast<const __m128i*>(
|
||||||
|
accumulation[perspectives[p]][0])[j * 2 + 0]);
|
||||||
|
__m128i sum1 = _mm_load_si128(&reinterpret_cast<const __m128i*>(
|
||||||
|
accumulation[perspectives[p]][0])[j * 2 + 1]);
|
||||||
|
const __m128i packedbytes = _mm_packs_epi16(sum0, sum1);
|
||||||
|
|
||||||
|
_mm_store_si128(&out[j],
|
||||||
|
|
||||||
|
#ifdef USE_SSE41
|
||||||
|
_mm_max_epi8(packedbytes, kZero)
|
||||||
|
#else
|
||||||
|
_mm_subs_epi8(_mm_adds_epi8(packedbytes, k0x80s), k0x80s)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
#elif defined(USE_MMX)
|
||||||
|
auto out = reinterpret_cast<__m64*>(&output[offset]);
|
||||||
|
for (IndexType j = 0; j < kNumChunks; ++j) {
|
||||||
|
__m64 sum0 = *(&reinterpret_cast<const __m64*>(
|
||||||
|
accumulation[perspectives[p]][0])[j * 2 + 0]);
|
||||||
|
__m64 sum1 = *(&reinterpret_cast<const __m64*>(
|
||||||
|
accumulation[perspectives[p]][0])[j * 2 + 1]);
|
||||||
|
const __m64 packedbytes = _mm_packs_pi16(sum0, sum1);
|
||||||
|
out[j] = _mm_subs_pi8(_mm_adds_pi8(packedbytes, k0x80s), k0x80s);
|
||||||
|
}
|
||||||
|
|
||||||
|
#elif defined(USE_NEON)
|
||||||
|
const auto out = reinterpret_cast<int8x8_t*>(&output[offset]);
|
||||||
|
for (IndexType j = 0; j < kNumChunks; ++j) {
|
||||||
|
int16x8_t sum = reinterpret_cast<const int16x8_t*>(
|
||||||
|
accumulation[perspectives[p]][0])[j];
|
||||||
|
out[j] = vmax_s8(vqmovn_s16(sum), kZero);
|
||||||
|
}
|
||||||
|
|
||||||
|
#else
|
||||||
|
for (IndexType j = 0; j < kHalfDimensions; ++j) {
|
||||||
|
BiasType sum = accumulation[static_cast<int>(perspectives[p])][0][j];
|
||||||
|
output[offset + j] = static_cast<OutputType>(
|
||||||
|
std::max<int>(0, std::min<int>(127, sum)));
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
}
|
||||||
|
#if defined(USE_MMX)
|
||||||
|
_mm_empty();
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
private:
|
||||||
|
// Calculate cumulative value without using difference calculation
|
||||||
|
void RefreshAccumulator(const Position& pos) const {
|
||||||
|
auto& accumulator = pos.state()->accumulator;
|
||||||
|
IndexType i = 0;
|
||||||
|
Features::IndexList active_indices[2];
|
||||||
|
RawFeatures::AppendActiveIndices(pos, kRefreshTriggers[i],
|
||||||
|
active_indices);
|
||||||
|
for (Color perspective : { WHITE, BLACK }) {
|
||||||
|
std::memcpy(accumulator.accumulation[perspective][i], biases_,
|
||||||
|
kHalfDimensions * sizeof(BiasType));
|
||||||
|
for (const auto index : active_indices[perspective]) {
|
||||||
|
const IndexType offset = kHalfDimensions * index;
|
||||||
|
#if defined(USE_AVX512)
|
||||||
|
auto accumulation = reinterpret_cast<__m512i*>(
|
||||||
|
&accumulator.accumulation[perspective][i][0]);
|
||||||
|
auto column = reinterpret_cast<const __m512i*>(&weights_[offset]);
|
||||||
|
constexpr IndexType kNumChunks = kHalfDimensions / kSimdWidth;
|
||||||
|
for (IndexType j = 0; j < kNumChunks; ++j)
|
||||||
|
_mm512_storeA_si512(&accumulation[j], _mm512_add_epi16(_mm512_loadA_si512(&accumulation[j]), column[j]));
|
||||||
|
|
||||||
|
#elif defined(USE_AVX2)
|
||||||
|
auto accumulation = reinterpret_cast<__m256i*>(
|
||||||
|
&accumulator.accumulation[perspective][i][0]);
|
||||||
|
auto column = reinterpret_cast<const __m256i*>(&weights_[offset]);
|
||||||
|
constexpr IndexType kNumChunks = kHalfDimensions / (kSimdWidth / 2);
|
||||||
|
for (IndexType j = 0; j < kNumChunks; ++j)
|
||||||
|
_mm256_storeA_si256(&accumulation[j], _mm256_add_epi16(_mm256_loadA_si256(&accumulation[j]), column[j]));
|
||||||
|
|
||||||
|
#elif defined(USE_SSE2)
|
||||||
|
auto accumulation = reinterpret_cast<__m128i*>(
|
||||||
|
&accumulator.accumulation[perspective][i][0]);
|
||||||
|
auto column = reinterpret_cast<const __m128i*>(&weights_[offset]);
|
||||||
|
constexpr IndexType kNumChunks = kHalfDimensions / (kSimdWidth / 2);
|
||||||
|
for (IndexType j = 0; j < kNumChunks; ++j)
|
||||||
|
accumulation[j] = _mm_add_epi16(accumulation[j], column[j]);
|
||||||
|
|
||||||
|
#elif defined(USE_MMX)
|
||||||
|
auto accumulation = reinterpret_cast<__m64*>(
|
||||||
|
&accumulator.accumulation[perspective][i][0]);
|
||||||
|
auto column = reinterpret_cast<const __m64*>(&weights_[offset]);
|
||||||
|
constexpr IndexType kNumChunks = kHalfDimensions / (kSimdWidth / 2);
|
||||||
|
for (IndexType j = 0; j < kNumChunks; ++j) {
|
||||||
|
accumulation[j] = _mm_add_pi16(accumulation[j], column[j]);
|
||||||
|
}
|
||||||
|
|
||||||
|
#elif defined(USE_NEON)
|
||||||
|
auto accumulation = reinterpret_cast<int16x8_t*>(
|
||||||
|
&accumulator.accumulation[perspective][i][0]);
|
||||||
|
auto column = reinterpret_cast<const int16x8_t*>(&weights_[offset]);
|
||||||
|
constexpr IndexType kNumChunks = kHalfDimensions / (kSimdWidth / 2);
|
||||||
|
for (IndexType j = 0; j < kNumChunks; ++j)
|
||||||
|
accumulation[j] = vaddq_s16(accumulation[j], column[j]);
|
||||||
|
|
||||||
|
#else
|
||||||
|
for (IndexType j = 0; j < kHalfDimensions; ++j)
|
||||||
|
accumulator.accumulation[perspective][i][j] += weights_[offset + j];
|
||||||
|
#endif
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#if defined(USE_MMX)
|
||||||
|
_mm_empty();
|
||||||
|
#endif
|
||||||
|
|
||||||
|
accumulator.computed_accumulation = true;
|
||||||
|
accumulator.computed_score = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Calculate cumulative value using difference calculation
|
||||||
|
void UpdateAccumulator(const Position& pos) const {
|
||||||
|
const auto prev_accumulator = pos.state()->previous->accumulator;
|
||||||
|
auto& accumulator = pos.state()->accumulator;
|
||||||
|
IndexType i = 0;
|
||||||
|
Features::IndexList removed_indices[2], added_indices[2];
|
||||||
|
bool reset[2];
|
||||||
|
RawFeatures::AppendChangedIndices(pos, kRefreshTriggers[i],
|
||||||
|
removed_indices, added_indices, reset);
|
||||||
|
for (Color perspective : { WHITE, BLACK }) {
|
||||||
|
|
||||||
|
#if defined(USE_AVX2)
|
||||||
|
constexpr IndexType kNumChunks = kHalfDimensions / (kSimdWidth / 2);
|
||||||
|
auto accumulation = reinterpret_cast<__m256i*>(
|
||||||
|
&accumulator.accumulation[perspective][i][0]);
|
||||||
|
|
||||||
|
#elif defined(USE_SSE2)
|
||||||
|
constexpr IndexType kNumChunks = kHalfDimensions / (kSimdWidth / 2);
|
||||||
|
auto accumulation = reinterpret_cast<__m128i*>(
|
||||||
|
&accumulator.accumulation[perspective][i][0]);
|
||||||
|
|
||||||
|
#elif defined(USE_MMX)
|
||||||
|
constexpr IndexType kNumChunks = kHalfDimensions / (kSimdWidth / 2);
|
||||||
|
auto accumulation = reinterpret_cast<__m64*>(
|
||||||
|
&accumulator.accumulation[perspective][i][0]);
|
||||||
|
|
||||||
|
#elif defined(USE_NEON)
|
||||||
|
constexpr IndexType kNumChunks = kHalfDimensions / (kSimdWidth / 2);
|
||||||
|
auto accumulation = reinterpret_cast<int16x8_t*>(
|
||||||
|
&accumulator.accumulation[perspective][i][0]);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
if (reset[perspective]) {
|
||||||
|
std::memcpy(accumulator.accumulation[perspective][i], biases_,
|
||||||
|
kHalfDimensions * sizeof(BiasType));
|
||||||
|
} else {
|
||||||
|
std::memcpy(accumulator.accumulation[perspective][i],
|
||||||
|
prev_accumulator.accumulation[perspective][i],
|
||||||
|
kHalfDimensions * sizeof(BiasType));
|
||||||
|
// Difference calculation for the deactivated features
|
||||||
|
for (const auto index : removed_indices[perspective]) {
|
||||||
|
const IndexType offset = kHalfDimensions * index;
|
||||||
|
|
||||||
|
#if defined(USE_AVX2)
|
||||||
|
auto column = reinterpret_cast<const __m256i*>(&weights_[offset]);
|
||||||
|
for (IndexType j = 0; j < kNumChunks; ++j) {
|
||||||
|
accumulation[j] = _mm256_sub_epi16(accumulation[j], column[j]);
|
||||||
|
}
|
||||||
|
|
||||||
|
#elif defined(USE_SSE2)
|
||||||
|
auto column = reinterpret_cast<const __m128i*>(&weights_[offset]);
|
||||||
|
for (IndexType j = 0; j < kNumChunks; ++j) {
|
||||||
|
accumulation[j] = _mm_sub_epi16(accumulation[j], column[j]);
|
||||||
|
}
|
||||||
|
|
||||||
|
#elif defined(USE_MMX)
|
||||||
|
auto column = reinterpret_cast<const __m64*>(&weights_[offset]);
|
||||||
|
for (IndexType j = 0; j < kNumChunks; ++j) {
|
||||||
|
accumulation[j] = _mm_sub_pi16(accumulation[j], column[j]);
|
||||||
|
}
|
||||||
|
|
||||||
|
#elif defined(USE_NEON)
|
||||||
|
auto column = reinterpret_cast<const int16x8_t*>(&weights_[offset]);
|
||||||
|
for (IndexType j = 0; j < kNumChunks; ++j) {
|
||||||
|
accumulation[j] = vsubq_s16(accumulation[j], column[j]);
|
||||||
|
}
|
||||||
|
|
||||||
|
#else
|
||||||
|
for (IndexType j = 0; j < kHalfDimensions; ++j) {
|
||||||
|
accumulator.accumulation[perspective][i][j] -=
|
||||||
|
weights_[offset + j];
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
{ // Difference calculation for the activated features
|
||||||
|
for (const auto index : added_indices[perspective]) {
|
||||||
|
const IndexType offset = kHalfDimensions * index;
|
||||||
|
|
||||||
|
#if defined(USE_AVX2)
|
||||||
|
auto column = reinterpret_cast<const __m256i*>(&weights_[offset]);
|
||||||
|
for (IndexType j = 0; j < kNumChunks; ++j) {
|
||||||
|
accumulation[j] = _mm256_add_epi16(accumulation[j], column[j]);
|
||||||
|
}
|
||||||
|
|
||||||
|
#elif defined(USE_SSE2)
|
||||||
|
auto column = reinterpret_cast<const __m128i*>(&weights_[offset]);
|
||||||
|
for (IndexType j = 0; j < kNumChunks; ++j) {
|
||||||
|
accumulation[j] = _mm_add_epi16(accumulation[j], column[j]);
|
||||||
|
}
|
||||||
|
|
||||||
|
#elif defined(USE_MMX)
|
||||||
|
auto column = reinterpret_cast<const __m64*>(&weights_[offset]);
|
||||||
|
for (IndexType j = 0; j < kNumChunks; ++j) {
|
||||||
|
accumulation[j] = _mm_add_pi16(accumulation[j], column[j]);
|
||||||
|
}
|
||||||
|
|
||||||
|
#elif defined(USE_NEON)
|
||||||
|
auto column = reinterpret_cast<const int16x8_t*>(&weights_[offset]);
|
||||||
|
for (IndexType j = 0; j < kNumChunks; ++j) {
|
||||||
|
accumulation[j] = vaddq_s16(accumulation[j], column[j]);
|
||||||
|
}
|
||||||
|
|
||||||
|
#else
|
||||||
|
for (IndexType j = 0; j < kHalfDimensions; ++j) {
|
||||||
|
accumulator.accumulation[perspective][i][j] +=
|
||||||
|
weights_[offset + j];
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#if defined(USE_MMX)
|
||||||
|
_mm_empty();
|
||||||
|
#endif
|
||||||
|
|
||||||
|
accumulator.computed_accumulation = true;
|
||||||
|
accumulator.computed_score = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
using BiasType = std::int16_t;
|
||||||
|
using WeightType = std::int16_t;
|
||||||
|
|
||||||
|
alignas(kCacheLineSize) BiasType biases_[kHalfDimensions];
|
||||||
|
alignas(kCacheLineSize)
|
||||||
|
WeightType weights_[kHalfDimensions * kInputDimensions];
|
||||||
|
};
|
||||||
|
|
||||||
|
} // namespace Eval::NNUE
|
||||||
|
|
||||||
|
#endif // #ifndef NNUE_FEATURE_TRANSFORMER_H_INCLUDED
|
|
@ -1,8 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
||||||
Copyright (C) 2004-2008 Tord Romstad (Glaurung author)
|
Copyright (C) 2004-2020 The Stockfish developers (see AUTHORS file)
|
||||||
Copyright (C) 2008-2015 Marco Costalba, Joona Kiiski, Tord Romstad
|
|
||||||
Copyright (C) 2015-2020 Marco Costalba, Joona Kiiski, Gary Linscott, Tord Romstad
|
|
||||||
|
|
||||||
Stockfish is free software: you can redistribute it and/or modify
|
Stockfish is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
@ -32,16 +30,21 @@ namespace {
|
||||||
#define S(mg, eg) make_score(mg, eg)
|
#define S(mg, eg) make_score(mg, eg)
|
||||||
|
|
||||||
// Pawn penalties
|
// Pawn penalties
|
||||||
constexpr Score Backward = S( 9, 24);
|
constexpr Score Backward = S( 8, 27);
|
||||||
constexpr Score Doubled = S(11, 56);
|
constexpr Score Doubled = S(11, 55);
|
||||||
constexpr Score Isolated = S( 5, 15);
|
constexpr Score Isolated = S( 5, 17);
|
||||||
constexpr Score WeakLever = S( 0, 56);
|
constexpr Score WeakLever = S( 2, 54);
|
||||||
constexpr Score WeakUnopposed = S(13, 27);
|
constexpr Score WeakUnopposed = S(15, 25);
|
||||||
|
|
||||||
constexpr Score BlockedStorm[RANK_NB] = {S( 0, 0), S( 0, 0), S( 76, 78), S(-10, 15), S(-7, 10), S(-4, 6), S(-1, 2)};
|
// Bonus for blocked pawns at 5th or 6th rank
|
||||||
|
constexpr Score BlockedPawn[2] = { S(-13, -4), S(-4, 3) };
|
||||||
|
|
||||||
|
constexpr Score BlockedStorm[RANK_NB] = {
|
||||||
|
S(0, 0), S(0, 0), S(76, 78), S(-10, 15), S(-7, 10), S(-4, 6), S(-1, 2)
|
||||||
|
};
|
||||||
|
|
||||||
// Connected pawn bonus
|
// Connected pawn bonus
|
||||||
constexpr int Connected[RANK_NB] = { 0, 7, 8, 12, 29, 48, 86 };
|
constexpr int Connected[RANK_NB] = { 0, 7, 8, 11, 24, 45, 85 };
|
||||||
|
|
||||||
// Strength of pawn shelter for our king by [distance from edge][rank].
|
// Strength of pawn shelter for our king by [distance from edge][rank].
|
||||||
// RANK_1 = 0 is used for files where we have no pawn, or pawn is behind our king.
|
// RANK_1 = 0 is used for files where we have no pawn, or pawn is behind our king.
|
||||||
|
@ -66,6 +69,12 @@ namespace {
|
||||||
#undef S
|
#undef S
|
||||||
#undef V
|
#undef V
|
||||||
|
|
||||||
|
|
||||||
|
/// evaluate() calculates a score for the static pawn structure of the given position.
|
||||||
|
/// We cannot use the location of pieces or king in this function, as the evaluation
|
||||||
|
/// of the pawn structure will be stored in a small cache for speed reasons, and will
|
||||||
|
/// be re-used even when the pieces have moved.
|
||||||
|
|
||||||
template<Color Us>
|
template<Color Us>
|
||||||
Score evaluate(const Position& pos, Pawns::Entry* e) {
|
Score evaluate(const Position& pos, Pawns::Entry* e) {
|
||||||
|
|
||||||
|
@ -137,7 +146,7 @@ namespace {
|
||||||
// Score this pawn
|
// Score this pawn
|
||||||
if (support | phalanx)
|
if (support | phalanx)
|
||||||
{
|
{
|
||||||
int v = Connected[r] * (4 + 2 * bool(phalanx) - 2 * bool(opposed) - bool(blocked)) / 2
|
int v = Connected[r] * (2 + bool(phalanx) - bool(opposed))
|
||||||
+ 21 * popcount(support);
|
+ 21 * popcount(support);
|
||||||
|
|
||||||
score += make_score(v, v * (r - 2) / 4);
|
score += make_score(v, v * (r - 2) / 4);
|
||||||
|
@ -150,17 +159,20 @@ namespace {
|
||||||
&& !(theirPawns & adjacent_files_bb(s)))
|
&& !(theirPawns & adjacent_files_bb(s)))
|
||||||
score -= Doubled;
|
score -= Doubled;
|
||||||
else
|
else
|
||||||
score -= Isolated
|
score -= Isolated
|
||||||
+ WeakUnopposed * !opposed;
|
+ WeakUnopposed * !opposed;
|
||||||
}
|
}
|
||||||
|
|
||||||
else if (backward)
|
else if (backward)
|
||||||
score -= Backward
|
score -= Backward
|
||||||
+ WeakUnopposed * !opposed;
|
+ WeakUnopposed * !opposed;
|
||||||
|
|
||||||
if (!support)
|
if (!support)
|
||||||
score -= Doubled * doubled
|
score -= Doubled * doubled
|
||||||
+ WeakLever * more_than_one(lever);
|
+ WeakLever * more_than_one(lever);
|
||||||
|
|
||||||
|
if (blocked && r > RANK_4)
|
||||||
|
score += BlockedPawn[r-4];
|
||||||
}
|
}
|
||||||
|
|
||||||
return score;
|
return score;
|
||||||
|
@ -170,6 +182,7 @@ namespace {
|
||||||
|
|
||||||
namespace Pawns {
|
namespace Pawns {
|
||||||
|
|
||||||
|
|
||||||
/// Pawns::probe() looks up the current position's pawns configuration in
|
/// Pawns::probe() looks up the current position's pawns configuration in
|
||||||
/// the pawns hash table. It returns a pointer to the Entry if the position
|
/// the pawns hash table. It returns a pointer to the Entry if the position
|
||||||
/// is found. Otherwise a new Entry is computed and stored there, so we don't
|
/// is found. Otherwise a new Entry is computed and stored there, so we don't
|
||||||
|
@ -196,7 +209,7 @@ Entry* probe(const Position& pos) {
|
||||||
/// penalty for a king, looking at the king file and the two closest files.
|
/// penalty for a king, looking at the king file and the two closest files.
|
||||||
|
|
||||||
template<Color Us>
|
template<Color Us>
|
||||||
Score Entry::evaluate_shelter(const Position& pos, Square ksq) {
|
Score Entry::evaluate_shelter(const Position& pos, Square ksq) const {
|
||||||
|
|
||||||
constexpr Color Them = ~Us;
|
constexpr Color Them = ~Us;
|
||||||
|
|
||||||
|
@ -206,7 +219,7 @@ Score Entry::evaluate_shelter(const Position& pos, Square ksq) {
|
||||||
|
|
||||||
Score bonus = make_score(5, 5);
|
Score bonus = make_score(5, 5);
|
||||||
|
|
||||||
File center = Utility::clamp(file_of(ksq), FILE_B, FILE_G);
|
File center = std::clamp(file_of(ksq), FILE_B, FILE_G);
|
||||||
for (File f = File(center - 1); f <= File(center + 1); ++f)
|
for (File f = File(center - 1); f <= File(center + 1); ++f)
|
||||||
{
|
{
|
||||||
b = ourPawns & file_bb(f);
|
b = ourPawns & file_bb(f);
|
||||||
|
|
|
@ -1,8 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
||||||
Copyright (C) 2004-2008 Tord Romstad (Glaurung author)
|
Copyright (C) 2004-2020 The Stockfish developers (see AUTHORS file)
|
||||||
Copyright (C) 2008-2015 Marco Costalba, Joona Kiiski, Tord Romstad
|
|
||||||
Copyright (C) 2015-2020 Marco Costalba, Joona Kiiski, Gary Linscott, Tord Romstad
|
|
||||||
|
|
||||||
Stockfish is free software: you can redistribute it and/or modify
|
Stockfish is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
@ -50,7 +48,7 @@ struct Entry {
|
||||||
Score do_king_safety(const Position& pos);
|
Score do_king_safety(const Position& pos);
|
||||||
|
|
||||||
template<Color Us>
|
template<Color Us>
|
||||||
Score evaluate_shelter(const Position& pos, Square ksq);
|
Score evaluate_shelter(const Position& pos, Square ksq) const;
|
||||||
|
|
||||||
Key key;
|
Key key;
|
||||||
Score scores[COLOR_NB];
|
Score scores[COLOR_NB];
|
||||||
|
|
|
@ -1,8 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
||||||
Copyright (C) 2004-2008 Tord Romstad (Glaurung author)
|
Copyright (C) 2004-2020 The Stockfish developers (see AUTHORS file)
|
||||||
Copyright (C) 2008-2015 Marco Costalba, Joona Kiiski, Tord Romstad
|
|
||||||
Copyright (C) 2015-2020 Marco Costalba, Joona Kiiski, Gary Linscott, Tord Romstad
|
|
||||||
|
|
||||||
Stockfish is free software: you can redistribute it and/or modify
|
Stockfish is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
@ -105,8 +103,7 @@ Key cuckoo[8192];
|
||||||
Move cuckooMove[8192];
|
Move cuckooMove[8192];
|
||||||
|
|
||||||
|
|
||||||
/// Position::init() initializes at startup the various arrays used to compute
|
/// Position::init() initializes at startup the various arrays used to compute hash keys
|
||||||
/// hash keys.
|
|
||||||
|
|
||||||
void Position::init() {
|
void Position::init() {
|
||||||
|
|
||||||
|
@ -120,15 +117,7 @@ void Position::init() {
|
||||||
Zobrist::enpassant[f] = rng.rand<Key>();
|
Zobrist::enpassant[f] = rng.rand<Key>();
|
||||||
|
|
||||||
for (int cr = NO_CASTLING; cr <= ANY_CASTLING; ++cr)
|
for (int cr = NO_CASTLING; cr <= ANY_CASTLING; ++cr)
|
||||||
{
|
Zobrist::castling[cr] = rng.rand<Key>();
|
||||||
Zobrist::castling[cr] = 0;
|
|
||||||
Bitboard b = cr;
|
|
||||||
while (b)
|
|
||||||
{
|
|
||||||
Key k = Zobrist::castling[1ULL << pop_lsb(&b)];
|
|
||||||
Zobrist::castling[cr] ^= k ? k : rng.rand<Key>();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Zobrist::side = rng.rand<Key>();
|
Zobrist::side = rng.rand<Key>();
|
||||||
Zobrist::noPawns = rng.rand<Key>();
|
Zobrist::noPawns = rng.rand<Key>();
|
||||||
|
@ -187,9 +176,9 @@ Position& Position::set(const string& fenStr, bool isChess960, StateInfo* si, Th
|
||||||
|
|
||||||
4) En passant target square (in algebraic notation). If there's no en passant
|
4) En passant target square (in algebraic notation). If there's no en passant
|
||||||
target square, this is "-". If a pawn has just made a 2-square move, this
|
target square, this is "-". If a pawn has just made a 2-square move, this
|
||||||
is the position "behind" the pawn. This is recorded only if there is a pawn
|
is the position "behind" the pawn. Following X-FEN standard, this is recorded only
|
||||||
in position to make an en passant capture, and if there really is a pawn
|
if there is a pawn in position to make an en passant capture, and if there really
|
||||||
that might have advanced two squares.
|
is a pawn that might have advanced two squares.
|
||||||
|
|
||||||
5) Halfmove clock. This is the number of halfmoves since the last pawn advance
|
5) Halfmove clock. This is the number of halfmoves since the last pawn advance
|
||||||
or capture. This is used to determine if a draw can be claimed under the
|
or capture. This is used to determine if a draw can be claimed under the
|
||||||
|
@ -220,8 +209,7 @@ Position& Position::set(const string& fenStr, bool isChess960, StateInfo* si, Th
|
||||||
else if (token == '/')
|
else if (token == '/')
|
||||||
sq += 2 * SOUTH;
|
sq += 2 * SOUTH;
|
||||||
|
|
||||||
else if ((idx = PieceToChar.find(token)) != string::npos)
|
else if ((idx = PieceToChar.find(token)) != string::npos) {
|
||||||
{
|
|
||||||
put_piece(Piece(idx), sq);
|
put_piece(Piece(idx), sq);
|
||||||
++sq;
|
++sq;
|
||||||
}
|
}
|
||||||
|
@ -260,17 +248,25 @@ Position& Position::set(const string& fenStr, bool isChess960, StateInfo* si, Th
|
||||||
set_castling_right(c, rsq);
|
set_castling_right(c, rsq);
|
||||||
}
|
}
|
||||||
|
|
||||||
// 4. En passant square. Ignore if no pawn capture is possible
|
// 4. En passant square.
|
||||||
|
// Ignore if square is invalid or not on side to move relative rank 6.
|
||||||
|
bool enpassant = false;
|
||||||
|
|
||||||
if ( ((ss >> col) && (col >= 'a' && col <= 'h'))
|
if ( ((ss >> col) && (col >= 'a' && col <= 'h'))
|
||||||
&& ((ss >> row) && (row == '3' || row == '6')))
|
&& ((ss >> row) && (row == (sideToMove == WHITE ? '6' : '3'))))
|
||||||
{
|
{
|
||||||
st->epSquare = make_square(File(col - 'a'), Rank(row - '1'));
|
st->epSquare = make_square(File(col - 'a'), Rank(row - '1'));
|
||||||
|
|
||||||
if ( !(attackers_to(st->epSquare) & pieces(sideToMove, PAWN))
|
// En passant square will be considered only if
|
||||||
|| !(pieces(~sideToMove, PAWN) & (st->epSquare + pawn_push(~sideToMove))))
|
// a) side to move have a pawn threatening epSquare
|
||||||
st->epSquare = SQ_NONE;
|
// b) there is an enemy pawn in front of epSquare
|
||||||
|
// c) there is no piece on epSquare or behind epSquare
|
||||||
|
enpassant = pawn_attacks_bb(~sideToMove, st->epSquare) & pieces(sideToMove, PAWN)
|
||||||
|
&& (pieces(~sideToMove, PAWN) & (st->epSquare + pawn_push(~sideToMove)))
|
||||||
|
&& !(pieces() & (st->epSquare | (st->epSquare + pawn_push(sideToMove))));
|
||||||
}
|
}
|
||||||
else
|
|
||||||
|
if (!enpassant)
|
||||||
st->epSquare = SQ_NONE;
|
st->epSquare = SQ_NONE;
|
||||||
|
|
||||||
// 5-6. Halfmove clock and fullmove number
|
// 5-6. Halfmove clock and fullmove number
|
||||||
|
@ -706,6 +702,12 @@ void Position::do_move(Move m, StateInfo& newSt, bool givesCheck) {
|
||||||
++st->rule50;
|
++st->rule50;
|
||||||
++st->pliesFromNull;
|
++st->pliesFromNull;
|
||||||
|
|
||||||
|
// Used by NNUE
|
||||||
|
st->accumulator.computed_accumulation = false;
|
||||||
|
st->accumulator.computed_score = false;
|
||||||
|
auto& dp = st->dirtyPiece;
|
||||||
|
dp.dirty_num = 1;
|
||||||
|
|
||||||
Color us = sideToMove;
|
Color us = sideToMove;
|
||||||
Color them = ~us;
|
Color them = ~us;
|
||||||
Square from = from_sq(m);
|
Square from = from_sq(m);
|
||||||
|
@ -753,6 +755,14 @@ void Position::do_move(Move m, StateInfo& newSt, bool givesCheck) {
|
||||||
else
|
else
|
||||||
st->nonPawnMaterial[them] -= PieceValue[MG][captured];
|
st->nonPawnMaterial[them] -= PieceValue[MG][captured];
|
||||||
|
|
||||||
|
if (Eval::useNNUE)
|
||||||
|
{
|
||||||
|
dp.dirty_num = 2; // 1 piece moved, 1 piece captured
|
||||||
|
dp.piece[1] = captured;
|
||||||
|
dp.from[1] = capsq;
|
||||||
|
dp.to[1] = SQ_NONE;
|
||||||
|
}
|
||||||
|
|
||||||
// Update board and piece lists
|
// Update board and piece lists
|
||||||
remove_piece(capsq);
|
remove_piece(capsq);
|
||||||
|
|
||||||
|
@ -781,14 +791,23 @@ void Position::do_move(Move m, StateInfo& newSt, bool givesCheck) {
|
||||||
// Update castling rights if needed
|
// Update castling rights if needed
|
||||||
if (st->castlingRights && (castlingRightsMask[from] | castlingRightsMask[to]))
|
if (st->castlingRights && (castlingRightsMask[from] | castlingRightsMask[to]))
|
||||||
{
|
{
|
||||||
int cr = castlingRightsMask[from] | castlingRightsMask[to];
|
k ^= Zobrist::castling[st->castlingRights];
|
||||||
k ^= Zobrist::castling[st->castlingRights & cr];
|
st->castlingRights &= ~(castlingRightsMask[from] | castlingRightsMask[to]);
|
||||||
st->castlingRights &= ~cr;
|
k ^= Zobrist::castling[st->castlingRights];
|
||||||
}
|
}
|
||||||
|
|
||||||
// Move the piece. The tricky Chess960 castling is handled earlier
|
// Move the piece. The tricky Chess960 castling is handled earlier
|
||||||
if (type_of(m) != CASTLING)
|
if (type_of(m) != CASTLING)
|
||||||
|
{
|
||||||
|
if (Eval::useNNUE)
|
||||||
|
{
|
||||||
|
dp.piece[0] = pc;
|
||||||
|
dp.from[0] = from;
|
||||||
|
dp.to[0] = to;
|
||||||
|
}
|
||||||
|
|
||||||
move_piece(from, to);
|
move_piece(from, to);
|
||||||
|
}
|
||||||
|
|
||||||
// If the moving piece is a pawn do some special extra work
|
// If the moving piece is a pawn do some special extra work
|
||||||
if (type_of(pc) == PAWN)
|
if (type_of(pc) == PAWN)
|
||||||
|
@ -811,6 +830,16 @@ void Position::do_move(Move m, StateInfo& newSt, bool givesCheck) {
|
||||||
remove_piece(to);
|
remove_piece(to);
|
||||||
put_piece(promotion, to);
|
put_piece(promotion, to);
|
||||||
|
|
||||||
|
if (Eval::useNNUE)
|
||||||
|
{
|
||||||
|
// Promoting pawn to SQ_NONE, promoted piece from SQ_NONE
|
||||||
|
dp.to[0] = SQ_NONE;
|
||||||
|
dp.piece[dp.dirty_num] = promotion;
|
||||||
|
dp.from[dp.dirty_num] = SQ_NONE;
|
||||||
|
dp.to[dp.dirty_num] = to;
|
||||||
|
dp.dirty_num++;
|
||||||
|
}
|
||||||
|
|
||||||
// Update hash keys
|
// Update hash keys
|
||||||
k ^= Zobrist::psq[pc][to] ^ Zobrist::psq[promotion][to];
|
k ^= Zobrist::psq[pc][to] ^ Zobrist::psq[promotion][to];
|
||||||
st->pawnKey ^= Zobrist::psq[pc][to];
|
st->pawnKey ^= Zobrist::psq[pc][to];
|
||||||
|
@ -939,6 +968,18 @@ void Position::do_castling(Color us, Square from, Square& to, Square& rfrom, Squ
|
||||||
rto = relative_square(us, kingSide ? SQ_F1 : SQ_D1);
|
rto = relative_square(us, kingSide ? SQ_F1 : SQ_D1);
|
||||||
to = relative_square(us, kingSide ? SQ_G1 : SQ_C1);
|
to = relative_square(us, kingSide ? SQ_G1 : SQ_C1);
|
||||||
|
|
||||||
|
if (Do && Eval::useNNUE)
|
||||||
|
{
|
||||||
|
auto& dp = st->dirtyPiece;
|
||||||
|
dp.piece[0] = make_piece(us, KING);
|
||||||
|
dp.from[0] = from;
|
||||||
|
dp.to[0] = to;
|
||||||
|
dp.piece[1] = make_piece(us, ROOK);
|
||||||
|
dp.from[1] = rfrom;
|
||||||
|
dp.to[1] = rto;
|
||||||
|
dp.dirty_num = 2;
|
||||||
|
}
|
||||||
|
|
||||||
// Remove both pieces first since squares could overlap in Chess960
|
// Remove both pieces first since squares could overlap in Chess960
|
||||||
remove_piece(Do ? from : to);
|
remove_piece(Do ? from : to);
|
||||||
remove_piece(Do ? rfrom : rto);
|
remove_piece(Do ? rfrom : rto);
|
||||||
|
@ -956,7 +997,14 @@ void Position::do_null_move(StateInfo& newSt) {
|
||||||
assert(!checkers());
|
assert(!checkers());
|
||||||
assert(&newSt != st);
|
assert(&newSt != st);
|
||||||
|
|
||||||
std::memcpy(&newSt, st, sizeof(StateInfo));
|
if (Eval::useNNUE)
|
||||||
|
{
|
||||||
|
std::memcpy(&newSt, st, sizeof(StateInfo));
|
||||||
|
st->accumulator.computed_score = false;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
std::memcpy(&newSt, st, offsetof(StateInfo, accumulator));
|
||||||
|
|
||||||
newSt.previous = st;
|
newSt.previous = st;
|
||||||
st = &newSt;
|
st = &newSt;
|
||||||
|
|
||||||
|
@ -1048,8 +1096,8 @@ bool Position::see_ge(Move m, Value threshold) const {
|
||||||
|
|
||||||
// Don't allow pinned pieces to attack (except the king) as long as
|
// Don't allow pinned pieces to attack (except the king) as long as
|
||||||
// there are pinners on their original square.
|
// there are pinners on their original square.
|
||||||
if (st->pinners[~stm] & occupied)
|
if (pinners(~stm) & occupied)
|
||||||
stmAttackers &= ~st->blockersForKing[stm];
|
stmAttackers &= ~blockers_for_king(stm);
|
||||||
|
|
||||||
if (!stmAttackers)
|
if (!stmAttackers)
|
||||||
break;
|
break;
|
||||||
|
@ -1112,6 +1160,7 @@ bool Position::see_ge(Move m, Value threshold) const {
|
||||||
return bool(res);
|
return bool(res);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/// Position::is_draw() tests whether the position is drawn by 50-move rule
|
/// Position::is_draw() tests whether the position is drawn by 50-move rule
|
||||||
/// or by repetition. It does not detect stalemates.
|
/// or by repetition. It does not detect stalemates.
|
||||||
|
|
||||||
|
|
|
@ -1,8 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
||||||
Copyright (C) 2004-2008 Tord Romstad (Glaurung author)
|
Copyright (C) 2004-2020 The Stockfish developers (see AUTHORS file)
|
||||||
Copyright (C) 2008-2015 Marco Costalba, Joona Kiiski, Tord Romstad
|
|
||||||
Copyright (C) 2015-2020 Marco Costalba, Joona Kiiski, Gary Linscott, Tord Romstad
|
|
||||||
|
|
||||||
Stockfish is free software: you can redistribute it and/or modify
|
Stockfish is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
@ -27,8 +25,11 @@
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|
||||||
#include "bitboard.h"
|
#include "bitboard.h"
|
||||||
|
#include "evaluate.h"
|
||||||
#include "types.h"
|
#include "types.h"
|
||||||
|
|
||||||
|
#include "nnue/nnue_accumulator.h"
|
||||||
|
|
||||||
|
|
||||||
/// StateInfo struct stores information needed to restore a Position object to
|
/// StateInfo struct stores information needed to restore a Position object to
|
||||||
/// its previous state when we retract a move. Whenever a move is made on the
|
/// its previous state when we retract a move. Whenever a move is made on the
|
||||||
|
@ -54,8 +55,13 @@ struct StateInfo {
|
||||||
Bitboard pinners[COLOR_NB];
|
Bitboard pinners[COLOR_NB];
|
||||||
Bitboard checkSquares[PIECE_TYPE_NB];
|
Bitboard checkSquares[PIECE_TYPE_NB];
|
||||||
int repetition;
|
int repetition;
|
||||||
|
|
||||||
|
// Used by NNUE
|
||||||
|
Eval::NNUE::Accumulator accumulator;
|
||||||
|
DirtyPiece dirtyPiece;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
/// A list to keep track of the position states along the setup moves (from the
|
/// A list to keep track of the position states along the setup moves (from the
|
||||||
/// start position to the position just before the search starts). Needed by
|
/// start position to the position just before the search starts). Needed by
|
||||||
/// 'draw by repetition' detection. Use a std::deque because pointers to
|
/// 'draw by repetition' detection. Use a std::deque because pointers to
|
||||||
|
@ -107,6 +113,7 @@ public:
|
||||||
Bitboard checkers() const;
|
Bitboard checkers() const;
|
||||||
Bitboard blockers_for_king(Color c) const;
|
Bitboard blockers_for_king(Color c) const;
|
||||||
Bitboard check_squares(PieceType pt) const;
|
Bitboard check_squares(PieceType pt) const;
|
||||||
|
Bitboard pinners(Color c) const;
|
||||||
bool is_discovery_check_on_king(Color c, Move m) const;
|
bool is_discovery_check_on_king(Color c, Move m) const;
|
||||||
|
|
||||||
// Attacks to/from a given square
|
// Attacks to/from a given square
|
||||||
|
@ -162,6 +169,9 @@ public:
|
||||||
bool pos_is_ok() const;
|
bool pos_is_ok() const;
|
||||||
void flip();
|
void flip();
|
||||||
|
|
||||||
|
// Used by NNUE
|
||||||
|
StateInfo* state() const;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
// Initialization helpers (used while setting up a position)
|
// Initialization helpers (used while setting up a position)
|
||||||
void set_castling_right(Color c, Square rfrom);
|
void set_castling_right(Color c, Square rfrom);
|
||||||
|
@ -293,6 +303,10 @@ inline Bitboard Position::blockers_for_king(Color c) const {
|
||||||
return st->blockersForKing[c];
|
return st->blockersForKing[c];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
inline Bitboard Position::pinners(Color c) const {
|
||||||
|
return st->pinners[c];
|
||||||
|
}
|
||||||
|
|
||||||
inline Bitboard Position::check_squares(PieceType pt) const {
|
inline Bitboard Position::check_squares(PieceType pt) const {
|
||||||
return st->checkSquares[pt];
|
return st->checkSquares[pt];
|
||||||
}
|
}
|
||||||
|
@ -425,4 +439,9 @@ inline void Position::do_move(Move m, StateInfo& newSt) {
|
||||||
do_move(m, newSt, gives_check(m));
|
do_move(m, newSt, gives_check(m));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
inline StateInfo* Position::state() const {
|
||||||
|
|
||||||
|
return st;
|
||||||
|
}
|
||||||
|
|
||||||
#endif // #ifndef POSITION_H_INCLUDED
|
#endif // #ifndef POSITION_H_INCLUDED
|
||||||
|
|
|
@ -1,8 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
||||||
Copyright (C) 2004-2008 Tord Romstad (Glaurung author)
|
Copyright (C) 2004-2020 The Stockfish developers (see AUTHORS file)
|
||||||
Copyright (C) 2008-2015 Marco Costalba, Joona Kiiski, Tord Romstad
|
|
||||||
Copyright (C) 2015-2020 Marco Costalba, Joona Kiiski, Gary Linscott, Tord Romstad
|
|
||||||
|
|
||||||
Stockfish is free software: you can redistribute it and/or modify
|
Stockfish is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
@ -92,7 +90,7 @@ constexpr Score PBonus[RANK_NB][FILE_NB] =
|
||||||
{ S( 3,-10), S( 3, -6), S( 10, 10), S( 19, 0), S( 16, 14), S( 19, 7), S( 7, -5), S( -5,-19) },
|
{ S( 3,-10), S( 3, -6), S( 10, 10), S( 19, 0), S( 16, 14), S( 19, 7), S( 7, -5), S( -5,-19) },
|
||||||
{ S( -9,-10), S(-15,-10), S( 11,-10), S( 15, 4), S( 32, 4), S( 22, 3), S( 5, -6), S(-22, -4) },
|
{ S( -9,-10), S(-15,-10), S( 11,-10), S( 15, 4), S( 32, 4), S( 22, 3), S( 5, -6), S(-22, -4) },
|
||||||
{ S( -4, 6), S(-23, -2), S( 6, -8), S( 20, -4), S( 40,-13), S( 17,-12), S( 4,-10), S( -8, -9) },
|
{ S( -4, 6), S(-23, -2), S( 6, -8), S( 20, -4), S( 40,-13), S( 17,-12), S( 4,-10), S( -8, -9) },
|
||||||
{ S( 13, 9), S( 0, 4), S(-13, 3), S( 1,-12), S( 11,-12), S( -2, -6), S(-13, 13), S( 5, 8) },
|
{ S( 13, 10), S( 0, 5), S(-13, 4), S( 1, -5), S( 11, -5), S( -2, -5), S(-13, 14), S( 5, 9) },
|
||||||
{ S( 5, 28), S(-12, 20), S( -7, 21), S( 22, 28), S( -8, 30), S( -5, 7), S(-15, 6), S( -8, 13) },
|
{ S( 5, 28), S(-12, 20), S( -7, 21), S( 22, 28), S( -8, 30), S( -5, 7), S(-15, 6), S( -8, 13) },
|
||||||
{ S( -7, 0), S( 7,-11), S( -3, 12), S(-13, 21), S( 5, 25), S(-16, 19), S( 10, 4), S( -8, 7) }
|
{ S( -7, 0), S( 7,-11), S( -3, 12), S(-13, 21), S( 5, 25), S(-16, 19), S( 10, 4), S( -8, 7) }
|
||||||
};
|
};
|
||||||
|
@ -101,20 +99,21 @@ constexpr Score PBonus[RANK_NB][FILE_NB] =
|
||||||
|
|
||||||
Score psq[PIECE_NB][SQUARE_NB];
|
Score psq[PIECE_NB][SQUARE_NB];
|
||||||
|
|
||||||
// init() initializes piece-square tables: the white halves of the tables are
|
|
||||||
// copied from Bonus[] adding the piece value, then the black halves of the
|
// PSQT::init() initializes piece-square tables: the white halves of the tables are
|
||||||
// tables are initialized by flipping and changing the sign of the white scores.
|
// copied from Bonus[] and PBonus[], adding the piece value, then the black halves of
|
||||||
|
// the tables are initialized by flipping and changing the sign of the white scores.
|
||||||
void init() {
|
void init() {
|
||||||
|
|
||||||
for (Piece pc = W_PAWN; pc <= W_KING; ++pc)
|
for (Piece pc : {W_PAWN, W_KNIGHT, W_BISHOP, W_ROOK, W_QUEEN, W_KING})
|
||||||
{
|
{
|
||||||
Score score = make_score(PieceValue[MG][pc], PieceValue[EG][pc]);
|
Score score = make_score(PieceValue[MG][pc], PieceValue[EG][pc]);
|
||||||
|
|
||||||
for (Square s = SQ_A1; s <= SQ_H8; ++s)
|
for (Square s = SQ_A1; s <= SQ_H8; ++s)
|
||||||
{
|
{
|
||||||
File f = File(edge_distance(file_of(s)));
|
File f = File(edge_distance(file_of(s)));
|
||||||
psq[ pc][ s] = score + (type_of(pc) == PAWN ? PBonus[rank_of(s)][file_of(s)]
|
psq[ pc][s] = score + (type_of(pc) == PAWN ? PBonus[rank_of(s)][file_of(s)]
|
||||||
: Bonus[pc][rank_of(s)][f]);
|
: Bonus[pc][rank_of(s)][f]);
|
||||||
psq[~pc][flip_rank(s)] = -psq[pc][s];
|
psq[~pc][flip_rank(s)] = -psq[pc][s];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,8 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
||||||
Copyright (C) 2004-2008 Tord Romstad (Glaurung author)
|
Copyright (C) 2004-2020 The Stockfish developers (see AUTHORS file)
|
||||||
Copyright (C) 2008-2015 Marco Costalba, Joona Kiiski, Tord Romstad
|
|
||||||
Copyright (C) 2015-2020 Marco Costalba, Joona Kiiski, Gary Linscott, Tord Romstad
|
|
||||||
|
|
||||||
Stockfish is free software: you can redistribute it and/or modify
|
Stockfish is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
@ -65,9 +63,9 @@ namespace {
|
||||||
constexpr uint64_t TtHitAverageResolution = 1024;
|
constexpr uint64_t TtHitAverageResolution = 1024;
|
||||||
|
|
||||||
// Razor and futility margins
|
// Razor and futility margins
|
||||||
constexpr int RazorMargin = 527;
|
constexpr int RazorMargin = 510;
|
||||||
Value futility_margin(Depth d, bool improving) {
|
Value futility_margin(Depth d, bool improving) {
|
||||||
return Value(227 * (d - improving));
|
return Value(223 * (d - improving));
|
||||||
}
|
}
|
||||||
|
|
||||||
// Reductions lookup table, initialized at startup
|
// Reductions lookup table, initialized at startup
|
||||||
|
@ -75,7 +73,7 @@ namespace {
|
||||||
|
|
||||||
Depth reduction(bool i, Depth d, int mn) {
|
Depth reduction(bool i, Depth d, int mn) {
|
||||||
int r = Reductions[d] * Reductions[mn];
|
int r = Reductions[d] * Reductions[mn];
|
||||||
return (r + 570) / 1024 + (!i && r > 1018);
|
return (r + 509) / 1024 + (!i && r > 894);
|
||||||
}
|
}
|
||||||
|
|
||||||
constexpr int futility_move_count(bool improving, Depth depth) {
|
constexpr int futility_move_count(bool improving, Depth depth) {
|
||||||
|
@ -84,7 +82,7 @@ namespace {
|
||||||
|
|
||||||
// History and stats update bonus, based on depth
|
// History and stats update bonus, based on depth
|
||||||
int stat_bonus(Depth d) {
|
int stat_bonus(Depth d) {
|
||||||
return d > 15 ? 27 : 17 * d * d + 133 * d - 134;
|
return d > 13 ? 29 : 17 * d * d + 134 * d - 134;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Add a small random component to draw evaluations to avoid 3fold-blindness
|
// Add a small random component to draw evaluations to avoid 3fold-blindness
|
||||||
|
@ -194,7 +192,7 @@ namespace {
|
||||||
void Search::init() {
|
void Search::init() {
|
||||||
|
|
||||||
for (int i = 1; i < MAX_MOVES; ++i)
|
for (int i = 1; i < MAX_MOVES; ++i)
|
||||||
Reductions[i] = int((24.8 + std::log(Threads.size())) * std::log(i));
|
Reductions[i] = int((22.0 + std::log(Threads.size())) * std::log(i));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -227,6 +225,8 @@ void MainThread::search() {
|
||||||
Time.init(Limits, us, rootPos.game_ply());
|
Time.init(Limits, us, rootPos.game_ply());
|
||||||
TT.new_search();
|
TT.new_search();
|
||||||
|
|
||||||
|
Eval::verify_NNUE();
|
||||||
|
|
||||||
if (rootMoves.empty())
|
if (rootMoves.empty())
|
||||||
{
|
{
|
||||||
rootMoves.emplace_back(MOVE_NONE);
|
rootMoves.emplace_back(MOVE_NONE);
|
||||||
|
@ -263,10 +263,10 @@ void MainThread::search() {
|
||||||
|
|
||||||
Thread* bestThread = this;
|
Thread* bestThread = this;
|
||||||
|
|
||||||
if (int(Options["MultiPV"]) == 1 &&
|
if ( int(Options["MultiPV"]) == 1
|
||||||
!Limits.depth &&
|
&& !Limits.depth
|
||||||
!(Skill(Options["Skill Level"]).enabled() || int(Options["UCI_LimitStrength"])) &&
|
&& !(Skill(Options["Skill Level"]).enabled() || int(Options["UCI_LimitStrength"]))
|
||||||
rootMoves[0].pv[0] != MOVE_NONE)
|
&& rootMoves[0].pv[0] != MOVE_NONE)
|
||||||
bestThread = Threads.get_best_thread();
|
bestThread = Threads.get_best_thread();
|
||||||
|
|
||||||
bestPreviousScore = bestThread->rootMoves[0].score;
|
bestPreviousScore = bestThread->rootMoves[0].score;
|
||||||
|
@ -335,7 +335,7 @@ void Thread::search() {
|
||||||
// for match (TC 60+0.6) results spanning a wide range of k values.
|
// for match (TC 60+0.6) results spanning a wide range of k values.
|
||||||
PRNG rng(now());
|
PRNG rng(now());
|
||||||
double floatLevel = Options["UCI_LimitStrength"] ?
|
double floatLevel = Options["UCI_LimitStrength"] ?
|
||||||
Utility::clamp(std::pow((Options["UCI_Elo"] - 1346.6) / 143.4, 1 / 0.806), 0.0, 20.0) :
|
std::clamp(std::pow((Options["UCI_Elo"] - 1346.6) / 143.4, 1 / 0.806), 0.0, 20.0) :
|
||||||
double(Options["Skill Level"]);
|
double(Options["Skill Level"]);
|
||||||
int intLevel = int(floatLevel) +
|
int intLevel = int(floatLevel) +
|
||||||
((floatLevel - int(floatLevel)) * 1024 > rng.rand<unsigned>() % 1024 ? 1 : 0);
|
((floatLevel - int(floatLevel)) * 1024 > rng.rand<unsigned>() % 1024 ? 1 : 0);
|
||||||
|
@ -403,12 +403,12 @@ void Thread::search() {
|
||||||
if (rootDepth >= 4)
|
if (rootDepth >= 4)
|
||||||
{
|
{
|
||||||
Value prev = rootMoves[pvIdx].previousScore;
|
Value prev = rootMoves[pvIdx].previousScore;
|
||||||
delta = Value(19);
|
delta = Value(17);
|
||||||
alpha = std::max(prev - delta,-VALUE_INFINITE);
|
alpha = std::max(prev - delta,-VALUE_INFINITE);
|
||||||
beta = std::min(prev + delta, VALUE_INFINITE);
|
beta = std::min(prev + delta, VALUE_INFINITE);
|
||||||
|
|
||||||
// Adjust contempt based on root move's previousScore (dynamic contempt)
|
// Adjust contempt based on root move's previousScore (dynamic contempt)
|
||||||
int dct = ct + (110 - ct / 2) * prev / (abs(prev) + 140);
|
int dct = ct + (105 - ct / 2) * prev / (abs(prev) + 149);
|
||||||
|
|
||||||
contempt = (us == WHITE ? make_score(dct, dct / 2)
|
contempt = (us == WHITE ? make_score(dct, dct / 2)
|
||||||
: -make_score(dct, dct / 2));
|
: -make_score(dct, dct / 2));
|
||||||
|
@ -506,13 +506,13 @@ void Thread::search() {
|
||||||
&& !Threads.stop
|
&& !Threads.stop
|
||||||
&& !mainThread->stopOnPonderhit)
|
&& !mainThread->stopOnPonderhit)
|
||||||
{
|
{
|
||||||
double fallingEval = (296 + 6 * (mainThread->bestPreviousScore - bestValue)
|
double fallingEval = (318 + 6 * (mainThread->bestPreviousScore - bestValue)
|
||||||
+ 6 * (mainThread->iterValue[iterIdx] - bestValue)) / 725.0;
|
+ 6 * (mainThread->iterValue[iterIdx] - bestValue)) / 825.0;
|
||||||
fallingEval = Utility::clamp(fallingEval, 0.5, 1.5);
|
fallingEval = std::clamp(fallingEval, 0.5, 1.5);
|
||||||
|
|
||||||
// If the bestMove is stable over several iterations, reduce time accordingly
|
// If the bestMove is stable over several iterations, reduce time accordingly
|
||||||
timeReduction = lastBestMoveDepth + 10 < completedDepth ? 1.92 : 0.95;
|
timeReduction = lastBestMoveDepth + 9 < completedDepth ? 1.92 : 0.95;
|
||||||
double reduction = (1.47 + mainThread->previousTimeReduction) / (2.22 * timeReduction);
|
double reduction = (1.47 + mainThread->previousTimeReduction) / (2.32 * timeReduction);
|
||||||
|
|
||||||
// Use part of the gained time from a previous stable move for the current move
|
// Use part of the gained time from a previous stable move for the current move
|
||||||
for (Thread* th : Threads)
|
for (Thread* th : Threads)
|
||||||
|
@ -525,7 +525,7 @@ void Thread::search() {
|
||||||
double totalTime = rootMoves.size() == 1 ? 0 :
|
double totalTime = rootMoves.size() == 1 ? 0 :
|
||||||
Time.optimum() * fallingEval * reduction * bestMoveInstability;
|
Time.optimum() * fallingEval * reduction * bestMoveInstability;
|
||||||
|
|
||||||
// Stop the search if we have exceeded the totalTime, at least 1ms search.
|
// Stop the search if we have exceeded the totalTime, at least 1ms search
|
||||||
if (Time.elapsed() > totalTime)
|
if (Time.elapsed() > totalTime)
|
||||||
{
|
{
|
||||||
// If we are allowed to ponder do not stop the search now but
|
// If we are allowed to ponder do not stop the search now but
|
||||||
|
@ -537,7 +537,7 @@ void Thread::search() {
|
||||||
}
|
}
|
||||||
else if ( Threads.increaseDepth
|
else if ( Threads.increaseDepth
|
||||||
&& !mainThread->ponder
|
&& !mainThread->ponder
|
||||||
&& Time.elapsed() > totalTime * 0.56)
|
&& Time.elapsed() > totalTime * 0.58)
|
||||||
Threads.increaseDepth = false;
|
Threads.increaseDepth = false;
|
||||||
else
|
else
|
||||||
Threads.increaseDepth = true;
|
Threads.increaseDepth = true;
|
||||||
|
@ -596,8 +596,8 @@ namespace {
|
||||||
Key posKey;
|
Key posKey;
|
||||||
Move ttMove, move, excludedMove, bestMove;
|
Move ttMove, move, excludedMove, bestMove;
|
||||||
Depth extension, newDepth;
|
Depth extension, newDepth;
|
||||||
Value bestValue, value, ttValue, eval, maxValue;
|
Value bestValue, value, ttValue, eval, maxValue, probCutBeta;
|
||||||
bool ttHit, ttPv, formerPv, givesCheck, improving, didLMR, priorCapture;
|
bool ttHit, formerPv, givesCheck, improving, didLMR, priorCapture;
|
||||||
bool captureOrPromotion, doFullDepthSearch, moveCountPruning,
|
bool captureOrPromotion, doFullDepthSearch, moveCountPruning,
|
||||||
ttCapture, singularQuietLMR;
|
ttCapture, singularQuietLMR;
|
||||||
Piece movedPiece;
|
Piece movedPiece;
|
||||||
|
@ -627,7 +627,7 @@ namespace {
|
||||||
|| pos.is_draw(ss->ply)
|
|| pos.is_draw(ss->ply)
|
||||||
|| ss->ply >= MAX_PLY)
|
|| ss->ply >= MAX_PLY)
|
||||||
return (ss->ply >= MAX_PLY && !ss->inCheck) ? evaluate(pos)
|
return (ss->ply >= MAX_PLY && !ss->inCheck) ? evaluate(pos)
|
||||||
: value_draw(pos.this_thread());
|
: value_draw(pos.this_thread());
|
||||||
|
|
||||||
// Step 3. Mate distance pruning. Even if we mate at the next move our score
|
// Step 3. Mate distance pruning. Even if we mate at the next move our score
|
||||||
// would be at best mate_in(ss->ply+1), but if alpha is already bigger because
|
// would be at best mate_in(ss->ply+1), but if alpha is already bigger because
|
||||||
|
@ -644,6 +644,7 @@ namespace {
|
||||||
assert(0 <= ss->ply && ss->ply < MAX_PLY);
|
assert(0 <= ss->ply && ss->ply < MAX_PLY);
|
||||||
|
|
||||||
(ss+1)->ply = ss->ply + 1;
|
(ss+1)->ply = ss->ply + 1;
|
||||||
|
(ss+1)->ttPv = false;
|
||||||
(ss+1)->excludedMove = bestMove = MOVE_NONE;
|
(ss+1)->excludedMove = bestMove = MOVE_NONE;
|
||||||
(ss+2)->killers[0] = (ss+2)->killers[1] = MOVE_NONE;
|
(ss+2)->killers[0] = (ss+2)->killers[1] = MOVE_NONE;
|
||||||
Square prevSq = to_sq((ss-1)->currentMove);
|
Square prevSq = to_sq((ss-1)->currentMove);
|
||||||
|
@ -662,15 +663,20 @@ namespace {
|
||||||
// search to overwrite a previous full search TT value, so we use a different
|
// search to overwrite a previous full search TT value, so we use a different
|
||||||
// position key in case of an excluded move.
|
// position key in case of an excluded move.
|
||||||
excludedMove = ss->excludedMove;
|
excludedMove = ss->excludedMove;
|
||||||
posKey = pos.key() ^ (Key(excludedMove) << 48); // Isn't a very good hash
|
posKey = excludedMove == MOVE_NONE ? pos.key() : pos.key() ^ make_key(excludedMove);
|
||||||
tte = TT.probe(posKey, ttHit);
|
tte = TT.probe(posKey, ttHit);
|
||||||
ttValue = ttHit ? value_from_tt(tte->value(), ss->ply, pos.rule50_count()) : VALUE_NONE;
|
ttValue = ttHit ? value_from_tt(tte->value(), ss->ply, pos.rule50_count()) : VALUE_NONE;
|
||||||
ttMove = rootNode ? thisThread->rootMoves[thisThread->pvIdx].pv[0]
|
ttMove = rootNode ? thisThread->rootMoves[thisThread->pvIdx].pv[0]
|
||||||
: ttHit ? tte->move() : MOVE_NONE;
|
: ttHit ? tte->move() : MOVE_NONE;
|
||||||
ttPv = PvNode || (ttHit && tte->is_pv());
|
if (!excludedMove)
|
||||||
formerPv = ttPv && !PvNode;
|
ss->ttPv = PvNode || (ttHit && tte->is_pv());
|
||||||
|
formerPv = ss->ttPv && !PvNode;
|
||||||
|
|
||||||
if (ttPv && depth > 12 && ss->ply - 1 < MAX_LPH && !pos.captured_piece() && is_ok((ss-1)->currentMove))
|
if ( ss->ttPv
|
||||||
|
&& depth > 12
|
||||||
|
&& ss->ply - 1 < MAX_LPH
|
||||||
|
&& !priorCapture
|
||||||
|
&& is_ok((ss-1)->currentMove))
|
||||||
thisThread->lowPlyHistory[ss->ply - 1][from_to((ss-1)->currentMove)] << stat_bonus(depth - 5);
|
thisThread->lowPlyHistory[ss->ply - 1][from_to((ss-1)->currentMove)] << stat_bonus(depth - 5);
|
||||||
|
|
||||||
// thisThread->ttHitAverage can be used to approximate the running average of ttHit
|
// thisThread->ttHitAverage can be used to approximate the running average of ttHit
|
||||||
|
@ -744,7 +750,7 @@ namespace {
|
||||||
if ( b == BOUND_EXACT
|
if ( b == BOUND_EXACT
|
||||||
|| (b == BOUND_LOWER ? value >= beta : value <= alpha))
|
|| (b == BOUND_LOWER ? value >= beta : value <= alpha))
|
||||||
{
|
{
|
||||||
tte->save(posKey, value_to_tt(value, ss->ply), ttPv, b,
|
tte->save(posKey, value_to_tt(value, ss->ply), ss->ttPv, b,
|
||||||
std::min(MAX_PLY - 1, depth + 6),
|
std::min(MAX_PLY - 1, depth + 6),
|
||||||
MOVE_NONE, VALUE_NONE);
|
MOVE_NONE, VALUE_NONE);
|
||||||
|
|
||||||
|
@ -767,9 +773,10 @@ namespace {
|
||||||
// Step 6. Static evaluation of the position
|
// Step 6. Static evaluation of the position
|
||||||
if (ss->inCheck)
|
if (ss->inCheck)
|
||||||
{
|
{
|
||||||
|
// Skip early pruning when in check
|
||||||
ss->staticEval = eval = VALUE_NONE;
|
ss->staticEval = eval = VALUE_NONE;
|
||||||
improving = false;
|
improving = false;
|
||||||
goto moves_loop; // Skip early pruning when in check
|
goto moves_loop;
|
||||||
}
|
}
|
||||||
else if (ttHit)
|
else if (ttHit)
|
||||||
{
|
{
|
||||||
|
@ -789,15 +796,11 @@ namespace {
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
if ((ss-1)->currentMove != MOVE_NULL)
|
if ((ss-1)->currentMove != MOVE_NULL)
|
||||||
{
|
ss->staticEval = eval = evaluate(pos);
|
||||||
int bonus = -(ss-1)->statScore / 512;
|
|
||||||
|
|
||||||
ss->staticEval = eval = evaluate(pos) + bonus;
|
|
||||||
}
|
|
||||||
else
|
else
|
||||||
ss->staticEval = eval = -(ss-1)->staticEval + 2 * Tempo;
|
ss->staticEval = eval = -(ss-1)->staticEval + 2 * Tempo;
|
||||||
|
|
||||||
tte->save(posKey, VALUE_NONE, ttPv, BOUND_NONE, DEPTH_NONE, MOVE_NONE, eval);
|
tte->save(posKey, VALUE_NONE, ss->ttPv, BOUND_NONE, DEPTH_NONE, MOVE_NONE, eval);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Step 7. Razoring (~1 Elo)
|
// Step 7. Razoring (~1 Elo)
|
||||||
|
@ -806,12 +809,13 @@ namespace {
|
||||||
&& eval <= alpha - RazorMargin)
|
&& eval <= alpha - RazorMargin)
|
||||||
return qsearch<NT>(pos, ss, alpha, beta);
|
return qsearch<NT>(pos, ss, alpha, beta);
|
||||||
|
|
||||||
improving = (ss-2)->staticEval == VALUE_NONE ? (ss->staticEval > (ss-4)->staticEval
|
improving = (ss-2)->staticEval == VALUE_NONE
|
||||||
|| (ss-4)->staticEval == VALUE_NONE) : ss->staticEval > (ss-2)->staticEval;
|
? ss->staticEval > (ss-4)->staticEval || (ss-4)->staticEval == VALUE_NONE
|
||||||
|
: ss->staticEval > (ss-2)->staticEval;
|
||||||
|
|
||||||
// Step 8. Futility pruning: child node (~50 Elo)
|
// Step 8. Futility pruning: child node (~50 Elo)
|
||||||
if ( !PvNode
|
if ( !PvNode
|
||||||
&& depth < 6
|
&& depth < 8
|
||||||
&& eval - futility_margin(depth, improving) >= beta
|
&& eval - futility_margin(depth, improving) >= beta
|
||||||
&& eval < VALUE_KNOWN_WIN) // Do not return unproven wins
|
&& eval < VALUE_KNOWN_WIN) // Do not return unproven wins
|
||||||
return eval;
|
return eval;
|
||||||
|
@ -819,10 +823,10 @@ namespace {
|
||||||
// Step 9. Null move search with verification search (~40 Elo)
|
// Step 9. Null move search with verification search (~40 Elo)
|
||||||
if ( !PvNode
|
if ( !PvNode
|
||||||
&& (ss-1)->currentMove != MOVE_NULL
|
&& (ss-1)->currentMove != MOVE_NULL
|
||||||
&& (ss-1)->statScore < 23824
|
&& (ss-1)->statScore < 22977
|
||||||
&& eval >= beta
|
&& eval >= beta
|
||||||
&& eval >= ss->staticEval
|
&& eval >= ss->staticEval
|
||||||
&& ss->staticEval >= beta - 33 * depth - 33 * improving + 112 * ttPv + 311
|
&& ss->staticEval >= beta - 30 * depth - 28 * improving + 84 * ss->ttPv + 182
|
||||||
&& !excludedMove
|
&& !excludedMove
|
||||||
&& pos.non_pawn_material(us)
|
&& pos.non_pawn_material(us)
|
||||||
&& (ss->ply >= thisThread->nmpMinPly || us != thisThread->nmpColor))
|
&& (ss->ply >= thisThread->nmpMinPly || us != thisThread->nmpColor))
|
||||||
|
@ -830,7 +834,7 @@ namespace {
|
||||||
assert(eval - beta >= 0);
|
assert(eval - beta >= 0);
|
||||||
|
|
||||||
// Null move dynamic reduction based on depth and value
|
// Null move dynamic reduction based on depth and value
|
||||||
Depth R = (737 + 77 * depth) / 246 + std::min(int(eval - beta) / 192, 3);
|
Depth R = (817 + 71 * depth) / 213 + std::min(int(eval - beta) / 192, 3);
|
||||||
|
|
||||||
ss->currentMove = MOVE_NULL;
|
ss->currentMove = MOVE_NULL;
|
||||||
ss->continuationHistory = &thisThread->continuationHistory[0][0][NO_PIECE][0];
|
ss->continuationHistory = &thisThread->continuationHistory[0][0][NO_PIECE][0];
|
||||||
|
@ -866,23 +870,41 @@ namespace {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
probCutBeta = beta + 176 - 49 * improving;
|
||||||
|
|
||||||
// Step 10. ProbCut (~10 Elo)
|
// Step 10. ProbCut (~10 Elo)
|
||||||
// If we have a good enough capture and a reduced search returns a value
|
// If we have a good enough capture and a reduced search returns a value
|
||||||
// much above beta, we can (almost) safely prune the previous move.
|
// much above beta, we can (almost) safely prune the previous move.
|
||||||
if ( !PvNode
|
if ( !PvNode
|
||||||
&& depth > 4
|
&& depth > 4
|
||||||
&& abs(beta) < VALUE_TB_WIN_IN_MAX_PLY)
|
&& abs(beta) < VALUE_TB_WIN_IN_MAX_PLY
|
||||||
|
// if value from transposition table is lower than probCutBeta, don't attempt probCut
|
||||||
|
// there and in further interactions with transposition table cutoff depth is set to depth - 3
|
||||||
|
// because probCut search has depth set to depth - 4 but we also do a move before it
|
||||||
|
// so effective depth is equal to depth - 3
|
||||||
|
&& !( ttHit
|
||||||
|
&& tte->depth() >= depth - 3
|
||||||
|
&& ttValue != VALUE_NONE
|
||||||
|
&& ttValue < probCutBeta))
|
||||||
{
|
{
|
||||||
Value raisedBeta = beta + 176 - 49 * improving;
|
// if ttMove is a capture and value from transposition table is good enough produce probCut
|
||||||
assert(raisedBeta < VALUE_INFINITE);
|
// cutoff without digging into actual probCut search
|
||||||
MovePicker mp(pos, ttMove, raisedBeta - ss->staticEval, &captureHistory);
|
if ( ttHit
|
||||||
|
&& tte->depth() >= depth - 3
|
||||||
|
&& ttValue != VALUE_NONE
|
||||||
|
&& ttValue >= probCutBeta
|
||||||
|
&& ttMove
|
||||||
|
&& pos.capture_or_promotion(ttMove))
|
||||||
|
return probCutBeta;
|
||||||
|
|
||||||
|
assert(probCutBeta < VALUE_INFINITE);
|
||||||
|
MovePicker mp(pos, ttMove, probCutBeta - ss->staticEval, &captureHistory);
|
||||||
int probCutCount = 0;
|
int probCutCount = 0;
|
||||||
|
bool ttPv = ss->ttPv;
|
||||||
|
ss->ttPv = false;
|
||||||
|
|
||||||
while ( (move = mp.next_move()) != MOVE_NONE
|
while ( (move = mp.next_move()) != MOVE_NONE
|
||||||
&& probCutCount < 2 + 2 * cutNode
|
&& probCutCount < 2 + 2 * cutNode)
|
||||||
&& !( move == ttMove
|
|
||||||
&& tte->depth() >= depth - 4
|
|
||||||
&& ttValue < raisedBeta))
|
|
||||||
if (move != excludedMove && pos.legal(move))
|
if (move != excludedMove && pos.legal(move))
|
||||||
{
|
{
|
||||||
assert(pos.capture_or_promotion(move));
|
assert(pos.capture_or_promotion(move));
|
||||||
|
@ -900,28 +922,34 @@ namespace {
|
||||||
pos.do_move(move, st);
|
pos.do_move(move, st);
|
||||||
|
|
||||||
// Perform a preliminary qsearch to verify that the move holds
|
// Perform a preliminary qsearch to verify that the move holds
|
||||||
value = -qsearch<NonPV>(pos, ss+1, -raisedBeta, -raisedBeta+1);
|
value = -qsearch<NonPV>(pos, ss+1, -probCutBeta, -probCutBeta+1);
|
||||||
|
|
||||||
// If the qsearch held, perform the regular search
|
// If the qsearch held, perform the regular search
|
||||||
if (value >= raisedBeta)
|
if (value >= probCutBeta)
|
||||||
value = -search<NonPV>(pos, ss+1, -raisedBeta, -raisedBeta+1, depth - 4, !cutNode);
|
value = -search<NonPV>(pos, ss+1, -probCutBeta, -probCutBeta+1, depth - 4, !cutNode);
|
||||||
|
|
||||||
pos.undo_move(move);
|
pos.undo_move(move);
|
||||||
|
|
||||||
if (value >= raisedBeta)
|
if (value >= probCutBeta)
|
||||||
|
{
|
||||||
|
// if transposition table doesn't have equal or more deep info write probCut data into it
|
||||||
|
if ( !(ttHit
|
||||||
|
&& tte->depth() >= depth - 3
|
||||||
|
&& ttValue != VALUE_NONE))
|
||||||
|
tte->save(posKey, value_to_tt(value, ss->ply), ttPv,
|
||||||
|
BOUND_LOWER,
|
||||||
|
depth - 3, move, ss->staticEval);
|
||||||
return value;
|
return value;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
ss->ttPv = ttPv;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Step 11. Internal iterative deepening (~1 Elo)
|
// Step 11. If the position is not in TT, decrease depth by 2
|
||||||
if (depth >= 7 && !ttMove)
|
if ( PvNode
|
||||||
{
|
&& depth >= 6
|
||||||
search<NT>(pos, ss, alpha, beta, depth - 7, cutNode);
|
&& !ttMove)
|
||||||
|
depth -= 2;
|
||||||
tte = TT.probe(posKey, ttHit);
|
|
||||||
ttValue = ttHit ? value_from_tt(tte->value(), ss->ply, pos.rule50_count()) : VALUE_NONE;
|
|
||||||
ttMove = ttHit ? tte->move() : MOVE_NONE;
|
|
||||||
}
|
|
||||||
|
|
||||||
moves_loop: // When in check, search starts from here
|
moves_loop: // When in check, search starts from here
|
||||||
|
|
||||||
|
@ -963,6 +991,10 @@ moves_loop: // When in check, search starts from here
|
||||||
thisThread->rootMoves.begin() + thisThread->pvLast, move))
|
thisThread->rootMoves.begin() + thisThread->pvLast, move))
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
|
// Check for legality
|
||||||
|
if (!rootNode && !pos.legal(move))
|
||||||
|
continue;
|
||||||
|
|
||||||
ss->moveCount = ++moveCount;
|
ss->moveCount = ++moveCount;
|
||||||
|
|
||||||
if (rootNode && thisThread == Threads.main() && Time.elapsed() > 3000)
|
if (rootNode && thisThread == Threads.main() && Time.elapsed() > 3000)
|
||||||
|
@ -1001,17 +1033,17 @@ moves_loop: // When in check, search starts from here
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
// Futility pruning: parent node (~5 Elo)
|
// Futility pruning: parent node (~5 Elo)
|
||||||
if ( lmrDepth < 6
|
if ( lmrDepth < 7
|
||||||
&& !ss->inCheck
|
&& !ss->inCheck
|
||||||
&& ss->staticEval + 284 + 188 * lmrDepth <= alpha
|
&& ss->staticEval + 283 + 170 * lmrDepth <= alpha
|
||||||
&& (*contHist[0])[movedPiece][to_sq(move)]
|
&& (*contHist[0])[movedPiece][to_sq(move)]
|
||||||
+ (*contHist[1])[movedPiece][to_sq(move)]
|
+ (*contHist[1])[movedPiece][to_sq(move)]
|
||||||
+ (*contHist[3])[movedPiece][to_sq(move)]
|
+ (*contHist[3])[movedPiece][to_sq(move)]
|
||||||
+ (*contHist[5])[movedPiece][to_sq(move)] / 2 < 28388)
|
+ (*contHist[5])[movedPiece][to_sq(move)] / 2 < 27376)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
// Prune moves with negative SEE (~20 Elo)
|
// Prune moves with negative SEE (~20 Elo)
|
||||||
if (!pos.see_ge(move, Value(-(29 - std::min(lmrDepth, 17)) * lmrDepth * lmrDepth)))
|
if (!pos.see_ge(move, Value(-(29 - std::min(lmrDepth, 18)) * lmrDepth * lmrDepth)))
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
@ -1026,12 +1058,14 @@ moves_loop: // When in check, search starts from here
|
||||||
if ( !givesCheck
|
if ( !givesCheck
|
||||||
&& lmrDepth < 6
|
&& lmrDepth < 6
|
||||||
&& !(PvNode && abs(bestValue) < 2)
|
&& !(PvNode && abs(bestValue) < 2)
|
||||||
|
&& PieceValue[MG][type_of(movedPiece)] >= PieceValue[MG][type_of(pos.piece_on(to_sq(move)))]
|
||||||
&& !ss->inCheck
|
&& !ss->inCheck
|
||||||
&& ss->staticEval + 267 + 391 * lmrDepth + PieceValue[MG][type_of(pos.piece_on(to_sq(move)))] <= alpha)
|
&& ss->staticEval + 169 + 244 * lmrDepth
|
||||||
|
+ PieceValue[MG][type_of(pos.piece_on(to_sq(move)))] <= alpha)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
// See based pruning
|
// See based pruning
|
||||||
if (!pos.see_ge(move, Value(-202) * depth)) // (~25 Elo)
|
if (!pos.see_ge(move, Value(-221) * depth)) // (~25 Elo)
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1042,16 +1076,15 @@ moves_loop: // When in check, search starts from here
|
||||||
// search of (alpha-s, beta-s), and just one fails high on (alpha, beta),
|
// search of (alpha-s, beta-s), and just one fails high on (alpha, beta),
|
||||||
// then that move is singular and should be extended. To verify this we do
|
// then that move is singular and should be extended. To verify this we do
|
||||||
// a reduced search on all the other moves but the ttMove and if the
|
// a reduced search on all the other moves but the ttMove and if the
|
||||||
// result is lower than ttValue minus a margin then we will extend the ttMove.
|
// result is lower than ttValue minus a margin, then we will extend the ttMove.
|
||||||
if ( depth >= 6
|
if ( depth >= 7
|
||||||
&& move == ttMove
|
&& move == ttMove
|
||||||
&& !rootNode
|
&& !rootNode
|
||||||
&& !excludedMove // Avoid recursive singular search
|
&& !excludedMove // Avoid recursive singular search
|
||||||
/* && ttValue != VALUE_NONE Already implicit in the next condition */
|
/* && ttValue != VALUE_NONE Already implicit in the next condition */
|
||||||
&& abs(ttValue) < VALUE_KNOWN_WIN
|
&& abs(ttValue) < VALUE_KNOWN_WIN
|
||||||
&& (tte->bound() & BOUND_LOWER)
|
&& (tte->bound() & BOUND_LOWER)
|
||||||
&& tte->depth() >= depth - 3
|
&& tte->depth() >= depth - 3)
|
||||||
&& pos.legal(move))
|
|
||||||
{
|
{
|
||||||
Value singularBeta = ttValue - ((formerPv + 4) * depth) / 2;
|
Value singularBeta = ttValue - ((formerPv + 4) * depth) / 2;
|
||||||
Depth singularDepth = (depth - 1 + 3 * formerPv) / 2;
|
Depth singularDepth = (depth - 1 + 3 * formerPv) / 2;
|
||||||
|
@ -1073,8 +1106,8 @@ moves_loop: // When in check, search starts from here
|
||||||
else if (singularBeta >= beta)
|
else if (singularBeta >= beta)
|
||||||
return singularBeta;
|
return singularBeta;
|
||||||
|
|
||||||
// If the eval of ttMove is greater than beta we try also if there is an other move that
|
// If the eval of ttMove is greater than beta we try also if there is another
|
||||||
// pushes it over beta, if so also produce a cutoff
|
// move that pushes it over beta, if so also produce a cutoff.
|
||||||
else if (ttValue >= beta)
|
else if (ttValue >= beta)
|
||||||
{
|
{
|
||||||
ss->excludedMove = move;
|
ss->excludedMove = move;
|
||||||
|
@ -1091,19 +1124,14 @@ moves_loop: // When in check, search starts from here
|
||||||
&& (pos.is_discovery_check_on_king(~us, move) || pos.see_ge(move)))
|
&& (pos.is_discovery_check_on_king(~us, move) || pos.see_ge(move)))
|
||||||
extension = 1;
|
extension = 1;
|
||||||
|
|
||||||
// Passed pawn extension
|
|
||||||
else if ( move == ss->killers[0]
|
|
||||||
&& pos.advanced_pawn_push(move)
|
|
||||||
&& pos.pawn_passed(us, to_sq(move)))
|
|
||||||
extension = 1;
|
|
||||||
|
|
||||||
// Last captures extension
|
// Last captures extension
|
||||||
else if ( PieceValue[EG][pos.captured_piece()] > PawnValueEg
|
else if ( PieceValue[EG][pos.captured_piece()] > PawnValueEg
|
||||||
&& pos.non_pawn_material() <= 2 * RookValueMg)
|
&& pos.non_pawn_material() <= 2 * RookValueMg)
|
||||||
extension = 1;
|
extension = 1;
|
||||||
|
|
||||||
// Castling extension
|
// Castling extension
|
||||||
if (type_of(move) == CASTLING)
|
if ( type_of(move) == CASTLING
|
||||||
|
&& popcount(pos.pieces(us) & ~pos.pieces(PAWN) & (to_sq(move) & KingSide ? KingSide : QueenSide)) <= 2)
|
||||||
extension = 1;
|
extension = 1;
|
||||||
|
|
||||||
// Late irreversible move extension
|
// Late irreversible move extension
|
||||||
|
@ -1118,13 +1146,6 @@ moves_loop: // When in check, search starts from here
|
||||||
// Speculative prefetch as early as possible
|
// Speculative prefetch as early as possible
|
||||||
prefetch(TT.first_entry(pos.key_after(move)));
|
prefetch(TT.first_entry(pos.key_after(move)));
|
||||||
|
|
||||||
// Check for legality just before making the move
|
|
||||||
if (!rootNode && !pos.legal(move))
|
|
||||||
{
|
|
||||||
ss->moveCount = --moveCount;
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Update the current move (this must be done after singular extension search)
|
// Update the current move (this must be done after singular extension search)
|
||||||
ss->currentMove = move;
|
ss->currentMove = move;
|
||||||
ss->continuationHistory = &thisThread->continuationHistory[ss->inCheck]
|
ss->continuationHistory = &thisThread->continuationHistory[ss->inCheck]
|
||||||
|
@ -1138,26 +1159,32 @@ moves_loop: // When in check, search starts from here
|
||||||
// Step 16. Reduced depth search (LMR, ~200 Elo). If the move fails high it will be
|
// Step 16. Reduced depth search (LMR, ~200 Elo). If the move fails high it will be
|
||||||
// re-searched at full depth.
|
// re-searched at full depth.
|
||||||
if ( depth >= 3
|
if ( depth >= 3
|
||||||
&& moveCount > 1 + 2 * rootNode
|
&& moveCount > 1 + 2 * rootNode + 2 * (PvNode && abs(bestValue) < 2)
|
||||||
&& (!rootNode || thisThread->best_move_count(move) == 0)
|
|
||||||
&& ( !captureOrPromotion
|
&& ( !captureOrPromotion
|
||||||
|| moveCountPruning
|
|| moveCountPruning
|
||||||
|| ss->staticEval + PieceValue[EG][pos.captured_piece()] <= alpha
|
|| ss->staticEval + PieceValue[EG][pos.captured_piece()] <= alpha
|
||||||
|| cutNode
|
|| cutNode
|
||||||
|| thisThread->ttHitAverage < 415 * TtHitAverageResolution * TtHitAverageWindow / 1024))
|
|| thisThread->ttHitAverage < 427 * TtHitAverageResolution * TtHitAverageWindow / 1024))
|
||||||
{
|
{
|
||||||
Depth r = reduction(improving, depth, moveCount);
|
Depth r = reduction(improving, depth, moveCount);
|
||||||
|
|
||||||
// Decrease reduction if the ttHit running average is large
|
// Decrease reduction at non-check cut nodes for second move at low depths
|
||||||
if (thisThread->ttHitAverage > 473 * TtHitAverageResolution * TtHitAverageWindow / 1024)
|
if ( cutNode
|
||||||
|
&& depth <= 10
|
||||||
|
&& moveCount <= 2
|
||||||
|
&& !ss->inCheck)
|
||||||
r--;
|
r--;
|
||||||
|
|
||||||
// Reduction if other threads are searching this position.
|
// Decrease reduction if the ttHit running average is large
|
||||||
|
if (thisThread->ttHitAverage > 509 * TtHitAverageResolution * TtHitAverageWindow / 1024)
|
||||||
|
r--;
|
||||||
|
|
||||||
|
// Reduction if other threads are searching this position
|
||||||
if (th.marked())
|
if (th.marked())
|
||||||
r++;
|
r++;
|
||||||
|
|
||||||
// Decrease reduction if position is or has been on the PV (~10 Elo)
|
// Decrease reduction if position is or has been on the PV (~10 Elo)
|
||||||
if (ttPv)
|
if (ss->ttPv)
|
||||||
r -= 2;
|
r -= 2;
|
||||||
|
|
||||||
if (moveCountPruning && !formerPv)
|
if (moveCountPruning && !formerPv)
|
||||||
|
@ -1186,23 +1213,23 @@ moves_loop: // When in check, search starts from here
|
||||||
// hence break make_move(). (~2 Elo)
|
// hence break make_move(). (~2 Elo)
|
||||||
else if ( type_of(move) == NORMAL
|
else if ( type_of(move) == NORMAL
|
||||||
&& !pos.see_ge(reverse_move(move)))
|
&& !pos.see_ge(reverse_move(move)))
|
||||||
r -= 2 + ttPv - (type_of(movedPiece) == PAWN);
|
r -= 2 + ss->ttPv - (type_of(movedPiece) == PAWN);
|
||||||
|
|
||||||
ss->statScore = thisThread->mainHistory[us][from_to(move)]
|
ss->statScore = thisThread->mainHistory[us][from_to(move)]
|
||||||
+ (*contHist[0])[movedPiece][to_sq(move)]
|
+ (*contHist[0])[movedPiece][to_sq(move)]
|
||||||
+ (*contHist[1])[movedPiece][to_sq(move)]
|
+ (*contHist[1])[movedPiece][to_sq(move)]
|
||||||
+ (*contHist[3])[movedPiece][to_sq(move)]
|
+ (*contHist[3])[movedPiece][to_sq(move)]
|
||||||
- 4826;
|
- 5287;
|
||||||
|
|
||||||
// Decrease/increase reduction by comparing opponent's stat score (~10 Elo)
|
// Decrease/increase reduction by comparing opponent's stat score (~10 Elo)
|
||||||
if (ss->statScore >= -100 && (ss-1)->statScore < -112)
|
if (ss->statScore >= -106 && (ss-1)->statScore < -104)
|
||||||
r--;
|
r--;
|
||||||
|
|
||||||
else if ((ss-1)->statScore >= -125 && ss->statScore < -138)
|
else if ((ss-1)->statScore >= -119 && ss->statScore < -140)
|
||||||
r++;
|
r++;
|
||||||
|
|
||||||
// Decrease/increase reduction for moves with a good/bad history (~30 Elo)
|
// Decrease/increase reduction for moves with a good/bad history (~30 Elo)
|
||||||
r -= ss->statScore / 14615;
|
r -= ss->statScore / 14884;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
@ -1212,11 +1239,11 @@ moves_loop: // When in check, search starts from here
|
||||||
|
|
||||||
// Unless giving check, this capture is likely bad
|
// Unless giving check, this capture is likely bad
|
||||||
if ( !givesCheck
|
if ( !givesCheck
|
||||||
&& ss->staticEval + PieceValue[EG][pos.captured_piece()] + 211 * depth <= alpha)
|
&& ss->staticEval + PieceValue[EG][pos.captured_piece()] + 213 * depth <= alpha)
|
||||||
r++;
|
r++;
|
||||||
}
|
}
|
||||||
|
|
||||||
Depth d = Utility::clamp(newDepth - r, 1, newDepth);
|
Depth d = std::clamp(newDepth - r, 1, newDepth);
|
||||||
|
|
||||||
value = -search<NonPV>(pos, ss+1, -(alpha+1), -alpha, d, true);
|
value = -search<NonPV>(pos, ss+1, -(alpha+1), -alpha, d, true);
|
||||||
|
|
||||||
|
@ -1289,7 +1316,7 @@ moves_loop: // When in check, search starts from here
|
||||||
rm.pv.push_back(*m);
|
rm.pv.push_back(*m);
|
||||||
|
|
||||||
// We record how often the best move has been changed in each
|
// We record how often the best move has been changed in each
|
||||||
// iteration. This information is used for time management: When
|
// iteration. This information is used for time management: when
|
||||||
// the best move changes frequently, we allocate some more time.
|
// the best move changes frequently, we allocate some more time.
|
||||||
if (moveCount > 1)
|
if (moveCount > 1)
|
||||||
++thisThread->bestMoveChanges;
|
++thisThread->bestMoveChanges;
|
||||||
|
@ -1364,8 +1391,17 @@ moves_loop: // When in check, search starts from here
|
||||||
if (PvNode)
|
if (PvNode)
|
||||||
bestValue = std::min(bestValue, maxValue);
|
bestValue = std::min(bestValue, maxValue);
|
||||||
|
|
||||||
|
// If no good move is found and the previous position was ttPv, then the previous
|
||||||
|
// opponent move is probably good and the new position is added to the search tree.
|
||||||
|
if (bestValue <= alpha)
|
||||||
|
ss->ttPv = ss->ttPv || ((ss-1)->ttPv && depth > 3);
|
||||||
|
// Otherwise, a counter move has been found and if the position is the last leaf
|
||||||
|
// in the search tree, remove the position from the search tree.
|
||||||
|
else if (depth > 3)
|
||||||
|
ss->ttPv = ss->ttPv && (ss+1)->ttPv;
|
||||||
|
|
||||||
if (!excludedMove && !(rootNode && thisThread->pvIdx))
|
if (!excludedMove && !(rootNode && thisThread->pvIdx))
|
||||||
tte->save(posKey, value_to_tt(bestValue, ss->ply), ttPv,
|
tte->save(posKey, value_to_tt(bestValue, ss->ply), ss->ttPv,
|
||||||
bestValue >= beta ? BOUND_LOWER :
|
bestValue >= beta ? BOUND_LOWER :
|
||||||
PvNode && bestMove ? BOUND_EXACT : BOUND_UPPER,
|
PvNode && bestMove ? BOUND_EXACT : BOUND_UPPER,
|
||||||
depth, bestMove, ss->staticEval);
|
depth, bestMove, ss->staticEval);
|
||||||
|
@ -1474,7 +1510,7 @@ moves_loop: // When in check, search starts from here
|
||||||
if (PvNode && bestValue > alpha)
|
if (PvNode && bestValue > alpha)
|
||||||
alpha = bestValue;
|
alpha = bestValue;
|
||||||
|
|
||||||
futilityBase = bestValue + 141;
|
futilityBase = bestValue + 145;
|
||||||
}
|
}
|
||||||
|
|
||||||
const PieceToHistory* contHist[] = { (ss-1)->continuationHistory, (ss-2)->continuationHistory,
|
const PieceToHistory* contHist[] = { (ss-1)->continuationHistory, (ss-2)->continuationHistory,
|
||||||
|
@ -1483,8 +1519,8 @@ moves_loop: // When in check, search starts from here
|
||||||
|
|
||||||
// Initialize a MovePicker object for the current position, and prepare
|
// Initialize a MovePicker object for the current position, and prepare
|
||||||
// to search the moves. Because the depth is <= 0 here, only captures,
|
// to search the moves. Because the depth is <= 0 here, only captures,
|
||||||
// queen promotions and checks (only if depth >= DEPTH_QS_CHECKS) will
|
// queen and checking knight promotions, and other checks(only if depth >= DEPTH_QS_CHECKS)
|
||||||
// be generated.
|
// will be generated.
|
||||||
MovePicker mp(pos, ttMove, depth, &thisThread->mainHistory,
|
MovePicker mp(pos, ttMove, depth, &thisThread->mainHistory,
|
||||||
&thisThread->captureHistory,
|
&thisThread->captureHistory,
|
||||||
contHist,
|
contHist,
|
||||||
|
@ -1508,6 +1544,10 @@ moves_loop: // When in check, search starts from here
|
||||||
{
|
{
|
||||||
assert(type_of(move) != ENPASSANT); // Due to !pos.advanced_pawn_push
|
assert(type_of(move) != ENPASSANT); // Due to !pos.advanced_pawn_push
|
||||||
|
|
||||||
|
// moveCount pruning
|
||||||
|
if (moveCount > 2)
|
||||||
|
continue;
|
||||||
|
|
||||||
futilityValue = futilityBase + PieceValue[EG][pos.piece_on(to_sq(move))];
|
futilityValue = futilityBase + PieceValue[EG][pos.piece_on(to_sq(move))];
|
||||||
|
|
||||||
if (futilityValue <= alpha)
|
if (futilityValue <= alpha)
|
||||||
|
@ -1523,8 +1563,8 @@ moves_loop: // When in check, search starts from here
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Don't search moves with negative SEE values
|
// Do not search moves with negative SEE values
|
||||||
if ( !ss->inCheck && !pos.see_ge(move))
|
if (!ss->inCheck && !pos.see_ge(move))
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
// Speculative prefetch as early as possible
|
// Speculative prefetch as early as possible
|
||||||
|
@ -1543,6 +1583,12 @@ moves_loop: // When in check, search starts from here
|
||||||
[pos.moved_piece(move)]
|
[pos.moved_piece(move)]
|
||||||
[to_sq(move)];
|
[to_sq(move)];
|
||||||
|
|
||||||
|
if ( !captureOrPromotion
|
||||||
|
&& moveCount
|
||||||
|
&& (*contHist[0])[pos.moved_piece(move)][to_sq(move)] < CounterMovePruneThreshold
|
||||||
|
&& (*contHist[1])[pos.moved_piece(move)][to_sq(move)] < CounterMovePruneThreshold)
|
||||||
|
continue;
|
||||||
|
|
||||||
// Make and search the move
|
// Make and search the move
|
||||||
pos.do_move(move, st, givesCheck);
|
pos.do_move(move, st, givesCheck);
|
||||||
value = -qsearch<NT>(pos, ss+1, -beta, -alpha, depth - 1);
|
value = -qsearch<NT>(pos, ss+1, -beta, -alpha, depth - 1);
|
||||||
|
@ -1570,7 +1616,7 @@ moves_loop: // When in check, search starts from here
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// All legal moves have been searched. A special case: If we're in check
|
// All legal moves have been searched. A special case: if we're in check
|
||||||
// and no legal moves were found, it is checkmate.
|
// and no legal moves were found, it is checkmate.
|
||||||
if (ss->inCheck && bestValue == -VALUE_INFINITE)
|
if (ss->inCheck && bestValue == -VALUE_INFINITE)
|
||||||
return mated_in(ss->ply); // Plies to mate from the root
|
return mated_in(ss->ply); // Plies to mate from the root
|
||||||
|
@ -1587,7 +1633,7 @@ moves_loop: // When in check, search starts from here
|
||||||
|
|
||||||
|
|
||||||
// value_to_tt() adjusts a mate or TB score from "plies to mate from the root" to
|
// value_to_tt() adjusts a mate or TB score from "plies to mate from the root" to
|
||||||
// "plies to mate from the current position". standard scores are unchanged.
|
// "plies to mate from the current position". Standard scores are unchanged.
|
||||||
// The function is called before storing a value in the transposition table.
|
// The function is called before storing a value in the transposition table.
|
||||||
|
|
||||||
Value value_to_tt(Value v, int ply) {
|
Value value_to_tt(Value v, int ply) {
|
||||||
|
@ -1599,11 +1645,11 @@ moves_loop: // When in check, search starts from here
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// value_from_tt() is the inverse of value_to_tt(): It adjusts a mate or TB score
|
// value_from_tt() is the inverse of value_to_tt(): it adjusts a mate or TB score
|
||||||
// from the transposition table (which refers to the plies to mate/be mated
|
// from the transposition table (which refers to the plies to mate/be mated from
|
||||||
// from current position) to "plies to mate/be mated (TB win/loss) from the root".
|
// current position) to "plies to mate/be mated (TB win/loss) from the root". However,
|
||||||
// However, for mate scores, to avoid potentially false mate scores related to the 50 moves rule,
|
// for mate scores, to avoid potentially false mate scores related to the 50 moves rule
|
||||||
// and the graph history interaction, return an optimal TB score instead.
|
// and the graph history interaction, we return an optimal TB score instead.
|
||||||
|
|
||||||
Value value_from_tt(Value v, int ply, int r50c) {
|
Value value_from_tt(Value v, int ply, int r50c) {
|
||||||
|
|
||||||
|
@ -1725,7 +1771,7 @@ moves_loop: // When in check, search starts from here
|
||||||
}
|
}
|
||||||
|
|
||||||
if (depth > 11 && ss->ply < MAX_LPH)
|
if (depth > 11 && ss->ply < MAX_LPH)
|
||||||
thisThread->lowPlyHistory[ss->ply][from_to(move)] << stat_bonus(depth - 6);
|
thisThread->lowPlyHistory[ss->ply][from_to(move)] << stat_bonus(depth - 7);
|
||||||
}
|
}
|
||||||
|
|
||||||
// When playing with strength handicap, choose best move among a set of RootMoves
|
// When playing with strength handicap, choose best move among a set of RootMoves
|
||||||
|
@ -1763,6 +1809,7 @@ moves_loop: // When in check, search starts from here
|
||||||
|
|
||||||
} // namespace
|
} // namespace
|
||||||
|
|
||||||
|
|
||||||
/// MainThread::check_time() is used to print debug info and, more importantly,
|
/// MainThread::check_time() is used to print debug info and, more importantly,
|
||||||
/// to detect when we are out of available time and thus stop the search.
|
/// to detect when we are out of available time and thus stop the search.
|
||||||
|
|
||||||
|
@ -1813,12 +1860,15 @@ string UCI::pv(const Position& pos, Depth depth, Value alpha, Value beta) {
|
||||||
{
|
{
|
||||||
bool updated = rootMoves[i].score != -VALUE_INFINITE;
|
bool updated = rootMoves[i].score != -VALUE_INFINITE;
|
||||||
|
|
||||||
if (depth == 1 && !updated)
|
if (depth == 1 && !updated && i > 0)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
Depth d = updated ? depth : depth - 1;
|
Depth d = updated ? depth : std::max(1, depth - 1);
|
||||||
Value v = updated ? rootMoves[i].score : rootMoves[i].previousScore;
|
Value v = updated ? rootMoves[i].score : rootMoves[i].previousScore;
|
||||||
|
|
||||||
|
if (v == -VALUE_INFINITE)
|
||||||
|
v = VALUE_ZERO;
|
||||||
|
|
||||||
bool tb = TB::RootInTB && abs(v) < VALUE_MATE_IN_MAX_PLY;
|
bool tb = TB::RootInTB && abs(v) < VALUE_MATE_IN_MAX_PLY;
|
||||||
v = tb ? rootMoves[i].tbScore : v;
|
v = tb ? rootMoves[i].tbScore : v;
|
||||||
|
|
||||||
|
@ -1831,6 +1881,9 @@ string UCI::pv(const Position& pos, Depth depth, Value alpha, Value beta) {
|
||||||
<< " multipv " << i + 1
|
<< " multipv " << i + 1
|
||||||
<< " score " << UCI::value(v);
|
<< " score " << UCI::value(v);
|
||||||
|
|
||||||
|
if (Options["UCI_ShowWDL"])
|
||||||
|
ss << UCI::wdl(v, pos.game_ply());
|
||||||
|
|
||||||
if (!tb && i == pvIdx)
|
if (!tb && i == pvIdx)
|
||||||
ss << (v >= beta ? " lowerbound" : v <= alpha ? " upperbound" : "");
|
ss << (v >= beta ? " lowerbound" : v <= alpha ? " upperbound" : "");
|
||||||
|
|
||||||
|
@ -1913,7 +1966,7 @@ void Tablebases::rank_root_moves(Position& pos, Search::RootMoves& rootMoves) {
|
||||||
if (RootInTB)
|
if (RootInTB)
|
||||||
{
|
{
|
||||||
// Sort moves according to TB rank
|
// Sort moves according to TB rank
|
||||||
std::sort(rootMoves.begin(), rootMoves.end(),
|
std::stable_sort(rootMoves.begin(), rootMoves.end(),
|
||||||
[](const RootMove &a, const RootMove &b) { return a.tbRank > b.tbRank; } );
|
[](const RootMove &a, const RootMove &b) { return a.tbRank > b.tbRank; } );
|
||||||
|
|
||||||
// Probe during search only if DTZ is not available and we are winning
|
// Probe during search only if DTZ is not available and we are winning
|
||||||
|
|
|
@ -1,8 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
||||||
Copyright (C) 2004-2008 Tord Romstad (Glaurung author)
|
Copyright (C) 2004-2020 The Stockfish developers (see AUTHORS file)
|
||||||
Copyright (C) 2008-2015 Marco Costalba, Joona Kiiski, Tord Romstad
|
|
||||||
Copyright (C) 2015-2020 Marco Costalba, Joona Kiiski, Gary Linscott, Tord Romstad
|
|
||||||
|
|
||||||
Stockfish is free software: you can redistribute it and/or modify
|
Stockfish is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
@ -50,6 +48,7 @@ struct Stack {
|
||||||
int statScore;
|
int statScore;
|
||||||
int moveCount;
|
int moveCount;
|
||||||
bool inCheck;
|
bool inCheck;
|
||||||
|
bool ttPv;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
@ -91,7 +90,7 @@ struct LimitsType {
|
||||||
}
|
}
|
||||||
|
|
||||||
bool use_time_management() const {
|
bool use_time_management() const {
|
||||||
return !(mate | movetime | depth | nodes | perft | infinite);
|
return time[WHITE] || time[BLACK];
|
||||||
}
|
}
|
||||||
|
|
||||||
std::vector<Move> searchmoves;
|
std::vector<Move> searchmoves;
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
||||||
Copyright (c) 2013 Ronald de Man
|
Copyright (C) 2004-2020 The Stockfish developers (see AUTHORS file)
|
||||||
Copyright (C) 2016-2020 Marco Costalba, Lucas Braesch
|
|
||||||
|
|
||||||
Stockfish is free software: you can redistribute it and/or modify
|
Stockfish is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
@ -224,7 +223,9 @@ public:
|
||||||
|
|
||||||
*mapping = statbuf.st_size;
|
*mapping = statbuf.st_size;
|
||||||
*baseAddress = mmap(nullptr, statbuf.st_size, PROT_READ, MAP_SHARED, fd, 0);
|
*baseAddress = mmap(nullptr, statbuf.st_size, PROT_READ, MAP_SHARED, fd, 0);
|
||||||
|
#if defined(MADV_RANDOM)
|
||||||
madvise(*baseAddress, statbuf.st_size, MADV_RANDOM);
|
madvise(*baseAddress, statbuf.st_size, MADV_RANDOM);
|
||||||
|
#endif
|
||||||
::close(fd);
|
::close(fd);
|
||||||
|
|
||||||
if (*baseAddress == MAP_FAILED)
|
if (*baseAddress == MAP_FAILED)
|
||||||
|
@ -759,7 +760,7 @@ Ret do_probe_table(const Position& pos, T* entry, WDLScore wdl, ProbeState* resu
|
||||||
if (entry->hasPawns) {
|
if (entry->hasPawns) {
|
||||||
idx = LeadPawnIdx[leadPawnsCnt][squares[0]];
|
idx = LeadPawnIdx[leadPawnsCnt][squares[0]];
|
||||||
|
|
||||||
std::sort(squares + 1, squares + leadPawnsCnt, pawns_comp);
|
std::stable_sort(squares + 1, squares + leadPawnsCnt, pawns_comp);
|
||||||
|
|
||||||
for (int i = 1; i < leadPawnsCnt; ++i)
|
for (int i = 1; i < leadPawnsCnt; ++i)
|
||||||
idx += Binomial[i][MapPawns[squares[i]]];
|
idx += Binomial[i][MapPawns[squares[i]]];
|
||||||
|
@ -860,7 +861,7 @@ encode_remaining:
|
||||||
|
|
||||||
while (d->groupLen[++next])
|
while (d->groupLen[++next])
|
||||||
{
|
{
|
||||||
std::sort(groupSq, groupSq + d->groupLen[next]);
|
std::stable_sort(groupSq, groupSq + d->groupLen[next]);
|
||||||
uint64_t n = 0;
|
uint64_t n = 0;
|
||||||
|
|
||||||
// Map down a square if "comes later" than a square in the previous
|
// Map down a square if "comes later" than a square in the previous
|
||||||
|
@ -1200,7 +1201,7 @@ WDLScore search(Position& pos, ProbeState* result) {
|
||||||
auto moveList = MoveList<LEGAL>(pos);
|
auto moveList = MoveList<LEGAL>(pos);
|
||||||
size_t totalCount = moveList.size(), moveCount = 0;
|
size_t totalCount = moveList.size(), moveCount = 0;
|
||||||
|
|
||||||
for (const Move& move : moveList)
|
for (const Move move : moveList)
|
||||||
{
|
{
|
||||||
if ( !pos.capture(move)
|
if ( !pos.capture(move)
|
||||||
&& (!CheckZeroingMoves || type_of(pos.moved_piece(move)) != PAWN))
|
&& (!CheckZeroingMoves || type_of(pos.moved_piece(move)) != PAWN))
|
||||||
|
@ -1362,7 +1363,7 @@ void Tablebases::init(const std::string& paths) {
|
||||||
LeadPawnsSize[leadPawnsCnt][f] = idx;
|
LeadPawnsSize[leadPawnsCnt][f] = idx;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Add entries in TB tables if the corresponding ".rtbw" file exsists
|
// Add entries in TB tables if the corresponding ".rtbw" file exists
|
||||||
for (PieceType p1 = PAWN; p1 < KING; ++p1) {
|
for (PieceType p1 = PAWN; p1 < KING; ++p1) {
|
||||||
TBTables.add({KING, p1, KING});
|
TBTables.add({KING, p1, KING});
|
||||||
|
|
||||||
|
@ -1469,7 +1470,7 @@ int Tablebases::probe_dtz(Position& pos, ProbeState* result) {
|
||||||
StateInfo st;
|
StateInfo st;
|
||||||
int minDTZ = 0xFFFF;
|
int minDTZ = 0xFFFF;
|
||||||
|
|
||||||
for (const Move& move : MoveList<LEGAL>(pos))
|
for (const Move move : MoveList<LEGAL>(pos))
|
||||||
{
|
{
|
||||||
bool zeroing = pos.capture(move) || type_of(pos.moved_piece(move)) == PAWN;
|
bool zeroing = pos.capture(move) || type_of(pos.moved_piece(move)) == PAWN;
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
||||||
Copyright (c) 2013 Ronald de Man
|
Copyright (C) 2004-2020 The Stockfish developers (see AUTHORS file)
|
||||||
Copyright (C) 2016-2020 Marco Costalba, Lucas Braesch
|
|
||||||
|
|
||||||
Stockfish is free software: you can redistribute it and/or modify
|
Stockfish is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
|
|
@ -1,8 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
||||||
Copyright (C) 2004-2008 Tord Romstad (Glaurung author)
|
Copyright (C) 2004-2020 The Stockfish developers (see AUTHORS file)
|
||||||
Copyright (C) 2008-2015 Marco Costalba, Joona Kiiski, Tord Romstad
|
|
||||||
Copyright (C) 2015-2020 Marco Costalba, Joona Kiiski, Gary Linscott, Tord Romstad
|
|
||||||
|
|
||||||
Stockfish is free software: you can redistribute it and/or modify
|
Stockfish is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
@ -52,15 +50,6 @@ Thread::~Thread() {
|
||||||
stdThread.join();
|
stdThread.join();
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Thread::bestMoveCount(Move move) return best move counter for the given root move
|
|
||||||
|
|
||||||
int Thread::best_move_count(Move move) const {
|
|
||||||
|
|
||||||
auto rm = std::find(rootMoves.begin() + pvIdx,
|
|
||||||
rootMoves.begin() + pvLast, move);
|
|
||||||
|
|
||||||
return rm != rootMoves.begin() + pvLast ? rm->bestMoveCount : 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Thread::clear() reset histories, usually before a new game
|
/// Thread::clear() reset histories, usually before a new game
|
||||||
|
|
||||||
|
@ -81,6 +70,7 @@ void Thread::clear() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/// Thread::start_searching() wakes up the thread that will start the search
|
/// Thread::start_searching() wakes up the thread that will start the search
|
||||||
|
|
||||||
void Thread::start_searching() {
|
void Thread::start_searching() {
|
||||||
|
@ -158,7 +148,8 @@ void ThreadPool::set(size_t requested) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// ThreadPool::clear() sets threadPool data to initial values.
|
|
||||||
|
/// ThreadPool::clear() sets threadPool data to initial values
|
||||||
|
|
||||||
void ThreadPool::clear() {
|
void ThreadPool::clear() {
|
||||||
|
|
||||||
|
@ -170,6 +161,7 @@ void ThreadPool::clear() {
|
||||||
main()->previousTimeReduction = 1.0;
|
main()->previousTimeReduction = 1.0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/// ThreadPool::start_thinking() wakes up main thread waiting in idle_loop() and
|
/// ThreadPool::start_thinking() wakes up main thread waiting in idle_loop() and
|
||||||
/// returns immediately. Main thread will wake up other threads and start the search.
|
/// returns immediately. Main thread will wake up other threads and start the search.
|
||||||
|
|
||||||
|
@ -201,21 +193,18 @@ void ThreadPool::start_thinking(Position& pos, StateListPtr& states,
|
||||||
|
|
||||||
// We use Position::set() to set root position across threads. But there are
|
// We use Position::set() to set root position across threads. But there are
|
||||||
// some StateInfo fields (previous, pliesFromNull, capturedPiece) that cannot
|
// some StateInfo fields (previous, pliesFromNull, capturedPiece) that cannot
|
||||||
// be deduced from a fen string, so set() clears them and to not lose the info
|
// be deduced from a fen string, so set() clears them and they are set from
|
||||||
// we need to backup and later restore setupStates->back(). Note that setupStates
|
// setupStates->back() later. The rootState is per thread, earlier states are shared
|
||||||
// is shared by threads but is accessed in read-only mode.
|
// since they are read-only.
|
||||||
StateInfo tmp = setupStates->back();
|
|
||||||
|
|
||||||
for (Thread* th : *this)
|
for (Thread* th : *this)
|
||||||
{
|
{
|
||||||
th->nodes = th->tbHits = th->nmpMinPly = th->bestMoveChanges = 0;
|
th->nodes = th->tbHits = th->nmpMinPly = th->bestMoveChanges = 0;
|
||||||
th->rootDepth = th->completedDepth = 0;
|
th->rootDepth = th->completedDepth = 0;
|
||||||
th->rootMoves = rootMoves;
|
th->rootMoves = rootMoves;
|
||||||
th->rootPos.set(pos.fen(), pos.is_chess960(), &setupStates->back(), th);
|
th->rootPos.set(pos.fen(), pos.is_chess960(), &th->rootState, th);
|
||||||
|
th->rootState = setupStates->back();
|
||||||
}
|
}
|
||||||
|
|
||||||
setupStates->back() = tmp;
|
|
||||||
|
|
||||||
main()->start_searching();
|
main()->start_searching();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -250,7 +239,8 @@ Thread* ThreadPool::get_best_thread() const {
|
||||||
return bestThread;
|
return bestThread;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Start non-main threads.
|
|
||||||
|
/// Start non-main threads
|
||||||
|
|
||||||
void ThreadPool::start_searching() {
|
void ThreadPool::start_searching() {
|
||||||
|
|
||||||
|
@ -259,7 +249,8 @@ void ThreadPool::start_searching() {
|
||||||
th->start_searching();
|
th->start_searching();
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Wait for non-main threads.
|
|
||||||
|
/// Wait for non-main threads
|
||||||
|
|
||||||
void ThreadPool::wait_for_search_finished() const {
|
void ThreadPool::wait_for_search_finished() const {
|
||||||
|
|
||||||
|
|
|
@ -1,8 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
||||||
Copyright (C) 2004-2008 Tord Romstad (Glaurung author)
|
Copyright (C) 2004-2020 The Stockfish developers (see AUTHORS file)
|
||||||
Copyright (C) 2008-2015 Marco Costalba, Joona Kiiski, Tord Romstad
|
|
||||||
Copyright (C) 2015-2020 Marco Costalba, Joona Kiiski, Gary Linscott, Tord Romstad
|
|
||||||
|
|
||||||
Stockfish is free software: you can redistribute it and/or modify
|
Stockfish is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
@ -56,7 +54,6 @@ public:
|
||||||
void idle_loop();
|
void idle_loop();
|
||||||
void start_searching();
|
void start_searching();
|
||||||
void wait_for_search_finished();
|
void wait_for_search_finished();
|
||||||
int best_move_count(Move move) const;
|
|
||||||
|
|
||||||
Pawns::Table pawnsTable;
|
Pawns::Table pawnsTable;
|
||||||
Material::Table materialTable;
|
Material::Table materialTable;
|
||||||
|
@ -67,6 +64,7 @@ public:
|
||||||
std::atomic<uint64_t> nodes, tbHits, bestMoveChanges;
|
std::atomic<uint64_t> nodes, tbHits, bestMoveChanges;
|
||||||
|
|
||||||
Position rootPos;
|
Position rootPos;
|
||||||
|
StateInfo rootState;
|
||||||
Search::RootMoves rootMoves;
|
Search::RootMoves rootMoves;
|
||||||
Depth rootDepth, completedDepth;
|
Depth rootDepth, completedDepth;
|
||||||
CounterMoveHistory counterMoves;
|
CounterMoveHistory counterMoves;
|
||||||
|
|
|
@ -1,8 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
||||||
Copyright (C) 2004-2008 Tord Romstad (Glaurung author)
|
Copyright (C) 2004-2020 The Stockfish developers (see AUTHORS file)
|
||||||
Copyright (C) 2008-2015 Marco Costalba, Joona Kiiski, Tord Romstad
|
|
||||||
Copyright (C) 2015-2020 Marco Costalba, Joona Kiiski, Gary Linscott, Tord Romstad
|
|
||||||
|
|
||||||
Stockfish is free software: you can redistribute it and/or modify
|
Stockfish is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
@ -29,7 +27,7 @@
|
||||||
/// The implementation calls pthread_create() with the stack size parameter
|
/// The implementation calls pthread_create() with the stack size parameter
|
||||||
/// equal to the linux 8MB default, on platforms that support it.
|
/// equal to the linux 8MB default, on platforms that support it.
|
||||||
|
|
||||||
#if defined(__APPLE__) || defined(__MINGW32__) || defined(__MINGW64__)
|
#if defined(__APPLE__) || defined(__MINGW32__) || defined(__MINGW64__) || defined(USE_PTHREADS)
|
||||||
|
|
||||||
#include <pthread.h>
|
#include <pthread.h>
|
||||||
|
|
||||||
|
|
|
@ -1,8 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
||||||
Copyright (C) 2004-2008 Tord Romstad (Glaurung author)
|
Copyright (C) 2004-2020 The Stockfish developers (see AUTHORS file)
|
||||||
Copyright (C) 2008-2015 Marco Costalba, Joona Kiiski, Tord Romstad
|
|
||||||
Copyright (C) 2015-2020 Marco Costalba, Joona Kiiski, Gary Linscott, Tord Romstad
|
|
||||||
|
|
||||||
Stockfish is free software: you can redistribute it and/or modify
|
Stockfish is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
@ -28,21 +26,21 @@
|
||||||
|
|
||||||
TimeManagement Time; // Our global time management object
|
TimeManagement Time; // Our global time management object
|
||||||
|
|
||||||
/// init() is called at the beginning of the search and calculates the bounds
|
|
||||||
/// of time allowed for the current game ply. We currently support:
|
/// TimeManagement::init() is called at the beginning of the search and calculates
|
||||||
// 1) x basetime (+z increment)
|
/// the bounds of time allowed for the current game ply. We currently support:
|
||||||
// 2) x moves in y seconds (+z increment)
|
// 1) x basetime (+ z increment)
|
||||||
|
// 2) x moves in y seconds (+ z increment)
|
||||||
|
|
||||||
void TimeManagement::init(Search::LimitsType& limits, Color us, int ply) {
|
void TimeManagement::init(Search::LimitsType& limits, Color us, int ply) {
|
||||||
|
|
||||||
TimePoint minThinkingTime = TimePoint(Options["Minimum Thinking Time"]);
|
|
||||||
TimePoint moveOverhead = TimePoint(Options["Move Overhead"]);
|
TimePoint moveOverhead = TimePoint(Options["Move Overhead"]);
|
||||||
TimePoint slowMover = TimePoint(Options["Slow Mover"]);
|
TimePoint slowMover = TimePoint(Options["Slow Mover"]);
|
||||||
TimePoint npmsec = TimePoint(Options["nodestime"]);
|
TimePoint npmsec = TimePoint(Options["nodestime"]);
|
||||||
|
|
||||||
// opt_scale is a percentage of available time to use for the current move.
|
// optScale is a percentage of available time to use for the current move.
|
||||||
// max_scale is a multiplier applied to optimumTime.
|
// maxScale is a multiplier applied to optimumTime.
|
||||||
double opt_scale, max_scale;
|
double optScale, maxScale;
|
||||||
|
|
||||||
// If we have to play in 'nodes as time' mode, then convert from time
|
// If we have to play in 'nodes as time' mode, then convert from time
|
||||||
// to nodes, and use resulting values in time management formulas.
|
// to nodes, and use resulting values in time management formulas.
|
||||||
|
@ -61,7 +59,7 @@ void TimeManagement::init(Search::LimitsType& limits, Color us, int ply) {
|
||||||
|
|
||||||
startTime = limits.startTime;
|
startTime = limits.startTime;
|
||||||
|
|
||||||
//Maximum move horizon of 50 moves
|
// Maximum move horizon of 50 moves
|
||||||
int mtg = limits.movestogo ? std::min(limits.movestogo, 50) : 50;
|
int mtg = limits.movestogo ? std::min(limits.movestogo, 50) : 50;
|
||||||
|
|
||||||
// Make sure timeLeft is > 0 since we may use it as a divisor
|
// Make sure timeLeft is > 0 since we may use it as a divisor
|
||||||
|
@ -77,22 +75,22 @@ void TimeManagement::init(Search::LimitsType& limits, Color us, int ply) {
|
||||||
// game time for the current move, so also cap to 20% of available game time.
|
// game time for the current move, so also cap to 20% of available game time.
|
||||||
if (limits.movestogo == 0)
|
if (limits.movestogo == 0)
|
||||||
{
|
{
|
||||||
opt_scale = std::min(0.008 + std::pow(ply + 3.0, 0.5) / 250.0,
|
optScale = std::min(0.008 + std::pow(ply + 3.0, 0.5) / 250.0,
|
||||||
0.2 * limits.time[us] / double(timeLeft));
|
0.2 * limits.time[us] / double(timeLeft));
|
||||||
max_scale = 4 + std::min(36, ply) / 12.0;
|
maxScale = std::min(7.0, 4.0 + ply / 12.0);
|
||||||
}
|
}
|
||||||
|
|
||||||
// x moves in y seconds (+ z increment)
|
// x moves in y seconds (+ z increment)
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
opt_scale = std::min((0.8 + ply / 128.0) / mtg,
|
optScale = std::min((0.8 + ply / 128.0) / mtg,
|
||||||
0.8 * limits.time[us] / double(timeLeft));
|
0.8 * limits.time[us] / double(timeLeft));
|
||||||
max_scale = std::min(6.3, 1.5 + 0.11 * mtg);
|
maxScale = std::min(6.3, 1.5 + 0.11 * mtg);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Never use more than 80% of the available time for this move
|
// Never use more than 80% of the available time for this move
|
||||||
optimumTime = std::max(minThinkingTime, TimePoint(opt_scale * timeLeft));
|
optimumTime = TimePoint(optScale * timeLeft);
|
||||||
maximumTime = TimePoint(std::min(0.8 * limits.time[us] - moveOverhead, max_scale * optimumTime));
|
maximumTime = TimePoint(std::min(0.8 * limits.time[us] - moveOverhead, maxScale * optimumTime));
|
||||||
|
|
||||||
if (Options["Ponder"])
|
if (Options["Ponder"])
|
||||||
optimumTime += optimumTime / 4;
|
optimumTime += optimumTime / 4;
|
||||||
|
|
|
@ -1,8 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
||||||
Copyright (C) 2004-2008 Tord Romstad (Glaurung author)
|
Copyright (C) 2004-2020 The Stockfish developers (see AUTHORS file)
|
||||||
Copyright (C) 2008-2015 Marco Costalba, Joona Kiiski, Tord Romstad
|
|
||||||
Copyright (C) 2015-2020 Marco Costalba, Joona Kiiski, Gary Linscott, Tord Romstad
|
|
||||||
|
|
||||||
Stockfish is free software: you can redistribute it and/or modify
|
Stockfish is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
|
|
@ -1,8 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
||||||
Copyright (C) 2004-2008 Tord Romstad (Glaurung author)
|
Copyright (C) 2004-2020 The Stockfish developers (see AUTHORS file)
|
||||||
Copyright (C) 2008-2015 Marco Costalba, Joona Kiiski, Tord Romstad
|
|
||||||
Copyright (C) 2015-2020 Marco Costalba, Joona Kiiski, Gary Linscott, Tord Romstad
|
|
||||||
|
|
||||||
Stockfish is free software: you can redistribute it and/or modify
|
Stockfish is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
@ -30,7 +28,7 @@
|
||||||
|
|
||||||
TranspositionTable TT; // Our global transposition table
|
TranspositionTable TT; // Our global transposition table
|
||||||
|
|
||||||
/// TTEntry::save populates the TTEntry with a new node's data, possibly
|
/// TTEntry::save() populates the TTEntry with a new node's data, possibly
|
||||||
/// overwriting an old position. Update is not atomic and can be racy.
|
/// overwriting an old position. Update is not atomic and can be racy.
|
||||||
|
|
||||||
void TTEntry::save(Key k, Value v, bool pv, Bound b, Depth d, Move m, Value ev) {
|
void TTEntry::save(Key k, Value v, bool pv, Bound b, Depth d, Move m, Value ev) {
|
||||||
|
@ -39,18 +37,19 @@ void TTEntry::save(Key k, Value v, bool pv, Bound b, Depth d, Move m, Value ev)
|
||||||
if (m || (uint16_t)k != key16)
|
if (m || (uint16_t)k != key16)
|
||||||
move16 = (uint16_t)m;
|
move16 = (uint16_t)m;
|
||||||
|
|
||||||
// Overwrite less valuable entries
|
// Overwrite less valuable entries (cheapest checks first)
|
||||||
if ((uint16_t)k != key16
|
if (b == BOUND_EXACT
|
||||||
|| d - DEPTH_OFFSET > depth8 - 4
|
|| (uint16_t)k != key16
|
||||||
|| b == BOUND_EXACT)
|
|| d - DEPTH_OFFSET > depth8 - 4)
|
||||||
{
|
{
|
||||||
assert(d >= DEPTH_OFFSET);
|
assert(d > DEPTH_OFFSET);
|
||||||
|
assert(d < 256 + DEPTH_OFFSET);
|
||||||
|
|
||||||
key16 = (uint16_t)k;
|
key16 = (uint16_t)k;
|
||||||
|
depth8 = (uint8_t)(d - DEPTH_OFFSET);
|
||||||
|
genBound8 = (uint8_t)(TT.generation8 | uint8_t(pv) << 2 | b);
|
||||||
value16 = (int16_t)v;
|
value16 = (int16_t)v;
|
||||||
eval16 = (int16_t)ev;
|
eval16 = (int16_t)ev;
|
||||||
genBound8 = (uint8_t)(TT.generation8 | uint8_t(pv) << 2 | b);
|
|
||||||
depth8 = (uint8_t)(d - DEPTH_OFFSET);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -107,6 +106,7 @@ void TranspositionTable::clear() {
|
||||||
th.join();
|
th.join();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/// TranspositionTable::probe() looks up the current position in the transposition
|
/// TranspositionTable::probe() looks up the current position in the transposition
|
||||||
/// table. It returns true and a pointer to the TTEntry if the position is found.
|
/// table. It returns true and a pointer to the TTEntry if the position is found.
|
||||||
/// Otherwise, it returns false and a pointer to an empty or least valuable TTEntry
|
/// Otherwise, it returns false and a pointer to an empty or least valuable TTEntry
|
||||||
|
@ -120,11 +120,11 @@ TTEntry* TranspositionTable::probe(const Key key, bool& found) const {
|
||||||
const uint16_t key16 = (uint16_t)key; // Use the low 16 bits as key inside the cluster
|
const uint16_t key16 = (uint16_t)key; // Use the low 16 bits as key inside the cluster
|
||||||
|
|
||||||
for (int i = 0; i < ClusterSize; ++i)
|
for (int i = 0; i < ClusterSize; ++i)
|
||||||
if (!tte[i].key16 || tte[i].key16 == key16)
|
if (tte[i].key16 == key16 || !tte[i].depth8)
|
||||||
{
|
{
|
||||||
tte[i].genBound8 = uint8_t(generation8 | (tte[i].genBound8 & 0x7)); // Refresh
|
tte[i].genBound8 = uint8_t(generation8 | (tte[i].genBound8 & 0x7)); // Refresh
|
||||||
|
|
||||||
return found = (bool)tte[i].key16, &tte[i];
|
return found = (bool)tte[i].depth8, &tte[i];
|
||||||
}
|
}
|
||||||
|
|
||||||
// Find an entry to be replaced according to the replacement strategy
|
// Find an entry to be replaced according to the replacement strategy
|
||||||
|
@ -150,7 +150,7 @@ int TranspositionTable::hashfull() const {
|
||||||
int cnt = 0;
|
int cnt = 0;
|
||||||
for (int i = 0; i < 1000; ++i)
|
for (int i = 0; i < 1000; ++i)
|
||||||
for (int j = 0; j < ClusterSize; ++j)
|
for (int j = 0; j < ClusterSize; ++j)
|
||||||
cnt += (table[i].entry[j].genBound8 & 0xF8) == generation8;
|
cnt += table[i].entry[j].depth8 && (table[i].entry[j].genBound8 & 0xF8) == generation8;
|
||||||
|
|
||||||
return cnt / ClusterSize;
|
return cnt / ClusterSize;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,8 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
||||||
Copyright (C) 2004-2008 Tord Romstad (Glaurung author)
|
Copyright (C) 2004-2020 The Stockfish developers (see AUTHORS file)
|
||||||
Copyright (C) 2008-2015 Marco Costalba, Joona Kiiski, Tord Romstad
|
|
||||||
Copyright (C) 2015-2020 Marco Costalba, Joona Kiiski, Gary Linscott, Tord Romstad
|
|
||||||
|
|
||||||
Stockfish is free software: you can redistribute it and/or modify
|
Stockfish is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
@ -27,13 +25,13 @@
|
||||||
/// TTEntry struct is the 10 bytes transposition table entry, defined as below:
|
/// TTEntry struct is the 10 bytes transposition table entry, defined as below:
|
||||||
///
|
///
|
||||||
/// key 16 bit
|
/// key 16 bit
|
||||||
/// move 16 bit
|
/// depth 8 bit
|
||||||
/// value 16 bit
|
|
||||||
/// eval value 16 bit
|
|
||||||
/// generation 5 bit
|
/// generation 5 bit
|
||||||
/// pv node 1 bit
|
/// pv node 1 bit
|
||||||
/// bound type 2 bit
|
/// bound type 2 bit
|
||||||
/// depth 8 bit
|
/// move 16 bit
|
||||||
|
/// value 16 bit
|
||||||
|
/// eval value 16 bit
|
||||||
|
|
||||||
struct TTEntry {
|
struct TTEntry {
|
||||||
|
|
||||||
|
@ -49,19 +47,19 @@ private:
|
||||||
friend class TranspositionTable;
|
friend class TranspositionTable;
|
||||||
|
|
||||||
uint16_t key16;
|
uint16_t key16;
|
||||||
|
uint8_t depth8;
|
||||||
|
uint8_t genBound8;
|
||||||
uint16_t move16;
|
uint16_t move16;
|
||||||
int16_t value16;
|
int16_t value16;
|
||||||
int16_t eval16;
|
int16_t eval16;
|
||||||
uint8_t genBound8;
|
|
||||||
uint8_t depth8;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
/// A TranspositionTable is an array of Cluster, of size clusterCount. Each
|
/// A TranspositionTable is an array of Cluster, of size clusterCount. Each
|
||||||
/// cluster consists of ClusterSize number of TTEntry. Each non-empty TTEntry
|
/// cluster consists of ClusterSize number of TTEntry. Each non-empty TTEntry
|
||||||
/// contains information on exactly one position. The size of a Cluster should
|
/// contains information on exactly one position. The size of a Cluster should
|
||||||
/// divide the size of a cache line for best performance,
|
/// divide the size of a cache line for best performance, as the cacheline is
|
||||||
/// as the cacheline is prefetched when possible.
|
/// prefetched when possible.
|
||||||
|
|
||||||
class TranspositionTable {
|
class TranspositionTable {
|
||||||
|
|
||||||
|
|
|
@ -1,8 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
||||||
Copyright (C) 2004-2008 Tord Romstad (Glaurung author)
|
Copyright (C) 2004-2020 The Stockfish developers (see AUTHORS file)
|
||||||
Copyright (C) 2008-2015 Marco Costalba, Joona Kiiski, Tord Romstad
|
|
||||||
Copyright (C) 2015-2020 Marco Costalba, Joona Kiiski, Gary Linscott, Tord Romstad
|
|
||||||
|
|
||||||
Stockfish is free software: you can redistribute it and/or modify
|
Stockfish is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
@ -70,7 +68,7 @@ static void make_option(const string& n, int v, const SetRange& r) {
|
||||||
Options[n] << UCI::Option(v, r(v).first, r(v).second, on_tune);
|
Options[n] << UCI::Option(v, r(v).first, r(v).second, on_tune);
|
||||||
LastOption = &Options[n];
|
LastOption = &Options[n];
|
||||||
|
|
||||||
// Print formatted parameters, ready to be copy-pasted in fishtest
|
// Print formatted parameters, ready to be copy-pasted in Fishtest
|
||||||
std::cout << n << ","
|
std::cout << n << ","
|
||||||
<< v << ","
|
<< v << ","
|
||||||
<< r(v).first << "," << r(v).second << ","
|
<< r(v).first << "," << r(v).second << ","
|
||||||
|
|
|
@ -1,8 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
||||||
Copyright (C) 2004-2008 Tord Romstad (Glaurung author)
|
Copyright (C) 2004-2020 The Stockfish developers (see AUTHORS file)
|
||||||
Copyright (C) 2008-2017 Marco Costalba, Joona Kiiski, Tord Romstad
|
|
||||||
Copyright (C) 2015-2018 Marco Costalba, Joona Kiiski, Gary Linscott, Tord Romstad
|
|
||||||
|
|
||||||
Stockfish is free software: you can redistribute it and/or modify
|
Stockfish is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
|
|
@ -1,8 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
||||||
Copyright (C) 2004-2008 Tord Romstad (Glaurung author)
|
Copyright (C) 2004-2020 The Stockfish developers (see AUTHORS file)
|
||||||
Copyright (C) 2008-2015 Marco Costalba, Joona Kiiski, Tord Romstad
|
|
||||||
Copyright (C) 2015-2020 Marco Costalba, Joona Kiiski, Gary Linscott, Tord Romstad
|
|
||||||
|
|
||||||
Stockfish is free software: you can redistribute it and/or modify
|
Stockfish is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
@ -40,7 +38,6 @@
|
||||||
|
|
||||||
#include <cassert>
|
#include <cassert>
|
||||||
#include <cctype>
|
#include <cctype>
|
||||||
#include <climits>
|
|
||||||
#include <cstdint>
|
#include <cstdint>
|
||||||
#include <cstdlib>
|
#include <cstdlib>
|
||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
|
@ -181,7 +178,7 @@ enum Value : int {
|
||||||
VALUE_MATE_IN_MAX_PLY = VALUE_MATE - MAX_PLY,
|
VALUE_MATE_IN_MAX_PLY = VALUE_MATE - MAX_PLY,
|
||||||
VALUE_MATED_IN_MAX_PLY = -VALUE_MATE_IN_MAX_PLY,
|
VALUE_MATED_IN_MAX_PLY = -VALUE_MATE_IN_MAX_PLY,
|
||||||
|
|
||||||
PawnValueMg = 124, PawnValueEg = 206,
|
PawnValueMg = 126, PawnValueEg = 208,
|
||||||
KnightValueMg = 781, KnightValueEg = 854,
|
KnightValueMg = 781, KnightValueEg = 854,
|
||||||
BishopValueMg = 825, BishopValueEg = 915,
|
BishopValueMg = 825, BishopValueEg = 915,
|
||||||
RookValueMg = 1276, RookValueEg = 1380,
|
RookValueMg = 1276, RookValueEg = 1380,
|
||||||
|
@ -214,13 +211,13 @@ constexpr Value PieceValue[PHASE_NB][PIECE_NB] = {
|
||||||
typedef int Depth;
|
typedef int Depth;
|
||||||
|
|
||||||
enum : int {
|
enum : int {
|
||||||
|
|
||||||
DEPTH_QS_CHECKS = 0,
|
DEPTH_QS_CHECKS = 0,
|
||||||
DEPTH_QS_NO_CHECKS = -1,
|
DEPTH_QS_NO_CHECKS = -1,
|
||||||
DEPTH_QS_RECAPTURES = -5,
|
DEPTH_QS_RECAPTURES = -5,
|
||||||
|
|
||||||
DEPTH_NONE = -6,
|
DEPTH_NONE = -6,
|
||||||
DEPTH_OFFSET = DEPTH_NONE
|
|
||||||
|
DEPTH_OFFSET = -7 // value used only for TT entry occupancy check
|
||||||
};
|
};
|
||||||
|
|
||||||
enum Square : int {
|
enum Square : int {
|
||||||
|
@ -234,7 +231,8 @@ enum Square : int {
|
||||||
SQ_A8, SQ_B8, SQ_C8, SQ_D8, SQ_E8, SQ_F8, SQ_G8, SQ_H8,
|
SQ_A8, SQ_B8, SQ_C8, SQ_D8, SQ_E8, SQ_F8, SQ_G8, SQ_H8,
|
||||||
SQ_NONE,
|
SQ_NONE,
|
||||||
|
|
||||||
SQUARE_NB = 64
|
SQUARE_ZERO = 0,
|
||||||
|
SQUARE_NB = 64
|
||||||
};
|
};
|
||||||
|
|
||||||
enum Direction : int {
|
enum Direction : int {
|
||||||
|
@ -257,6 +255,21 @@ enum Rank : int {
|
||||||
RANK_1, RANK_2, RANK_3, RANK_4, RANK_5, RANK_6, RANK_7, RANK_8, RANK_NB
|
RANK_1, RANK_2, RANK_3, RANK_4, RANK_5, RANK_6, RANK_7, RANK_8, RANK_NB
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Keep track of what a move changes on the board (used by NNUE)
|
||||||
|
struct DirtyPiece {
|
||||||
|
|
||||||
|
// Number of changed pieces
|
||||||
|
int dirty_num;
|
||||||
|
|
||||||
|
// Max 3 pieces can change in one move. A promotion with capture moves
|
||||||
|
// both the pawn and the captured piece to SQ_NONE and the piece promoted
|
||||||
|
// to from SQ_NONE to the capture square.
|
||||||
|
Piece piece[3];
|
||||||
|
|
||||||
|
// From and to squares, which may be SQ_NONE
|
||||||
|
Square from[3];
|
||||||
|
Square to[3];
|
||||||
|
};
|
||||||
|
|
||||||
/// Score enum stores a middlegame and an endgame value in a single integer (enum).
|
/// Score enum stores a middlegame and an endgame value in a single integer (enum).
|
||||||
/// The least significant 16 bits are used to store the middlegame value and the
|
/// The least significant 16 bits are used to store the middlegame value and the
|
||||||
|
@ -282,11 +295,11 @@ inline Value mg_value(Score s) {
|
||||||
}
|
}
|
||||||
|
|
||||||
#define ENABLE_BASE_OPERATORS_ON(T) \
|
#define ENABLE_BASE_OPERATORS_ON(T) \
|
||||||
constexpr T operator+(T d1, T d2) { return T(int(d1) + int(d2)); } \
|
constexpr T operator+(T d1, int d2) { return T(int(d1) + d2); } \
|
||||||
constexpr T operator-(T d1, T d2) { return T(int(d1) - int(d2)); } \
|
constexpr T operator-(T d1, int d2) { return T(int(d1) - d2); } \
|
||||||
constexpr T operator-(T d) { return T(-int(d)); } \
|
constexpr T operator-(T d) { return T(-int(d)); } \
|
||||||
inline T& operator+=(T& d1, T d2) { return d1 = d1 + d2; } \
|
inline T& operator+=(T& d1, int d2) { return d1 = d1 + d2; } \
|
||||||
inline T& operator-=(T& d1, T d2) { return d1 = d1 - d2; }
|
inline T& operator-=(T& d1, int d2) { return d1 = d1 - d2; }
|
||||||
|
|
||||||
#define ENABLE_INCR_OPERATORS_ON(T) \
|
#define ENABLE_INCR_OPERATORS_ON(T) \
|
||||||
inline T& operator++(T& d) { return d = T(int(d) + 1); } \
|
inline T& operator++(T& d) { return d = T(int(d) + 1); } \
|
||||||
|
@ -304,8 +317,8 @@ inline T& operator/=(T& d, int i) { return d = T(int(d) / i); }
|
||||||
ENABLE_FULL_OPERATORS_ON(Value)
|
ENABLE_FULL_OPERATORS_ON(Value)
|
||||||
ENABLE_FULL_OPERATORS_ON(Direction)
|
ENABLE_FULL_OPERATORS_ON(Direction)
|
||||||
|
|
||||||
ENABLE_INCR_OPERATORS_ON(PieceType)
|
|
||||||
ENABLE_INCR_OPERATORS_ON(Piece)
|
ENABLE_INCR_OPERATORS_ON(Piece)
|
||||||
|
ENABLE_INCR_OPERATORS_ON(PieceType)
|
||||||
ENABLE_INCR_OPERATORS_ON(Square)
|
ENABLE_INCR_OPERATORS_ON(Square)
|
||||||
ENABLE_INCR_OPERATORS_ON(File)
|
ENABLE_INCR_OPERATORS_ON(File)
|
||||||
ENABLE_INCR_OPERATORS_ON(Rank)
|
ENABLE_INCR_OPERATORS_ON(Rank)
|
||||||
|
@ -316,12 +329,6 @@ ENABLE_BASE_OPERATORS_ON(Score)
|
||||||
#undef ENABLE_INCR_OPERATORS_ON
|
#undef ENABLE_INCR_OPERATORS_ON
|
||||||
#undef ENABLE_BASE_OPERATORS_ON
|
#undef ENABLE_BASE_OPERATORS_ON
|
||||||
|
|
||||||
/// Additional operators to add integers to a Value
|
|
||||||
constexpr Value operator+(Value v, int i) { return Value(int(v) + i); }
|
|
||||||
constexpr Value operator-(Value v, int i) { return Value(int(v) - i); }
|
|
||||||
inline Value& operator+=(Value& v, int i) { return v = v + i; }
|
|
||||||
inline Value& operator-=(Value& v, int i) { return v = v - i; }
|
|
||||||
|
|
||||||
/// Additional operators to add a Direction to a Square
|
/// Additional operators to add a Direction to a Square
|
||||||
constexpr Square operator+(Square s, Direction d) { return Square(int(s) + int(d)); }
|
constexpr Square operator+(Square s, Direction d) { return Square(int(s) + int(d)); }
|
||||||
constexpr Square operator-(Square s, Direction d) { return Square(int(s) - int(d)); }
|
constexpr Square operator-(Square s, Direction d) { return Square(int(s) - int(d)); }
|
||||||
|
@ -358,16 +365,16 @@ constexpr Color operator~(Color c) {
|
||||||
return Color(c ^ BLACK); // Toggle color
|
return Color(c ^ BLACK); // Toggle color
|
||||||
}
|
}
|
||||||
|
|
||||||
constexpr Square flip_rank(Square s) {
|
constexpr Square flip_rank(Square s) { // Swap A1 <-> A8
|
||||||
return Square(s ^ SQ_A8);
|
return Square(s ^ SQ_A8);
|
||||||
}
|
}
|
||||||
|
|
||||||
constexpr Square flip_file(Square s) {
|
constexpr Square flip_file(Square s) { // Swap A1 <-> H1
|
||||||
return Square(s ^ SQ_H1);
|
return Square(s ^ SQ_H1);
|
||||||
}
|
}
|
||||||
|
|
||||||
constexpr Piece operator~(Piece pc) {
|
constexpr Piece operator~(Piece pc) {
|
||||||
return Piece(pc ^ 8); // Swap color of piece B_KNIGHT -> W_KNIGHT
|
return Piece(pc ^ 8); // Swap color of piece B_KNIGHT <-> W_KNIGHT
|
||||||
}
|
}
|
||||||
|
|
||||||
constexpr CastlingRights operator&(Color c, CastlingRights cr) {
|
constexpr CastlingRights operator&(Color c, CastlingRights cr) {
|
||||||
|
@ -464,6 +471,11 @@ constexpr bool is_ok(Move m) {
|
||||||
return from_sq(m) != to_sq(m); // Catch MOVE_NULL and MOVE_NONE
|
return from_sq(m) != to_sq(m); // Catch MOVE_NULL and MOVE_NONE
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Based on a congruential pseudo random number generator
|
||||||
|
constexpr Key make_key(uint64_t seed) {
|
||||||
|
return seed * 6364136223846793005ULL + 1442695040888963407ULL;
|
||||||
|
}
|
||||||
|
|
||||||
#endif // #ifndef TYPES_H_INCLUDED
|
#endif // #ifndef TYPES_H_INCLUDED
|
||||||
|
|
||||||
#include "tune.h" // Global visibility to tuning setup
|
#include "tune.h" // Global visibility to tuning setup
|
||||||
|
|
|
@ -1,8 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
||||||
Copyright (C) 2004-2008 Tord Romstad (Glaurung author)
|
Copyright (C) 2004-2020 The Stockfish developers (see AUTHORS file)
|
||||||
Copyright (C) 2008-2015 Marco Costalba, Joona Kiiski, Tord Romstad
|
|
||||||
Copyright (C) 2015-2020 Marco Costalba, Joona Kiiski, Gary Linscott, Tord Romstad
|
|
||||||
|
|
||||||
Stockfish is free software: you can redistribute it and/or modify
|
Stockfish is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
@ -19,6 +17,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <cassert>
|
#include <cassert>
|
||||||
|
#include <cmath>
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include <sstream>
|
#include <sstream>
|
||||||
#include <string>
|
#include <string>
|
||||||
|
@ -77,6 +76,20 @@ namespace {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// trace_eval() prints the evaluation for the current position, consistent with the UCI
|
||||||
|
// options set so far.
|
||||||
|
|
||||||
|
void trace_eval(Position& pos) {
|
||||||
|
|
||||||
|
StateListPtr states(new std::deque<StateInfo>(1));
|
||||||
|
Position p;
|
||||||
|
p.set(pos.fen(), Options["UCI_Chess960"], &states->back(), Threads.main());
|
||||||
|
|
||||||
|
Eval::verify_NNUE();
|
||||||
|
|
||||||
|
sync_cout << "\n" << Eval::trace(p) << sync_endl;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
// setoption() is called when engine receives the "setoption" UCI command. The
|
// setoption() is called when engine receives the "setoption" UCI command. The
|
||||||
// function updates the UCI option ("name") to the given value ("value").
|
// function updates the UCI option ("name") to the given value ("value").
|
||||||
|
@ -165,7 +178,7 @@ namespace {
|
||||||
nodes += Threads.nodes_searched();
|
nodes += Threads.nodes_searched();
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
sync_cout << "\n" << Eval::trace(pos) << sync_endl;
|
trace_eval(pos);
|
||||||
}
|
}
|
||||||
else if (token == "setoption") setoption(is);
|
else if (token == "setoption") setoption(is);
|
||||||
else if (token == "position") position(pos, is, states);
|
else if (token == "position") position(pos, is, states);
|
||||||
|
@ -182,6 +195,28 @@ namespace {
|
||||||
<< "\nNodes/second : " << 1000 * nodes / elapsed << endl;
|
<< "\nNodes/second : " << 1000 * nodes / elapsed << endl;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// The win rate model returns the probability (per mille) of winning given an eval
|
||||||
|
// and a game-ply. The model fits rather accurately the LTC fishtest statistics.
|
||||||
|
int win_rate_model(Value v, int ply) {
|
||||||
|
|
||||||
|
// The model captures only up to 240 plies, so limit input (and rescale)
|
||||||
|
double m = std::min(240, ply) / 64.0;
|
||||||
|
|
||||||
|
// Coefficients of a 3rd order polynomial fit based on fishtest data
|
||||||
|
// for two parameters needed to transform eval to the argument of a
|
||||||
|
// logistic function.
|
||||||
|
double as[] = {-8.24404295, 64.23892342, -95.73056462, 153.86478679};
|
||||||
|
double bs[] = {-3.37154371, 28.44489198, -56.67657741, 72.05858751};
|
||||||
|
double a = (((as[0] * m + as[1]) * m + as[2]) * m) + as[3];
|
||||||
|
double b = (((bs[0] * m + bs[1]) * m + bs[2]) * m) + bs[3];
|
||||||
|
|
||||||
|
// Transform eval to centipawns with limited range
|
||||||
|
double x = std::clamp(double(100 * v) / PawnValueEg, -1000.0, 1000.0);
|
||||||
|
|
||||||
|
// Return win rate in per mille (rounded to nearest)
|
||||||
|
return int(0.5 + 1000 / (1 + std::exp((a - x) / b)));
|
||||||
|
}
|
||||||
|
|
||||||
} // namespace
|
} // namespace
|
||||||
|
|
||||||
|
|
||||||
|
@ -238,7 +273,7 @@ void UCI::loop(int argc, char* argv[]) {
|
||||||
else if (token == "flip") pos.flip();
|
else if (token == "flip") pos.flip();
|
||||||
else if (token == "bench") bench(pos, is, states);
|
else if (token == "bench") bench(pos, is, states);
|
||||||
else if (token == "d") sync_cout << pos << sync_endl;
|
else if (token == "d") sync_cout << pos << sync_endl;
|
||||||
else if (token == "eval") sync_cout << Eval::trace(pos) << sync_endl;
|
else if (token == "eval") trace_eval(pos);
|
||||||
else if (token == "compiler") sync_cout << compiler_info() << sync_endl;
|
else if (token == "compiler") sync_cout << compiler_info() << sync_endl;
|
||||||
else
|
else
|
||||||
sync_cout << "Unknown command: " << cmd << sync_endl;
|
sync_cout << "Unknown command: " << cmd << sync_endl;
|
||||||
|
@ -269,6 +304,22 @@ string UCI::value(Value v) {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/// UCI::wdl() report WDL statistics given an evaluation and a game ply, based on
|
||||||
|
/// data gathered for fishtest LTC games.
|
||||||
|
|
||||||
|
string UCI::wdl(Value v, int ply) {
|
||||||
|
|
||||||
|
stringstream ss;
|
||||||
|
|
||||||
|
int wdl_w = win_rate_model( v, ply);
|
||||||
|
int wdl_l = win_rate_model(-v, ply);
|
||||||
|
int wdl_d = 1000 - wdl_w - wdl_l;
|
||||||
|
ss << " wdl " << wdl_w << " " << wdl_d << " " << wdl_l;
|
||||||
|
|
||||||
|
return ss.str();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/// UCI::square() converts a Square to a string in algebraic notation (g1, a7, etc.)
|
/// UCI::square() converts a Square to a string in algebraic notation (g1, a7, etc.)
|
||||||
|
|
||||||
std::string UCI::square(Square s) {
|
std::string UCI::square(Square s) {
|
||||||
|
|
|
@ -1,8 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
||||||
Copyright (C) 2004-2008 Tord Romstad (Glaurung author)
|
Copyright (C) 2004-2020 The Stockfish developers (see AUTHORS file)
|
||||||
Copyright (C) 2008-2015 Marco Costalba, Joona Kiiski, Tord Romstad
|
|
||||||
Copyright (C) 2015-2020 Marco Costalba, Joona Kiiski, Gary Linscott, Tord Romstad
|
|
||||||
|
|
||||||
Stockfish is free software: you can redistribute it and/or modify
|
Stockfish is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
@ -73,6 +71,7 @@ std::string value(Value v);
|
||||||
std::string square(Square s);
|
std::string square(Square s);
|
||||||
std::string move(Move m, bool chess960);
|
std::string move(Move m, bool chess960);
|
||||||
std::string pv(const Position& pos, Depth depth, Value alpha, Value beta);
|
std::string pv(const Position& pos, Depth depth, Value alpha, Value beta);
|
||||||
|
std::string wdl(Value v, int ply);
|
||||||
Move to_move(const Position& pos, std::string& str);
|
Move to_move(const Position& pos, std::string& str);
|
||||||
|
|
||||||
} // namespace UCI
|
} // namespace UCI
|
||||||
|
|
|
@ -1,8 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
||||||
Copyright (C) 2004-2008 Tord Romstad (Glaurung author)
|
Copyright (C) 2004-2020 The Stockfish developers (see AUTHORS file)
|
||||||
Copyright (C) 2008-2015 Marco Costalba, Joona Kiiski, Tord Romstad
|
|
||||||
Copyright (C) 2015-2020 Marco Costalba, Joona Kiiski, Gary Linscott, Tord Romstad
|
|
||||||
|
|
||||||
Stockfish is free software: you can redistribute it and/or modify
|
Stockfish is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
@ -23,6 +21,7 @@
|
||||||
#include <ostream>
|
#include <ostream>
|
||||||
#include <sstream>
|
#include <sstream>
|
||||||
|
|
||||||
|
#include "evaluate.h"
|
||||||
#include "misc.h"
|
#include "misc.h"
|
||||||
#include "search.h"
|
#include "search.h"
|
||||||
#include "thread.h"
|
#include "thread.h"
|
||||||
|
@ -42,7 +41,8 @@ void on_hash_size(const Option& o) { TT.resize(size_t(o)); }
|
||||||
void on_logger(const Option& o) { start_logger(o); }
|
void on_logger(const Option& o) { start_logger(o); }
|
||||||
void on_threads(const Option& o) { Threads.set(size_t(o)); }
|
void on_threads(const Option& o) { Threads.set(size_t(o)); }
|
||||||
void on_tb_path(const Option& o) { Tablebases::init(o); }
|
void on_tb_path(const Option& o) { Tablebases::init(o); }
|
||||||
|
void on_use_NNUE(const Option& ) { Eval::init_NNUE(); }
|
||||||
|
void on_eval_file(const Option& ) { Eval::init_NNUE(); }
|
||||||
|
|
||||||
/// Our case insensitive less() function as required by UCI protocol
|
/// Our case insensitive less() function as required by UCI protocol
|
||||||
bool CaseInsensitiveLess::operator() (const string& s1, const string& s2) const {
|
bool CaseInsensitiveLess::operator() (const string& s1, const string& s2) const {
|
||||||
|
@ -52,7 +52,7 @@ bool CaseInsensitiveLess::operator() (const string& s1, const string& s2) const
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/// init() initializes the UCI options to their hard-coded default values
|
/// UCI::init() initializes the UCI options to their hard-coded default values
|
||||||
|
|
||||||
void init(OptionsMap& o) {
|
void init(OptionsMap& o) {
|
||||||
|
|
||||||
|
@ -68,17 +68,19 @@ void init(OptionsMap& o) {
|
||||||
o["MultiPV"] << Option(1, 1, 500);
|
o["MultiPV"] << Option(1, 1, 500);
|
||||||
o["Skill Level"] << Option(20, 0, 20);
|
o["Skill Level"] << Option(20, 0, 20);
|
||||||
o["Move Overhead"] << Option(10, 0, 5000);
|
o["Move Overhead"] << Option(10, 0, 5000);
|
||||||
o["Minimum Thinking Time"] << Option( 0, 0, 5000);
|
|
||||||
o["Slow Mover"] << Option(100, 10, 1000);
|
o["Slow Mover"] << Option(100, 10, 1000);
|
||||||
o["nodestime"] << Option(0, 0, 10000);
|
o["nodestime"] << Option(0, 0, 10000);
|
||||||
o["UCI_Chess960"] << Option(false);
|
o["UCI_Chess960"] << Option(false);
|
||||||
o["UCI_AnalyseMode"] << Option(false);
|
o["UCI_AnalyseMode"] << Option(false);
|
||||||
o["UCI_LimitStrength"] << Option(false);
|
o["UCI_LimitStrength"] << Option(false);
|
||||||
o["UCI_Elo"] << Option(1350, 1350, 2850);
|
o["UCI_Elo"] << Option(1350, 1350, 2850);
|
||||||
|
o["UCI_ShowWDL"] << Option(false);
|
||||||
o["SyzygyPath"] << Option("<empty>", on_tb_path);
|
o["SyzygyPath"] << Option("<empty>", on_tb_path);
|
||||||
o["SyzygyProbeDepth"] << Option(1, 1, 100);
|
o["SyzygyProbeDepth"] << Option(1, 1, 100);
|
||||||
o["Syzygy50MoveRule"] << Option(true);
|
o["Syzygy50MoveRule"] << Option(true);
|
||||||
o["SyzygyProbeLimit"] << Option(7, 0, 7);
|
o["SyzygyProbeLimit"] << Option(7, 0, 7);
|
||||||
|
o["Use NNUE"] << Option(true, on_use_NNUE);
|
||||||
|
o["EvalFile"] << Option(EvalFileDefaultName, on_eval_file);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user