]> git.sesse.net Git - stockfish/blob - src/material.cpp
Don't overwrite exsisting TT with null search value
[stockfish] / src / material.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-2010 Marco Costalba, Joona Kiiski, Tord Romstad
5
6   Stockfish is free software: you can redistribute it and/or modify
7   it under the terms of the GNU General Public License as published by
8   the Free Software Foundation, either version 3 of the License, or
9   (at your option) any later version.
10
11   Stockfish is distributed in the hope that it will be useful,
12   but WITHOUT ANY WARRANTY; without even the implied warranty of
13   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14   GNU General Public License for more details.
15
16   You should have received a copy of the GNU General Public License
17   along with this program.  If not, see <http://www.gnu.org/licenses/>.
18 */
19
20
21 ////
22 //// Includes
23 ////
24
25 #include <cassert>
26 #include <sstream>
27 #include <map>
28
29 #include "material.h"
30
31 using namespace std;
32
33
34 ////
35 //// Local definitions
36 ////
37
38 namespace {
39
40   // Values modified by Joona Kiiski
41   const Value MidgameLimit = Value(15581);
42   const Value EndgameLimit = Value(3998);
43
44   // Polynomial material balance parameters
45   const Value RedundantQueenPenalty = Value(320);
46   const Value RedundantRookPenalty  = Value(554);
47
48   const int LinearCoefficients[6] = { 1617, -162, -1172, -190, 105, 26 };
49
50   const int QuadraticCoefficientsSameColor[][6] = {
51   { 7, 7, 7, 7, 7, 7 }, { 39, 2, 7, 7, 7, 7 }, { 35, 271, -4, 7, 7, 7 },
52   { 7, 25, 4, 7, 7, 7 }, { -27, -2, 46, 100, 56, 7 }, { 58, 29, 83, 148, -3, -25 } };
53
54   const int QuadraticCoefficientsOppositeColor[][6] = {
55   { 41, 41, 41, 41, 41, 41 }, { 37, 41, 41, 41, 41, 41 }, { 10, 62, 41, 41, 41, 41 },
56   { 57, 64, 39, 41, 41, 41 }, { 50, 40, 23, -22, 41, 41 }, { 106, 101, 3, 151, 171, 41 } };
57
58   // Named endgame evaluation and scaling functions, these
59   // are accessed direcly and not through the function maps.
60   EvaluationFunction<KmmKm> EvaluateKmmKm(WHITE);
61   EvaluationFunction<KXK>   EvaluateKXK(WHITE), EvaluateKKX(BLACK);
62   ScalingFunction<KBPsK>    ScaleKBPsK(WHITE),  ScaleKKBPs(BLACK);
63   ScalingFunction<KQKRPs>   ScaleKQKRPs(WHITE), ScaleKRPsKQ(BLACK);
64   ScalingFunction<KPsK>     ScaleKPsK(WHITE),   ScaleKKPs(BLACK);
65   ScalingFunction<KPKP>     ScaleKPKPw(WHITE),  ScaleKPKPb(BLACK);
66
67   typedef EndgameEvaluationFunctionBase EF;
68   typedef EndgameScalingFunctionBase SF;
69 }
70
71
72 ////
73 //// Classes
74 ////
75
76 /// EndgameFunctions class stores endgame evaluation and scaling functions
77 /// in two std::map. Because STL library is not guaranteed to be thread
78 /// safe even for read access, the maps, although with identical content,
79 /// are replicated for each thread. This is faster then using locks.
80
81 class EndgameFunctions {
82 public:
83   EndgameFunctions();
84   ~EndgameFunctions();
85   template<class T> T* get(Key key) const;
86
87 private:
88   template<class T> void add(const string& keyCode);
89
90   static Key buildKey(const string& keyCode);
91   static const string swapColors(const string& keyCode);
92
93   // Here we store two maps, for evaluate and scaling functions
94   pair<map<Key, EF*>, map<Key, SF*> > maps;
95
96   // Maps accessing functions returning const and non-const references
97   template<typename T> const map<Key, T*>& get() const { return maps.first; }
98   template<typename T> map<Key, T*>& get() { return maps.first; }
99 };
100
101 // Explicit specializations of a member function shall be declared in
102 // the namespace of which the class template is a member.
103 template<> const map<Key, SF*>&
104 EndgameFunctions::get<SF>() const { return maps.second; }
105
106 template<> map<Key, SF*>&
107 EndgameFunctions::get<SF>() { return maps.second; }
108
109
110 ////
111 //// Functions
112 ////
113
114 /// MaterialInfoTable c'tor and d'tor, called once by each thread
115
116 MaterialInfoTable::MaterialInfoTable(unsigned int numOfEntries) {
117
118   size = numOfEntries;
119   entries = new MaterialInfo[size];
120   funcs = new EndgameFunctions();
121
122   if (!entries || !funcs)
123   {
124       cerr << "Failed to allocate " << numOfEntries * sizeof(MaterialInfo)
125            << " bytes for material hash table." << endl;
126       Application::exit_with_failure();
127   }
128 }
129
130 MaterialInfoTable::~MaterialInfoTable() {
131
132   delete funcs;
133   delete [] entries;
134 }
135
136
137 /// MaterialInfoTable::game_phase() calculates the phase given the current
138 /// position. Because the phase is strictly a function of the material, it
139 /// is stored in MaterialInfo.
140
141 Phase MaterialInfoTable::game_phase(const Position& pos) {
142
143   Value npm = pos.non_pawn_material(WHITE) + pos.non_pawn_material(BLACK);
144
145   if (npm >= MidgameLimit)
146       return PHASE_MIDGAME;
147   else if (npm <= EndgameLimit)
148       return PHASE_ENDGAME;
149
150   return Phase(((npm - EndgameLimit) * 128) / (MidgameLimit - EndgameLimit));
151 }
152
153 /// MaterialInfoTable::get_material_info() takes a position object as input,
154 /// computes or looks up a MaterialInfo object, and returns a pointer to it.
155 /// If the material configuration is not already present in the table, it
156 /// is stored there, so we don't have to recompute everything when the
157 /// same material configuration occurs again.
158
159 MaterialInfo* MaterialInfoTable::get_material_info(const Position& pos) {
160
161   Key key = pos.get_material_key();
162   int index = key & (size - 1);
163   MaterialInfo* mi = entries + index;
164
165   // If mi->key matches the position's material hash key, it means that we
166   // have analysed this material configuration before, and we can simply
167   // return the information we found the last time instead of recomputing it.
168   if (mi->key == key)
169       return mi;
170
171   // Clear the MaterialInfo object, and set its key
172   mi->clear();
173   mi->key = key;
174
175   // Store game phase
176   mi->gamePhase = MaterialInfoTable::game_phase(pos);
177
178   // Let's look if we have a specialized evaluation function for this
179   // particular material configuration. First we look for a fixed
180   // configuration one, then a generic one if previous search failed.
181   if ((mi->evaluationFunction = funcs->get<EF>(key)) != NULL)
182       return mi;
183
184   else if (   pos.non_pawn_material(BLACK) == Value(0)
185            && pos.piece_count(BLACK, PAWN) == 0
186            && pos.non_pawn_material(WHITE) >= RookValueMidgame)
187   {
188       mi->evaluationFunction = &EvaluateKXK;
189       return mi;
190   }
191   else if (   pos.non_pawn_material(WHITE) == Value(0)
192            && pos.piece_count(WHITE, PAWN) == 0
193            && pos.non_pawn_material(BLACK) >= RookValueMidgame)
194   {
195       mi->evaluationFunction = &EvaluateKKX;
196       return mi;
197   }
198   else if (   pos.pieces(PAWN) == EmptyBoardBB
199            && pos.pieces(ROOK) == EmptyBoardBB
200            && pos.pieces(QUEEN) == EmptyBoardBB)
201   {
202       // Minor piece endgame with at least one minor piece per side and
203       // no pawns. Note that the case KmmK is already handled by KXK.
204       assert((pos.pieces(KNIGHT, WHITE) | pos.pieces(BISHOP, WHITE)));
205       assert((pos.pieces(KNIGHT, BLACK) | pos.pieces(BISHOP, BLACK)));
206
207       if (   pos.piece_count(WHITE, BISHOP) + pos.piece_count(WHITE, KNIGHT) <= 2
208           && pos.piece_count(BLACK, BISHOP) + pos.piece_count(BLACK, KNIGHT) <= 2)
209       {
210           mi->evaluationFunction = &EvaluateKmmKm;
211           return mi;
212       }
213   }
214
215   // OK, we didn't find any special evaluation function for the current
216   // material configuration. Is there a suitable scaling function?
217   //
218   // The code below is rather messy, and it could easily get worse later,
219   // if we decide to add more special cases. We face problems when there
220   // are several conflicting applicable scaling functions and we need to
221   // decide which one to use.
222   SF* sf;
223
224   if ((sf = funcs->get<SF>(key)) != NULL)
225   {
226       mi->scalingFunction[sf->color()] = sf;
227       return mi;
228   }
229
230   // Generic scaling functions that refer to more then one material
231   // distribution. Should be probed after the specialized ones.
232   // Note that these ones don't return after setting the function.
233   if (   pos.non_pawn_material(WHITE) == BishopValueMidgame
234       && pos.piece_count(WHITE, BISHOP) == 1
235       && pos.piece_count(WHITE, PAWN) >= 1)
236       mi->scalingFunction[WHITE] = &ScaleKBPsK;
237
238   if (   pos.non_pawn_material(BLACK) == BishopValueMidgame
239       && pos.piece_count(BLACK, BISHOP) == 1
240       && pos.piece_count(BLACK, PAWN) >= 1)
241       mi->scalingFunction[BLACK] = &ScaleKKBPs;
242
243   if (   pos.piece_count(WHITE, PAWN) == 0
244       && pos.non_pawn_material(WHITE) == QueenValueMidgame
245       && pos.piece_count(WHITE, QUEEN) == 1
246       && pos.piece_count(BLACK, ROOK) == 1
247       && pos.piece_count(BLACK, PAWN) >= 1)
248       mi->scalingFunction[WHITE] = &ScaleKQKRPs;
249
250   else if (   pos.piece_count(BLACK, PAWN) == 0
251            && pos.non_pawn_material(BLACK) == QueenValueMidgame
252            && pos.piece_count(BLACK, QUEEN) == 1
253            && pos.piece_count(WHITE, ROOK) == 1
254            && pos.piece_count(WHITE, PAWN) >= 1)
255       mi->scalingFunction[BLACK] = &ScaleKRPsKQ;
256
257   if (pos.non_pawn_material(WHITE) + pos.non_pawn_material(BLACK) == Value(0))
258   {
259       if (pos.piece_count(BLACK, PAWN) == 0)
260       {
261           assert(pos.piece_count(WHITE, PAWN) >= 2);
262           mi->scalingFunction[WHITE] = &ScaleKPsK;
263       }
264       else if (pos.piece_count(WHITE, PAWN) == 0)
265       {
266           assert(pos.piece_count(BLACK, PAWN) >= 2);
267           mi->scalingFunction[BLACK] = &ScaleKKPs;
268       }
269       else if (pos.piece_count(WHITE, PAWN) == 1 && pos.piece_count(BLACK, PAWN) == 1)
270       {
271           // This is a special case because we set scaling functions
272           // for both colors instead of only one.
273           mi->scalingFunction[WHITE] = &ScaleKPKPw;
274           mi->scalingFunction[BLACK] = &ScaleKPKPb;
275       }
276   }
277
278   // Compute the space weight
279   if (pos.non_pawn_material(WHITE) + pos.non_pawn_material(BLACK) >=
280       2*QueenValueMidgame + 4*RookValueMidgame + 2*KnightValueMidgame)
281   {
282       int minorPieceCount =  pos.piece_count(WHITE, KNIGHT)
283                            + pos.piece_count(BLACK, KNIGHT)
284                            + pos.piece_count(WHITE, BISHOP)
285                            + pos.piece_count(BLACK, BISHOP);
286
287       mi->spaceWeight = minorPieceCount * minorPieceCount;
288   }
289
290   // Evaluate the material balance
291   const int pieceCount[2][6] = { { pos.piece_count(WHITE, BISHOP) > 1, pos.piece_count(WHITE, PAWN), pos.piece_count(WHITE, KNIGHT),
292                                    pos.piece_count(WHITE, BISHOP), pos.piece_count(WHITE, ROOK), pos.piece_count(WHITE, QUEEN) },
293                                  { pos.piece_count(BLACK, BISHOP) > 1, pos.piece_count(BLACK, PAWN), pos.piece_count(BLACK, KNIGHT),
294                                    pos.piece_count(BLACK, BISHOP), pos.piece_count(BLACK, ROOK), pos.piece_count(BLACK, QUEEN) } };
295   Color c, them;
296   int sign, pt1, pt2, pc;
297   int v, vv, matValue = 0;
298
299   for (c = WHITE, sign = 1; c <= BLACK; c++, sign = -sign)
300   {
301     // No pawns makes it difficult to win, even with a material advantage
302     if (   pos.piece_count(c, PAWN) == 0
303         && pos.non_pawn_material(c) - pos.non_pawn_material(opposite_color(c)) <= BishopValueMidgame)
304     {
305         if (   pos.non_pawn_material(c) == pos.non_pawn_material(opposite_color(c))
306             || pos.non_pawn_material(c) < RookValueMidgame)
307             mi->factor[c] = 0;
308         else
309         {
310             switch (pos.piece_count(c, BISHOP)) {
311             case 2:
312                 mi->factor[c] = 32;
313                 break;
314             case 1:
315                 mi->factor[c] = 12;
316                 break;
317             case 0:
318                 mi->factor[c] = 6;
319                 break;
320             }
321         }
322     }
323
324     // Redundancy of major pieces, formula based on Kaufman's paper
325     // "The Evaluation of Material Imbalances in Chess"
326     // http://mywebpages.comcast.net/danheisman/Articles/evaluation_of_material_imbalance.htm
327     if (pieceCount[c][ROOK] >= 1)
328         matValue -= sign * ((pieceCount[c][ROOK] - 1) * RedundantRookPenalty + pieceCount[c][QUEEN] * RedundantQueenPenalty);
329
330     them = opposite_color(c);
331     v = 0;
332
333     // Second-degree polynomial material imbalance by Tord Romstad
334     //
335     // We use NO_PIECE_TYPE as a place holder for the bishop pair "extended piece",
336     // this allow us to be more flexible in defining bishop pair bonuses.
337     for (pt1 = NO_PIECE_TYPE; pt1 <= QUEEN; pt1++)
338     {
339         pc = pieceCount[c][pt1];
340         if (!pc)
341             continue;
342
343         vv = LinearCoefficients[pt1];
344
345         for (pt2 = NO_PIECE_TYPE; pt2 <= pt1; pt2++)
346             vv +=  pieceCount[c][pt2] * QuadraticCoefficientsSameColor[pt1][pt2]
347                  + pieceCount[them][pt2] * QuadraticCoefficientsOppositeColor[pt1][pt2];
348
349         v += pc * vv;
350     }
351     matValue += sign * v;
352   }
353   mi->value = int16_t(matValue / 16);
354   return mi;
355 }
356
357
358 /// EndgameFunctions member definitions.
359
360 EndgameFunctions::EndgameFunctions() {
361
362   add<EvaluationFunction<KNNK>  >("KNNK");
363   add<EvaluationFunction<KPK>   >("KPK");
364   add<EvaluationFunction<KBNK>  >("KBNK");
365   add<EvaluationFunction<KRKP>  >("KRKP");
366   add<EvaluationFunction<KRKB>  >("KRKB");
367   add<EvaluationFunction<KRKN>  >("KRKN");
368   add<EvaluationFunction<KQKR>  >("KQKR");
369   add<EvaluationFunction<KBBKN> >("KBBKN");
370
371   add<ScalingFunction<KNPK>    >("KNPK");
372   add<ScalingFunction<KRPKR>   >("KRPKR");
373   add<ScalingFunction<KBPKB>   >("KBPKB");
374   add<ScalingFunction<KBPPKB>  >("KBPPKB");
375   add<ScalingFunction<KBPKN>   >("KBPKN");
376   add<ScalingFunction<KRPPKRP> >("KRPPKRP");
377 }
378
379 EndgameFunctions::~EndgameFunctions() {
380
381     for (map<Key, EF*>::iterator it = maps.first.begin(); it != maps.first.end(); ++it)
382         delete (*it).second;
383
384     for (map<Key, SF*>::iterator it = maps.second.begin(); it != maps.second.end(); ++it)
385         delete (*it).second;
386 }
387
388 Key EndgameFunctions::buildKey(const string& keyCode) {
389
390     assert(keyCode.length() > 0 && keyCode[0] == 'K');
391     assert(keyCode.length() < 8);
392
393     stringstream s;
394     bool upcase = false;
395
396     // Build up a fen string with the given pieces, note that
397     // the fen string could be of an illegal position.
398     for (size_t i = 0; i < keyCode.length(); i++)
399     {
400         if (keyCode[i] == 'K')
401             upcase = !upcase;
402
403         s << char(upcase? toupper(keyCode[i]) : tolower(keyCode[i]));
404     }
405     s << 8 - keyCode.length() << "/8/8/8/8/8/8/8 w -";
406     return Position(s.str()).get_material_key();
407 }
408
409 const string EndgameFunctions::swapColors(const string& keyCode) {
410
411     // Build corresponding key for the opposite color: "KBPKN" -> "KNKBP"
412     size_t idx = keyCode.find("K", 1);
413     return keyCode.substr(idx) + keyCode.substr(0, idx);
414 }
415
416 template<class T>
417 void EndgameFunctions::add(const string& keyCode) {
418
419   typedef typename T::Base F;
420
421   get<F>().insert(pair<Key, F*>(buildKey(keyCode), new T(WHITE)));
422   get<F>().insert(pair<Key, F*>(buildKey(swapColors(keyCode)), new T(BLACK)));
423 }
424
425 template<class T>
426 T* EndgameFunctions::get(Key key) const {
427
428   typename map<Key, T*>::const_iterator it(get<T>().find(key));
429   return (it != get<T>().end() ? it->second : NULL);
430 }