X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fmovegen.h;h=6a04248ac3a3199c80f087aaf3a180ff5bc7ad4f;hp=35fda92abe49350255bbd3be3d19a0ff5398908f;hb=5ba85ef441fb12738732824092f74aa49149fcf9;hpb=57b3ca916fdf12ad4ad3dfdcd215379e908b12be diff --git a/src/movegen.h b/src/movegen.h index 35fda92a..6a04248a 100644 --- a/src/movegen.h +++ b/src/movegen.h @@ -17,10 +17,10 @@ along with this program. If not, see . */ - #if !defined(MOVEGEN_H_INCLUDED) #define MOVEGEN_H_INCLUDED +#include "move.h" #include "position.h" enum MoveType { @@ -34,10 +34,7 @@ enum MoveType { MV_PSEUDO_LEGAL }; -template +template MoveStack* generate(const Position& pos, MoveStack* mlist); -extern bool move_is_legal(const Position& pos, const Move m, Bitboard pinned); -extern bool move_is_legal(const Position& pos, const Move m); - #endif // !defined(MOVEGEN_H_INCLUDED)