]> git.sesse.net Git - stockfish/blob - src/pawns.cpp
LMR simplification
[stockfish] / src / pawns.cpp
1 /*
2   Stockfish, a UCI chess playing engine derived from Glaurung 2.1
3   Copyright (C) 2004-2008 Tord Romstad (Glaurung author)
4   Copyright (C) 2008-2015 Marco Costalba, Joona Kiiski, Tord Romstad
5   Copyright (C) 2015-2018 Marco Costalba, Joona Kiiski, Gary Linscott, Tord Romstad
6
7   Stockfish is free software: you can redistribute it and/or modify
8   it under the terms of the GNU General Public License as published by
9   the Free Software Foundation, either version 3 of the License, or
10   (at your option) any later version.
11
12   Stockfish is distributed in the hope that it will be useful,
13   but WITHOUT ANY WARRANTY; without even the implied warranty of
14   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15   GNU General Public License for more details.
16
17   You should have received a copy of the GNU General Public License
18   along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 */
20
21 #include <algorithm>
22 #include <cassert>
23
24 #include "bitboard.h"
25 #include "pawns.h"
26 #include "position.h"
27 #include "thread.h"
28
29 namespace {
30
31   #define V Value
32   #define S(mg, eg) make_score(mg, eg)
33
34   // Pawn penalties
35  constexpr Score Isolated = S( 5, 15);
36  constexpr Score Backward = S( 9, 24);
37  constexpr Score Doubled  = S(11, 56);
38
39   // Connected pawn bonus by opposed, phalanx, #support and rank
40   Score Connected[2][2][3][RANK_NB];
41
42   // Strength of pawn shelter for our king by [distance from edge][rank].
43   // RANK_1 = 0 is used for files where we have no pawn, or pawn is behind our king.
44   constexpr Value ShelterStrength[int(FILE_NB) / 2][RANK_NB] = {
45     { V( -3), V( 81), V( 93), V( 58), V( 39), V( 18), V(  25) },
46     { V(-40), V( 61), V( 35), V(-49), V(-29), V(-11), V( -63) },
47     { V( -7), V( 75), V( 23), V( -2), V( 32), V(  3), V( -45) },
48     { V(-36), V(-13), V(-29), V(-52), V(-48), V(-67), V(-166) }
49   };
50
51   // Danger of enemy pawns moving toward our king by [distance from edge][rank].
52   // RANK_1 = 0 is used for files where the enemy has no pawn, or their pawn
53   // is behind our king.
54   constexpr Value UnblockedStorm[int(FILE_NB) / 2][RANK_NB] = {
55     { V( 89), V(107), V(123), V(93), V(57), V( 45), V( 51) },
56     { V( 44), V(-18), V(123), V(46), V(39), V( -7), V( 23) },
57     { V(  4), V( 52), V(162), V(37), V( 7), V(-14), V( -2) },
58     { V(-10), V(-14), V( 90), V(15), V( 2), V( -7), V(-16) }
59   };
60
61   // Danger of blocked enemy pawns storming our king, by rank
62   constexpr Value BlockedStorm[RANK_NB] =
63     { V(0), V(0), V(66), V(6), V(5), V(1), V(15) };
64
65   #undef S
66   #undef V
67
68   template<Color Us>
69   Score evaluate(const Position& pos, Pawns::Entry* e) {
70
71     constexpr Color     Them = (Us == WHITE ? BLACK : WHITE);
72     constexpr Direction Up   = (Us == WHITE ? NORTH : SOUTH);
73
74     Bitboard b, neighbours, stoppers, doubled, supported, phalanx;
75     Bitboard lever, leverPush;
76     Square s;
77     bool opposed, backward;
78     Score score = SCORE_ZERO;
79     const Square* pl = pos.squares<PAWN>(Us);
80
81     Bitboard ourPawns   = pos.pieces(  Us, PAWN);
82     Bitboard theirPawns = pos.pieces(Them, PAWN);
83
84     e->passedPawns[Us] = e->pawnAttacksSpan[Us] = e->weakUnopposed[Us] = 0;
85     e->semiopenFiles[Us] = 0xFF;
86     e->kingSquares[Us]   = SQ_NONE;
87     e->pawnAttacks[Us]   = pawn_attacks_bb<Us>(ourPawns);
88     e->pawnsOnSquares[Us][BLACK] = popcount(ourPawns & DarkSquares);
89     e->pawnsOnSquares[Us][WHITE] = pos.count<PAWN>(Us) - e->pawnsOnSquares[Us][BLACK];
90
91     // Loop through all pawns of the current color and score each pawn
92     while ((s = *pl++) != SQ_NONE)
93     {
94         assert(pos.piece_on(s) == make_piece(Us, PAWN));
95
96         File f = file_of(s);
97
98         e->semiopenFiles[Us]   &= ~(1 << f);
99         e->pawnAttacksSpan[Us] |= pawn_attack_span(Us, s);
100
101         // Flag the pawn
102         opposed    = theirPawns & forward_file_bb(Us, s);
103         stoppers   = theirPawns & passed_pawn_mask(Us, s);
104         lever      = theirPawns & PawnAttacks[Us][s];
105         leverPush  = theirPawns & PawnAttacks[Us][s + Up];
106         doubled    = ourPawns   & (s - Up);
107         neighbours = ourPawns   & adjacent_files_bb(f);
108         phalanx    = neighbours & rank_bb(s);
109         supported  = neighbours & rank_bb(s - Up);
110
111         // A pawn is backward when it is behind all pawns of the same color
112         // on the adjacent files and cannot be safely advanced.
113         backward =  !(ourPawns & pawn_attack_span(Them, s + Up))
114                   && (stoppers & (leverPush | (s + Up)));
115
116         // Passed pawns will be properly scored in evaluation because we need
117         // full attack info to evaluate them. Include also not passed pawns
118         // which could become passed after one or two pawn pushes when are
119         // not attacked more times than defended.
120         if (   !(stoppers ^ lever ^ leverPush)
121             && !(ourPawns & forward_file_bb(Us, s))
122             && popcount(supported) >= popcount(lever) - 1
123             && popcount(phalanx)   >= popcount(leverPush))
124             e->passedPawns[Us] |= s;
125
126         else if (   stoppers == SquareBB[s + Up]
127                  && relative_rank(Us, s) >= RANK_5)
128         {
129             b = shift<Up>(supported) & ~theirPawns;
130             while (b)
131                 if (!more_than_one(theirPawns & PawnAttacks[Us][pop_lsb(&b)]))
132                     e->passedPawns[Us] |= s;
133         }
134
135         // Score this pawn
136         if (supported | phalanx)
137             score += Connected[opposed][bool(phalanx)][popcount(supported)][relative_rank(Us, s)];
138
139         else if (!neighbours)
140             score -= Isolated, e->weakUnopposed[Us] += !opposed;
141
142         else if (backward)
143             score -= Backward, e->weakUnopposed[Us] += !opposed;
144
145         if (doubled && !supported)
146             score -= Doubled;
147     }
148
149     return score;
150   }
151
152 } // namespace
153
154 namespace Pawns {
155
156 /// Pawns::init() initializes some tables needed by evaluation. Instead of using
157 /// hard-coded tables, when makes sense, we prefer to calculate them with a formula
158 /// to reduce independent parameters and to allow easier tuning and better insight.
159
160 void init() {
161
162   static constexpr int Seed[RANK_NB] = { 0, 13, 24, 18, 65, 100, 175, 330 };
163
164   for (int opposed = 0; opposed <= 1; ++opposed)
165       for (int phalanx = 0; phalanx <= 1; ++phalanx)
166           for (int support = 0; support <= 2; ++support)
167               for (Rank r = RANK_2; r < RANK_8; ++r)
168   {
169       int v = 17 * support;
170       v += (Seed[r] + (phalanx ? (Seed[r + 1] - Seed[r]) / 2 : 0)) >> opposed;
171
172       Connected[opposed][phalanx][support][r] = make_score(v, v * (r - 2) / 4);
173   }
174 }
175
176
177 /// Pawns::probe() looks up the current position's pawns configuration in
178 /// the pawns hash table. It returns a pointer to the Entry if the position
179 /// is found. Otherwise a new Entry is computed and stored there, so we don't
180 /// have to recompute all when the same pawns configuration occurs again.
181
182 Entry* probe(const Position& pos) {
183
184   Key key = pos.pawn_key();
185   Entry* e = pos.this_thread()->pawnsTable[key];
186
187   if (e->key == key)
188       return e;
189
190   e->key = key;
191   e->scores[WHITE] = evaluate<WHITE>(pos, e);
192   e->scores[BLACK] = evaluate<BLACK>(pos, e);
193   e->openFiles = popcount(e->semiopenFiles[WHITE] & e->semiopenFiles[BLACK]);
194   e->asymmetry = popcount(  (e->passedPawns[WHITE]   | e->passedPawns[BLACK])
195                           | (e->semiopenFiles[WHITE] ^ e->semiopenFiles[BLACK]));
196
197   return e;
198 }
199
200
201 /// Entry::evaluate_shelter() calculates the shelter bonus and the storm
202 /// penalty for a king, looking at the king file and the two closest files.
203
204 template<Color Us>
205 Value Entry::evaluate_shelter(const Position& pos, Square ksq) {
206
207   constexpr Color     Them = (Us == WHITE ? BLACK : WHITE);
208   constexpr Direction Down = (Us == WHITE ? SOUTH : NORTH);
209   constexpr Bitboard  BlockRanks = (Us == WHITE ? Rank1BB | Rank2BB : Rank8BB | Rank7BB);
210
211   Bitboard b = pos.pieces(PAWN) & ~forward_ranks_bb(Them, ksq);
212   Bitboard ourPawns = b & pos.pieces(Us);
213   Bitboard theirPawns = b & pos.pieces(Them);
214
215   Value safety = (ourPawns & file_bb(ksq)) ? Value(5) : Value(-5);
216
217   if (shift<Down>(theirPawns) & (FileABB | FileHBB) & BlockRanks & ksq)
218       safety += Value(374);
219
220   File center = std::max(FILE_B, std::min(FILE_G, file_of(ksq)));
221   for (File f = File(center - 1); f <= File(center + 1); ++f)
222   {
223       b = ourPawns & file_bb(f);
224       int ourRank = b ? relative_rank(Us, backmost_sq(Us, b)) : 0;
225
226       b = theirPawns & file_bb(f);
227       int theirRank = b ? relative_rank(Us, frontmost_sq(Them, b)) : 0;
228
229       int d = std::min(f, ~f);
230       safety += ShelterStrength[d][ourRank];
231       safety -= (ourRank && (ourRank == theirRank - 1)) ? BlockedStorm[theirRank]
232                                                         : UnblockedStorm[d][theirRank];
233   }
234
235   return safety;
236 }
237
238
239 /// Entry::do_king_safety() calculates a bonus for king safety. It is called only
240 /// when king square changes, which is about 20% of total king_safety() calls.
241
242 template<Color Us>
243 Score Entry::do_king_safety(const Position& pos, Square ksq) {
244
245   kingSquares[Us] = ksq;
246   castlingRights[Us] = pos.can_castle(Us);
247   int minKingPawnDistance = 0;
248
249   Bitboard pawns = pos.pieces(Us, PAWN);
250   if (pawns)
251       while (!(DistanceRingBB[ksq][minKingPawnDistance++] & pawns)) {}
252
253   Value bonus = evaluate_shelter<Us>(pos, ksq);
254
255   // If we can castle use the bonus after the castling if it is bigger
256   if (pos.can_castle(MakeCastling<Us, KING_SIDE>::right))
257       bonus = std::max(bonus, evaluate_shelter<Us>(pos, relative_square(Us, SQ_G1)));
258
259   if (pos.can_castle(MakeCastling<Us, QUEEN_SIDE>::right))
260       bonus = std::max(bonus, evaluate_shelter<Us>(pos, relative_square(Us, SQ_C1)));
261
262   return make_score(bonus, -16 * minKingPawnDistance);
263 }
264
265 // Explicit template instantiation
266 template Score Entry::do_king_safety<WHITE>(const Position& pos, Square ksq);
267 template Score Entry::do_king_safety<BLACK>(const Position& pos, Square ksq);
268
269 } // namespace Pawns