1 /* Copyright (C) 2007-2011 Vincent Ollivier
3 * Purple Haze is free software: you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation, either version 3 of the License, or
6 * (at your option) any later version.
8 * Purple Haze is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
26 #include "hashtable.h"
38 Move killer_moves
[MAX_PLY
][MAX_KILLERS
];
39 HashTable
<int> material_table
;
43 unsigned int nodes_count
; // Used in search
49 MoveList search_moves
;
51 void add_piece(Color c
, PieceType t
, Square s
);
52 void del_piece(Color c
, PieceType t
, int i
);
53 void del_piece(Piece p
) {
54 del_piece(p
.color(), p
.type(), p
.index());
59 Position
& current_position() {
63 void init(std::string fen
);
65 bool is_check(Color c
) const {
66 Square s
= pieces
.position(c
, KING
, 0);
67 return board
.is_attacked_by(!c
, s
, pieces
);
70 void make_move(Move m
);
71 void undo_move(Move m
);
72 bool is_legal(Move m
);
73 bool is_dangerous(Move m
);
76 unsigned long long int perft(unsigned int depth
);
78 int quiescence(int alpha
, int beta
, int depth
, const int ply
);
80 template<NodeType node_type
>
81 int search(int alpha
, int beta
, int depth
, const int ply
);
83 Move
root(int max_depth
);
87 Move
get_killer_move(int depth
, int index
) {
88 return killer_moves
[depth
][index
];
90 void set_killer_move(int depth
, Move move
);
91 bool is_killer_move(int depth
, Move move
) {
92 return (move
== killer_moves
[depth
][0] ||
93 move
== killer_moves
[depth
][1]);
96 // Position's evaluation
98 int eval(int alpha
, int beta
);
103 void print_thinking_header();
104 void print_thinking(int depth
, int score
, Move m
);
105 std::string
output_pv(int depth
, int score
, Move m
);
106 std::string
output_move(Move m
);
107 std::string
output_square(Square s
) {
108 return output_square(board
.file(s
), board
.rank(s
));
110 std::string
output_square(File f
, Rank r
);
111 void print_tt_stats();
112 std::string
debug_move(Move m
);