]> git.sesse.net Git - stockfish/blob - src/movepick.cpp
Big trailing whitespace cleanup part 2
[stockfish] / src / movepick.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 Marco Costalba
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
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
22 ////
23 //// Includes
24 ////
25
26 #include <cassert>
27
28 #include "history.h"
29 #include "evaluate.h"
30 #include "movegen.h"
31 #include "movepick.h"
32 #include "search.h"
33 #include "value.h"
34
35
36 ////
37 //// Local definitions
38 ////
39
40 namespace {
41
42   /// Variables
43
44   MovePicker::MovegenPhase PhaseTable[32];
45   int MainSearchPhaseIndex;
46   int EvasionsPhaseIndex;
47   int QsearchWithChecksPhaseIndex;
48   int QsearchNoCapturesPhaseIndex;
49   int QsearchWithoutChecksPhaseIndex;
50   int NoMovesPhaseIndex;
51
52 }
53
54
55
56 ////
57 //// Functions
58 ////
59
60
61 /// Constructor for the MovePicker class.  Apart from the position for which
62 /// it is asked to pick legal moves, MovePicker also wants some information
63 /// to help it to return the presumably good moves first, to decide which
64 /// moves to return (in the quiescence search, for instance, we only want to
65 /// search captures, promotions and some checks) and about how important good
66 /// move ordering is at the current node.
67
68 MovePicker::MovePicker(const Position& p, bool pv, Move ttm,
69                        const SearchStack& ss, Depth d, EvalInfo* ei) : pos(p) {
70   pvNode = pv;
71   ttMove = ttm;
72   mateKiller = (ss.mateKiller == ttm)? MOVE_NONE : ss.mateKiller;
73   killer1 = ss.killers[0];
74   killer2 = ss.killers[1];
75   depth = d;
76   movesPicked = 0;
77   numOfMoves = 0;
78   numOfBadCaptures = 0;
79
80   // With EvalInfo we are able to know how many captures are possible before
81   // generating them. So avoid generating in case we know are zero.
82   Color us = pos.side_to_move();
83   Color them = opposite_color(us);
84   bool noCaptures =    ei
85                    && (ei->attackedBy[us][0] & pos.pieces_of_color(them)) == 0
86                    && !ei->mi->specialized_eval_exists()
87                    && (pos.ep_square() == SQ_NONE)
88                    && !pos.has_pawn_on_7th(us);
89
90   if (p.is_check())
91       phaseIndex = EvasionsPhaseIndex;
92   else if (depth > Depth(0))
93       phaseIndex = MainSearchPhaseIndex;
94   else if (depth == Depth(0))
95       phaseIndex = (noCaptures ? QsearchNoCapturesPhaseIndex : QsearchWithChecksPhaseIndex);
96   else
97       phaseIndex = (noCaptures ? NoMovesPhaseIndex : QsearchWithoutChecksPhaseIndex);
98
99   dc = p.discovered_check_candidates(us);
100   pinned = p.pinned_pieces(p.side_to_move());
101
102   finished = false;
103 }
104
105
106 /// MovePicker::get_next_move() is the most important method of the MovePicker
107 /// class.  It returns a new legal move every time it is called, until there
108 /// are no more moves left of the types we are interested in.
109
110 Move MovePicker::get_next_move() {
111
112   Move move;
113
114   while (true)
115   {
116     // If we already have a list of generated moves, pick the best move from
117     // the list, and return it.
118     move = pick_move_from_list();
119     if (move != MOVE_NONE)
120     {
121         assert(move_is_ok(move));
122         return move;
123     }
124
125     // Next phase
126     phaseIndex++;
127     switch (PhaseTable[phaseIndex]) {
128
129     case PH_TT_MOVE:
130         if (ttMove != MOVE_NONE)
131         {
132             assert(move_is_ok(ttMove));
133             if (move_is_legal(pos, ttMove, pinned))
134                 return ttMove;
135         }
136         break;
137
138     case PH_MATE_KILLER:
139         if (mateKiller != MOVE_NONE)
140         {
141             assert(move_is_ok(mateKiller));
142             if (move_is_legal(pos, mateKiller, pinned))
143                 return mateKiller;
144        }
145        break;
146
147     case PH_GOOD_CAPTURES:
148         numOfMoves = generate_captures(pos, moves);
149         score_captures();
150         movesPicked = 0;
151         break;
152
153     case PH_BAD_CAPTURES:
154         badCapturesPicked = 0;
155         break;
156
157     case PH_NONCAPTURES:
158         numOfMoves = generate_noncaptures(pos, moves);
159         score_noncaptures();
160         movesPicked = 0;
161         break;
162
163     case PH_EVASIONS:
164         assert(pos.is_check());
165         numOfMoves = generate_evasions(pos, moves);
166         score_evasions();
167         movesPicked = 0;
168         break;
169
170     case PH_QCAPTURES:
171         numOfMoves = generate_captures(pos, moves);
172         score_qcaptures();
173         movesPicked = 0;
174         break;
175
176     case PH_QCHECKS:
177         numOfMoves = generate_checks(pos, moves, dc);
178         movesPicked = 0;
179         break;
180
181     case PH_STOP:
182         return MOVE_NONE;
183
184     default:
185         assert(false);
186         return MOVE_NONE;
187     }
188   }
189 }
190
191
192 /// A variant of get_next_move() which takes a lock as a parameter, used to
193 /// prevent multiple threads from picking the same move at a split point.
194
195 Move MovePicker::get_next_move(Lock &lock) {
196
197    lock_grab(&lock);
198    if (finished)
199    {
200        lock_release(&lock);
201        return MOVE_NONE;
202    }
203    Move m = get_next_move();
204    if (m == MOVE_NONE)
205        finished = true;
206
207    lock_release(&lock);
208    return m;
209 }
210
211
212 /// MovePicker::score_captures(), MovePicker::score_noncaptures(),
213 /// MovePicker::score_evasions() and MovePicker::score_qcaptures() assign a
214 /// numerical move ordering score to each move in a move list.  The moves
215 /// with highest scores will be picked first by pick_move_from_list().
216
217 void MovePicker::score_captures() {
218   // Winning and equal captures in the main search are ordered by MVV/LVA.
219   // Suprisingly, this appears to perform slightly better than SEE based
220   // move ordering.  The reason is probably that in a position with a winning
221   // capture, capturing a more valuable (but sufficiently defended) piece
222   // first usually doesn't hurt.  The opponent will have to recapture, and
223   // the hanging piece will still be hanging (except in the unusual cases
224   // where it is possible to recapture with the hanging piece). Exchanging
225   // big pieces before capturing a hanging piece probably helps to reduce
226   // the subtree size.
227   // While scoring captures it moves all captures with negative SEE values
228   // to the badCaptures[] array.
229   Move m;
230   int seeValue;
231
232   for (int i = 0; i < numOfMoves; i++)
233   {
234       m = moves[i].move;
235       seeValue = pos.see(m);
236       if (seeValue >= 0)
237       {
238           if (move_promotion(m))
239               moves[i].score = QueenValueMidgame;
240           else
241               moves[i].score = int(pos.midgame_value_of_piece_on(move_to(m)))
242                               -int(pos.type_of_piece_on(move_from(m)));
243       }
244       else
245       {
246           // Losing capture, move it to the badCaptures[] array
247           assert(numOfBadCaptures < 63);
248           moves[i].score = seeValue;
249           badCaptures[numOfBadCaptures++] = moves[i];
250           moves[i--] = moves[--numOfMoves];
251       }
252   }
253 }
254
255 void MovePicker::score_noncaptures() {
256   // First score by history, when no history is available then use
257   // piece/square tables values. This seems to be better then a
258   // random choice when we don't have an history for any move.
259   Move m;
260   int hs;
261
262   for (int i = 0; i < numOfMoves; i++)
263   {
264       m = moves[i].move;
265
266       if (m == killer1)
267           hs = HistoryMax + 2;
268       else if (m == killer2)
269           hs = HistoryMax + 1;
270       else
271           hs = H.move_ordering_score(pos.piece_on(move_from(m)), m);
272
273       // Ensure history is always preferred to pst
274       if (hs > 0)
275           hs += 1000;
276
277       // pst based scoring
278       moves[i].score = hs + pos.mg_pst_delta(m);
279   }
280 }
281
282 void MovePicker::score_evasions() {
283
284   for (int i = 0; i < numOfMoves; i++)
285   {
286       Move m = moves[i].move;
287       if (m == ttMove)
288           moves[i].score = 2*HistoryMax;
289       else if (!pos.square_is_empty(move_to(m)))
290       {
291           int seeScore = pos.see(m);
292           moves[i].score = (seeScore >= 0)? seeScore + HistoryMax : seeScore;
293       } else
294           moves[i].score = H.move_ordering_score(pos.piece_on(move_from(m)), m);
295   }
296 }
297
298 void MovePicker::score_qcaptures() {
299
300   // Use MVV/LVA ordering
301   for (int i = 0; i < numOfMoves; i++)
302   {
303       Move m = moves[i].move;
304       if (move_promotion(m))
305           moves[i].score = QueenValueMidgame;
306       else
307           moves[i].score = int(pos.midgame_value_of_piece_on(move_to(m)))
308                           -int(pos.type_of_piece_on(move_from(m)));
309   }
310 }
311
312
313 /// find_best_index() loops across the moves and returns index of
314 /// the highest scored one. There is also a second version that
315 /// lowers the priority of moves that attack the same square,
316 /// so that if the best move that attack a square fails the next
317 /// move picked attacks a different square if any, not the same one.
318
319 int MovePicker::find_best_index() {
320
321   int bestScore = -10000000, bestIndex = -1;
322
323   for (int i = movesPicked; i < numOfMoves; i++)
324       if (moves[i].score > bestScore)
325       {
326           bestIndex = i;
327           bestScore = moves[i].score;
328       }
329   return bestIndex;
330 }
331
332 int MovePicker::find_best_index(Bitboard* squares, int values[]) {
333
334   int hs;
335   Move m;
336   Square to;
337   int bestScore = -10000000, bestIndex = -1;
338
339   for (int i = movesPicked; i < numOfMoves; i++)
340   {
341       m = moves[i].move;
342       to = move_to(m);
343
344       if (!bit_is_set(*squares, to))
345       {
346           // Init at first use
347           set_bit(squares, to);
348           values[to] = 0;
349       }
350
351       hs = moves[i].score - values[to];
352       if (hs > bestScore)
353       {
354           bestIndex = i;
355           bestScore = hs;
356       }
357   }
358
359   if (bestIndex != -1)
360   {
361       // Raise value of the picked square, so next attack
362       // to the same square will get low priority.
363       to = move_to(moves[bestIndex].move);
364       values[to] += 0xB00;
365   }
366   return bestIndex;
367 }
368
369
370 /// MovePicker::pick_move_from_list() picks the move with the biggest score
371 /// from a list of generated moves (moves[] or badCaptures[], depending on
372 /// the current move generation phase).  It takes care not to return the
373 /// transposition table move if that has already been serched previously.
374
375 Move MovePicker::pick_move_from_list() {
376
377   int bestIndex;
378   Move move;
379
380   switch (PhaseTable[phaseIndex]) {
381   case PH_GOOD_CAPTURES:
382       assert(!pos.is_check());
383       assert(movesPicked >= 0);
384
385       while (movesPicked < numOfMoves)
386       {
387           bestIndex = find_best_index();
388
389           if (bestIndex != -1) // Found a good capture
390           {
391               move = moves[bestIndex].move;
392               moves[bestIndex] = moves[movesPicked++];
393               if (   move != ttMove
394                   && move != mateKiller
395                   && pos.pl_move_is_legal(move, pinned))
396                   return move;
397           }
398       }
399       break;
400
401   case PH_NONCAPTURES:
402       assert(!pos.is_check());
403       assert(movesPicked >= 0);
404
405       while (movesPicked < numOfMoves)
406       {
407           // If this is a PV node or we have only picked a few moves, scan
408           // the entire move list for the best move.  If many moves have already
409           // been searched and it is not a PV node, we are probably failing low
410           // anyway, so we just pick the first move from the list.
411           bestIndex = (pvNode || movesPicked < 12) ? find_best_index() : movesPicked;
412
413           if (bestIndex != -1)
414           {
415               move = moves[bestIndex].move;
416               moves[bestIndex] = moves[movesPicked++];
417               if (   move != ttMove
418                   && move != mateKiller
419                   && pos.pl_move_is_legal(move, pinned))
420                   return move;
421           }
422       }
423       break;
424
425   case PH_EVASIONS:
426       assert(pos.is_check());
427       assert(movesPicked >= 0);
428
429       while (movesPicked < numOfMoves)
430       {
431           bestIndex = find_best_index();
432
433           if (bestIndex != -1)
434           {
435               move = moves[bestIndex].move;
436               moves[bestIndex] = moves[movesPicked++];
437               return move;
438           }
439     }
440     break;
441
442   case PH_BAD_CAPTURES:
443       assert(!pos.is_check());
444       assert(badCapturesPicked >= 0);
445       // It's probably a good idea to use SEE move ordering here, instead
446       // of just picking the first move.  FIXME
447       while (badCapturesPicked < numOfBadCaptures)
448       {
449           move = badCaptures[badCapturesPicked++].move;
450           if (   move != ttMove
451               && move != mateKiller
452               && pos.pl_move_is_legal(move, pinned))
453               return move;
454       }
455       break;
456
457   case PH_QCAPTURES:
458       assert(!pos.is_check());
459       assert(movesPicked >= 0);
460       while (movesPicked < numOfMoves)
461       {
462           bestIndex = (movesPicked < 4 ? find_best_index() : movesPicked);
463
464           if (bestIndex != -1)
465           {
466               move = moves[bestIndex].move;
467               moves[bestIndex] = moves[movesPicked++];
468               // Remember to change the line below if we decide to hash the qsearch!
469               // Maybe also postpone the legality check until after futility pruning?
470               if (/* move != ttMove && */ pos.pl_move_is_legal(move, pinned))
471                   return move;
472           }
473       }
474       break;
475
476   case PH_QCHECKS:
477       assert(!pos.is_check());
478       assert(movesPicked >= 0);
479       // Perhaps we should do something better than just picking the first
480       // move here?  FIXME
481       while (movesPicked < numOfMoves)
482       {
483           move = moves[movesPicked++].move;
484           // Remember to change the line below if we decide to hash the qsearch!
485           if (/* move != ttMove && */ pos.pl_move_is_legal(move, pinned))
486               return move;
487       }
488       break;
489
490   default:
491       break;
492   }
493   return MOVE_NONE;
494 }
495
496
497 /// MovePicker::current_move_type() returns the type of the just
498 /// picked next move. It can be used in search to further differentiate
499 /// according to the current move type: capture, non capture, escape, etc.
500 MovePicker::MovegenPhase MovePicker::current_move_type() const {
501
502   return PhaseTable[phaseIndex];
503 }
504
505
506 /// MovePicker::init_phase_table() initializes the PhaseTable[],
507 /// MainSearchPhaseIndex, EvasionPhaseIndex, QsearchWithChecksPhaseIndex
508 /// QsearchNoCapturesPhaseIndex, QsearchWithoutChecksPhaseIndex and
509 /// NoMovesPhaseIndex variables. It is only called once during program
510 /// startup, and never again while the program is running.
511
512 void MovePicker::init_phase_table() {
513
514   int i = 0;
515
516   // Main search
517   MainSearchPhaseIndex = i - 1;
518   PhaseTable[i++] = PH_TT_MOVE;
519   PhaseTable[i++] = PH_MATE_KILLER;
520   PhaseTable[i++] = PH_GOOD_CAPTURES;
521   // PH_KILLER_1 and PH_KILLER_2 are not yet used.
522   // PhaseTable[i++] = PH_KILLER_1;
523   // PhaseTable[i++] = PH_KILLER_2;
524   PhaseTable[i++] = PH_NONCAPTURES;
525   PhaseTable[i++] = PH_BAD_CAPTURES;
526   PhaseTable[i++] = PH_STOP;
527
528   // Check evasions
529   EvasionsPhaseIndex = i - 1;
530   PhaseTable[i++] = PH_EVASIONS;
531   PhaseTable[i++] = PH_STOP;
532
533   // Quiescence search with checks
534   QsearchWithChecksPhaseIndex = i - 1;
535   PhaseTable[i++] = PH_QCAPTURES;
536   PhaseTable[i++] = PH_QCHECKS;
537   PhaseTable[i++] = PH_STOP;
538
539   // Quiescence search with checks only and no captures
540   QsearchNoCapturesPhaseIndex = i - 1;
541   PhaseTable[i++] = PH_QCHECKS;
542   PhaseTable[i++] = PH_STOP;
543
544   // Quiescence search without checks
545   QsearchWithoutChecksPhaseIndex = i - 1;
546   PhaseTable[i++] = PH_QCAPTURES;
547   PhaseTable[i++] = PH_STOP;
548
549   // Do not generate any move
550   NoMovesPhaseIndex = i - 1;
551   PhaseTable[i++] = PH_STOP;
552 }