X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fmovegen.h;h=580ca2e74645cfd183b6457ec0c1a6fe594fd5d0;hb=ae2f5f25cd8a6bc2762eefc032436052c0db679e;hp=35fda92abe49350255bbd3be3d19a0ff5398908f;hpb=57b3ca916fdf12ad4ad3dfdcd215379e908b12be;p=stockfish diff --git a/src/movegen.h b/src/movegen.h index 35fda92a..580ca2e7 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 { @@ -30,14 +30,10 @@ enum MoveType { MV_NON_CAPTURE_CHECK, MV_EVASION, MV_NON_EVASION, - MV_LEGAL, - MV_PSEUDO_LEGAL + MV_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)