]> git.sesse.net Git - stockfish/blob - src/evaluate.h
Rename EMPTY in NO_PIECE
[stockfish] / src / evaluate.h
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 #if !defined(EVALUATE_H_INCLUDED)
22 #define EVALUATE_H_INCLUDED
23
24 ////
25 //// Includes
26 ////
27
28 #include <iostream>
29
30 #include "material.h"
31 #include "pawns.h"
32
33
34 ////
35 //// Types
36 ////
37
38
39 /// The EvalInfo struct contains various information computed and collected
40 /// by the evaluation function. An EvalInfo object is passed as one of the
41 /// arguments to the evaluation function, and the search can make use of its
42 /// contents to make intelligent search decisions.
43 ///
44 /// At the moment, this is not utilized very much: The only part of the
45 /// EvalInfo object which is used by the search is futilityMargin.
46 class Position;
47
48 struct EvalInfo {
49
50   EvalInfo() { kingDanger[0] = kingDanger[1] = Value(0); }
51
52   // Middle game and endgame evaluations
53   Score value;
54
55   // Pointers to material and pawn hash table entries
56   MaterialInfo* mi;
57   PawnInfo* pi;
58
59   // attackedBy[color][piece type] is a bitboard representing all squares
60   // attacked by a given color and piece type, attackedBy[color][0] contains
61   // all squares attacked by the given color.
62   Bitboard attackedBy[2][8];
63   Bitboard attacked_by(Color c) const { return attackedBy[c][0]; }
64   Bitboard attacked_by(Color c, PieceType pt) const { return attackedBy[c][pt]; }
65
66   // kingZone[color] is the zone around the enemy king which is considered
67   // by the king safety evaluation. This consists of the squares directly
68   // adjacent to the king, and the three (or two, for a king on an edge file)
69   // squares two ranks in front of the king. For instance, if black's king
70   // is on g8, kingZone[WHITE] is a bitboard containing the squares f8, h8,
71   // f7, g7, h7, f6, g6 and h6.
72   Bitboard kingZone[2];
73
74   // kingAttackersCount[color] is the number of pieces of the given color
75   // which attack a square in the kingZone of the enemy king.
76   int kingAttackersCount[2];
77
78   // kingAttackersWeight[color] is the sum of the "weight" of the pieces of the
79   // given color which attack a square in the kingZone of the enemy king. The
80   // weights of the individual piece types are given by the variables
81   // QueenAttackWeight, RookAttackWeight, BishopAttackWeight and
82   // KnightAttackWeight in evaluate.cpp
83   int kingAttackersWeight[2];
84
85   // kingAdjacentZoneAttacksCount[color] is the number of attacks to squares
86   // directly adjacent to the king of the given color. Pieces which attack
87   // more than one square are counted multiple times. For instance, if black's
88   // king is on g8 and there's a white knight on g5, this knight adds
89   // 2 to kingAdjacentZoneAttacksCount[BLACK].
90   int kingAdjacentZoneAttacksCount[2];
91
92   // Middle game and endgame mobility scores
93   Score mobility;
94
95   // Value of the danger for the king of the given color
96   Value kingDanger[2];
97 };
98
99
100 ////
101 //// Prototypes
102 ////
103
104 extern Value evaluate(const Position& pos, EvalInfo& ei);
105 extern void init_eval(int threads);
106 extern void quit_eval();
107 extern void read_weights(Color sideToMove);
108
109
110 #endif // !defined(EVALUATE_H_INCLUDED)