X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fmovegen.h;h=35fda92abe49350255bbd3be3d19a0ff5398908f;hp=636e439dc841f30604dbcc786c4c231afa702260;hb=6b49d509a1824a09c21d1d9f5e7e991ef2638db5;hpb=12f4bbc8f2b6122d9dc0949f3483e7dd3f26a829 diff --git a/src/movegen.h b/src/movegen.h index 636e439d..35fda92a 100644 --- a/src/movegen.h +++ b/src/movegen.h @@ -23,21 +23,21 @@ #include "position.h" -enum MoveGeneration { - CAPTURES, - NON_CAPTURES, - NON_CAPTURE_CHECKS, - EVASIONS, - NON_EVASIONS, - ALL_MOVES +enum MoveType { + MV_CAPTURE, + MV_NON_CAPTURE, + MV_CHECK, + MV_NON_CAPTURE_CHECK, + MV_EVASION, + MV_NON_EVASION, + MV_LEGAL, + MV_PSEUDO_LEGAL }; -template +template MoveStack* generate(const Position& pos, MoveStack* mlist); -extern MoveStack* generate_moves(const Position& pos, MoveStack* mlist, bool pseudoLegal = false); 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)