1
0
Fork 0
mirror of https://github.com/sockspls/badfish synced 2025-04-30 00:33:09 +00:00

Remove an include in movepick.h

Signed-off-by: Marco Costalba <mcostalba@gmail.com>
Signed-off-by: unknown <Marco@.(none)>
This commit is contained in:
Marco Costalba 2008-11-17 22:33:43 +01:00 committed by unknown
parent 8189ae9e1c
commit bac4da70c9
3 changed files with 4 additions and 1 deletions

View file

@ -28,7 +28,6 @@
#include "depth.h" #include "depth.h"
#include "lock.h" #include "lock.h"
#include "position.h" #include "position.h"
#include "search.h"
//// ////
@ -36,6 +35,7 @@
//// ////
struct EvalInfo; struct EvalInfo;
struct SearchStack;
/// MovePicker is a class which is used to pick one legal move at a time from /// MovePicker is a class which is used to pick one legal move at a time from
/// the current position. It is initialized with a Position object and a few /// the current position. It is initialized with a Position object and a few

View file

@ -39,6 +39,8 @@
//// Variables //// Variables
//// ////
extern SearchStack EmptySearchStack;
int Position::castleRightsMask[64]; int Position::castleRightsMask[64];
Key Position::zobrist[2][8][64]; Key Position::zobrist[2][8][64];

View file

@ -31,6 +31,7 @@
#include "movepick.h" #include "movepick.h"
#include "san.h" #include "san.h"
extern SearchStack EmptySearchStack;
//// ////
//// Local definitions //// Local definitions